문제가 있습니다. 두 개의 가상 머신이 있지만 문제는 두 번째 VM을 켤 때 첫 번째 VM의 연결이 끊어지고 그 반대의 경우도 마찬가지라는 것입니다.
호스트 서버의 브리지 넷플랜 구성은 다음과 같습니다.
network:
version: 2
renderer: networkd
ethernets:
enp1s0f0:
dhcp4: no
dhcp6: no
bridges:
viifbr0:
addresses:
- 135.xxx.159.xx/24
- 2001:xxxx:xxx:500f::/128
interfaces: [ enp1s0f0 ]
routes:
- on-link: true
to: 0.0.0.0/0
via: 135.xxx.159.xxx
- on-link: true
to: ::0/
via: 2001:xxxx:xxx:50ff:ff:ff:ff:ff
gateway6: 2001:xxxx:xxx:50ff:ff:ff:ff:ff
macaddress: xx:40:xx:fe:xx:7b
nameservers:
addresses:
- 8.8.8.8
- 8.8.4.4
- 2001:4860:4860::8888
- 2001:4860:4860::8844
(IPv6 전달이 활성화되었습니다)
클라이언트 네트워크 구성은 다음과 같습니다.
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet6 static
accept_ra 0
address 2001:xxxx:xxx:500f::a2
netmask 64
post-up /sbin/ip -r route add 2001:xxxx:xxx:50ff:ff:ff:ff:ff dev eth0
post-up /sbin/ip -r route add default via 2001:xxxx:xxx:50ff:ff:ff:ff:ff
도와주세요 ?
감사합니다.
감사합니다, 이르코스카
답변1
VM의 MAC 주소가 서로 다른지 확인하세요. 외부 DHCP 서버는 동일한 MAC 주소로 이들을 구별할 수 없으며 동일한 IP 주소를 할당합니다.