Debian, 단일 인터페이스에 두 개의 IPv6 주소

Debian, 단일 인터페이스에 두 개의 IPv6 주소

Debian Stretch의 단일 인터페이스에 두 번째 IPv6를 추가해야 합니다. IPv4를 사용하면 inet static다음과 같은 여러 정의를 사용할 수 있으므로 간단합니다 .

iface enp5s0f0.10 inet static                                                   
  address 10.0.0.1                                                              
  netmask 20                                                                    

iface enp5s0f0.10 inet static                                                   
  address 10.0.0.2                                                              
  netmask 32                                                                    

단일 인터페이스에서 두 개의 주소를 얻습니다.

그러나 IPv6에서는 이것이 작동하지 않습니다.

iface enp5s0f0.10 inet6 static                                                  
  address 9999:9999:9999:1::1                                                    
  netmask 64                                                                    

iface enp5s0f0.10 inet6 static                                                    
  address 9999:9999:9999:1::2                                                    
  netmask 128                                                                   

왜 이것이 작동하지 않는지 아는 사람이 있습니까? 인터페이스 구성에 두 번째 주소를 추가할 수 있을 것 같은데 up -6 ip addr ...왜 이런 일이 발생하는지 알고 싶습니다.

관련 정보