1. check hardware:
lshw
*-network:1 DISABLED
description: Ethernet interface
product: 3c905C-TX/TX-M [Tornado]
vendor: 3Com Corporation
physical id: 11
bus info: pci@0000:00:11.0
logical name: eth1
version: 78
serial: 00:01:02:46:d1:93
width: 32 bits
clock: 33MHz
2. configure interface
sudo ifconfig eth1 192.168.3.6 netmask 255.255.255.0 up
test it, OK!
3. save configure
sudo nano /etc/network/interfaces
# The Second network interface
auto eth1
iface eth1 inet static
address 192.168.3.6
gateway 192.168.3.1
netmask 255.255.255.0
network 192.168.3.0
broadcast 192.168.3.255
Write a comment
You need tologin.