mirror of
				https://github.com/byReqz/conn.git
				synced 2025-11-03 21:01:30 +00:00 
			
		
		
		
	quick fix for v6 adresses being rejected
This commit is contained in:
		
							
								
								
									
										7
									
								
								conn.sh
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								conn.sh
									
									
									
									
									
								
							@@ -86,7 +86,12 @@ function set_argvars {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
function validate {
 | 
					function validate {
 | 
				
			||||||
  for arg in $@; do
 | 
					  for arg in $@; do
 | 
				
			||||||
    if ip route show " $arg" 2&> /dev/null;then
 | 
					    if [[ ! "$arg" =~ : ]];then
 | 
				
			||||||
 | 
					      arg=" $arg" # fixes issue with leading space on ipv6 adresses
 | 
				
			||||||
 | 
					    else
 | 
				
			||||||
 | 
					      only="-6" # enable ipv6, this needs a more complex function to avoid treating every argument as v6
 | 
				
			||||||
 | 
					    fi
 | 
				
			||||||
 | 
					    if ip route show "$arg" 2&> /dev/null;then
 | 
				
			||||||
      hosts="$hosts $arg"
 | 
					      hosts="$hosts $arg"
 | 
				
			||||||
    elif nslookup "$arg" > /dev/null;then
 | 
					    elif nslookup "$arg" > /dev/null;then
 | 
				
			||||||
      hosts="$hosts $arg"
 | 
					      hosts="$hosts $arg"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user