Projecte

General

Perfil

Connect ipv6 » Historial » Revisió 2

Revisió 1 (Pau Escrich, 29-05-2013 10:29) → Revisió 2/3 (Pau Escrich, 29-05-2013 10:35)

h1. Connect ipv6 link-local 

 Each working network interface in your Linux system have a special IPv6 address configured automatically by the Kernel. These are named IPv6 link-local and are inside the special prefix fe80::/10 
 The scope of these IPs is to communicate computers which are in the same colision domain (for example our LAN network). But, how to know the IPv6 link-local address of the host we want to achieve? 
 Using ICMPv6 we can discover machines in our network thanks to the special Multicast address "ff02::". So to discover routers (group 2) we can use the next command: 

 <pre> 
 ping6 ff02::2%eth0 
 </pre> 

 Then each router connected to our colision domain, will reply the ICMP request with its own IPv6 link-local address. 
 <pre> 
 p4u@nomada:~$ $ ping6 ff02::2%eth1 -c2 
 PING ff02::2%eth1(ff02::2) 56 data bytes 
 64 bytes from fe80::a2f3:c1ff:fe39:7cea: icmp_seq=1 ttl=64 time=0.956 ms 
 64 bytes from fe80::a2f3:c1ff:fe39:7cea: icmp_seq=2 ttl=64 time=0.949 ms 

 --- ff02::2%eth1 ping statistics --- 
 2 packets transmitted, 2 received, 0% packet loss, time 1000ms 
 rtt min/avg/max/mdev = 0.949/0.952/0.956/0.031 ms 
 </pre> 

 We can use connect to it using ssh: 

 <pre> 
 ssh fe80::a2f3:c1ff:fe39:1cea%eth1 
 </pre> 

 Or copy files using scp: 

 <pre> 
 scp QMP.bin [fe80::a2f3:c1ff:fe39:1cea%eth1]:/tmp/ 
 </pre> 

 This is a small script which check if there is some router attached to your network device and in case, try to connect to it. If there are not routers it waits until some appears. 

 <pre> 
 #!/bin/sh 
 INT=${1:-eth0} 
 MYIP="$(ip addr show dev $INT | grep -e "inet6.*scope link" | awk '{print $2}' | cut -d/ -f1)" 
 NEIGH="$(ping6 ff02::2%$INT -n -c3 2>/dev/null | grep fe80 2>/dev/null | awk '{print $4}' | sed 's/\(.*\)./\1/' | sort -u)" 
 RNEIGH="$(echo -e "$NEIGH" | grep -v $MYIP | grep -v "^$" | sort -u)" 
 if [ $(echo -e "$RNEIGH" | wc -l) -eq 1 -a $(echo -e "$RNEIGH" | wc -c) -gt 4 ]; then 
	 echo "Host found, connecting with it!" 
	 ssh $RNEIGH%$INT 
 elif [ -z "$RNEIGH" ]; then 
	 echo -n "." 
	 exec $0 $@ 
 else 
	 echo "Several Hosts found:" 
	 echo -e "$RNEIGH" 
 fi 
 </pre> 


 An example of execution: 

 <pre> 
 p4u@nomada:~$ $ disc6 eth1 
 ..................................Host found, connecting with it! 

 Warning: Permanently added 'fe80::a2f3:c1ff:fe39:7cea%eth1' (RSA) to the list of known hosts. 
 root@fe80::a2f3:c1ff:fe39:7cea%eth1's password:  
 </pre>