다른 네트워크 매개변수를 구성하지 않고 "인터페이스" 파일에 MAC 주소를 설정하세요.

다른 네트워크 매개변수를 구성하지 않고 "인터페이스" 파일에 MAC 주소를 설정하세요.

Debian Wheezy에서는 /etc/network/interfaces파일에서 영구 네트워크 구성이 발생합니다. 또는 같은 다른 네트워크 매개변수를 구성하지 않고 hwaddress인터페이스를 구성할 수 있습니까? 그것은 다음과 같습니다:addressnetmask

root@1:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0
hwaddress ether DE:AD:BE:EF:69:01

# The primary network interface
auto eth0.100
iface eth0.100 inet static
        address 10.1.1.2
        netmask 255.255.255.0
        network 10.1.1.0
        broadcast 10.1.1.255
        gateway 10.1.7.1
root@1:~# 

답변1

나는 그것을 찾고 있다 iface eth0 inet manual. 이를 통해 다음과 같은 구성이 가능합니다.

root@1:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet manual
        hwaddress ether DE:AD:BE:EF:69:01

# The primary network interface
auto eth0.100
iface eth0.100 inet static
        address 10.1.1.2
        netmask 255.255.255.0
        network 10.1.1.0
        broadcast 10.1.1.255
        gateway 10.1.7.1
root@1:~# 

관련 정보