LAN 내의 여러 컴퓨터에 ULA(고유 로컬 주소)를 할당하고 링크 로컬 주소와 전역적으로 라우팅 가능한 주소를 할당하고 싶습니다. 현재 듀얼스택을 사용하고 있습니다.
나는 또한 그것들이 fd69:6666::
.
한 컴퓨터는 Debian Jessie(커널 3.16.0-4-amd64)를 실행하고 있고 다른 컴퓨터는 Linux Mint 17.2(커널 3.16.0-38-generic x86_64)를 실행하고 있습니다.
이 가이드를 따른 후:Linux를 사용하여 IPv6 LAN 설정.
나는 다음과 같은 구성으로 끝났습니다.
/etc/네트워크/인터페이스:
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
broadcast 192.168.1.255
gateway 192.168.1.1
dns-nameservers 192.168.1.1
auto eth0
iface eth0 inet6 static
address fd69:6666:: #fd69:7777:: on the other machine.
netmask 64
/etc/radvd.conf:
interface eth0
{
AdvSendAdvert on;
prefix fd69:6666::/64 { #fd69:7777:: on the other machine.
AdvOnLink on;
AdvAutonomous on;
};
}
fd69:6666
문제는 접두어만 있고 다른 것은 아무것도 없는 두 대의 컴퓨터만 남게 된다는 것입니다 ! IPv6 연결이 작동을 멈췄습니다. 내가 뭘 잘못했나요?
답변1
대신 fd69::6666을 사용해 보세요. 주소의 네트워크 부분만 설정하려면 fd69:6666::을 사용하십시오.
넷마스크도 변경하는 것을 잊지 마세요!
결과는 다음과 같습니다.
/etc/네트워크/인터페이스
auto eth0
iface eth0 inet6 static
address fd69::6666
netmask 64