воскресенье, 12 декабря 2010 г.

Настройка статического ip после устоновки Debian

Редактируем файл /etc/network/interfaces, заменим dhcp на static
root@fox:/home/vitaliy# nano /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

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 195.234.203.131
netmask 255.255.255.248
network 195.234.203.128
gateway 195.234.203.129

#eth1
allow-hotplug eth1
iface eth1 inet static

Далее выполним команды:
root@fox:/home/vitaliy# ifdown eth0
root@fox:/home/vitaliy# ifup eth0


Итерфейс настроен. 

Комментариев нет:

Отправить комментарий