답변1
/etc/network/interfaces
파일 에 다음 줄을 추가합니다 .
DHCP 사용
예시 1:
# The loopback network interface
auto lo
iface lo inet loopback
예 2:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet dhcp
eth0을 네트워크 인터페이스 카드로 교체하세요.
다음 명령을 사용하여 네트워크 서비스를 다시 시작하십시오.
sudo /etc/init.d/networking restart
변화 없는:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet static
address xx.xx.xx.xx
netmask 255.255.255.0
broadcast xx.xx.xx.xy
network xx.xx.xx.xz
gateway yy.yy.yy.yy
dns-nameservers yy.yy.yy.yy
예:
# The loopback network interface
auto lo eth0
iface lo inet loopback
# The primary network interface
iface eth0 inet static
address 192.168.0.77
gatway 192.168.0.1
netmask 255.255.255.0
broadcast 192.168.0.254
network 192.168.0.0
dns-nameservers 192.168.0.254
네트워크 서비스를 다시 시작합니다.
sudo /etc/init.d/networking restart