sudo vi /etc/network/inte***ces
配置靜態ip位址
auto eth0 ##自動啟用第一塊網絡卡
ifconf eth0 inet static
address 192.168.1.2 ##ip位址
netmask 255.255.255.0 ##子網掩碼
gateway 192.168.1.1 ##閘道器
也可以這樣:
在終端裡輸入
sudo ifconfig address 192.168.1.2 ##設定ip
sudo ifconfig netmask 255.255.255.0##設定子網掩碼
sudo ifconfig gateway 192.158.1.1 ##設定閘道器
再然後就是配置dns
sudo vi /etc/resolv.conf
增加內容:
nameserver 61.177.7.1
配置閘道器
sudo route add default gw 192.168.0.1
重新啟動網路配置
/etc/init.d/networking restart
linux下的網路配置命令是ifconfig類似於windows命令列中的ipconfig。可以使用ifconfig命令來配置並檢視網路介面的配置情況。例如:(1) 配置eth0的ip位址, 同時啟用該裝置。
ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up
(2) 配置eth0別名裝置eth0:1的ip位址,並新增路由。
ifconfig eth0 192.168.1.3
route add –host 192.168.1.3 dev eth0:1
(3) 啟用裝置。
ifconfig eth0 up
(4) 禁用裝置。
ifconfig eth0 down
(5) 檢視指定的網路介面的配置。
ifconfig eth0
(6) 檢視所有的網路介面配置。
ifconfig
2、 route 可以使用route命令來配置並檢視核心路由表的配置情況。例如: (1) 新增到主機的路由。
route add –host 192.168.1.2 dev eth0:0
route add –host 10.20.30.148 gw 10.20.30.40
(2) 新增到網路的路由。
route add –net 10.20.30.40 netmask 255.255.255.248 eth0
route add –net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41
route add –net 192.168.1.0/24 eth1
(3) 新增預設閘道器。
route add default gw 192.168.1.1
(4) 檢視核心路由表的配置。
route
(5)刪除路由。
route del –host 192.168.1.2 dev eth0:0
route del –host 10.20.30.148 gw 10.20.30.40
route del –net 10.20.30.40 netmask 255.255.255.248 eth0
route del –net 10.20.30.48 netmask 255.255.255.248 gw 10.20.30.41
route del –net 192.168.1.0/24 eth1
route del default gw 192.168.1.1
對於1和2兩點可使用下面的語句實現: ifconfig eth0 172.16.19.71 netmask 255.255.255.0 route 0.0.0.0 gw 172.16.19.254 service network restart 3、 traceroute 可以使用traceroute命令顯示資料報到達目的主機所經過的路由。例如:
traceroute x
4、 ping 可以使用ping 命令來測試網路的連通性。例如:
ping x
ping –c 4 192.168.1.12
5、 netstat 可以使用netstat命令來顯示網路狀態資訊。例如:(1) 顯示網路介面狀態資訊。
netstat –i
(2) 顯示所有監控中的伺服器的socket和正使用socket的程式資訊。
netstat –lpe
(3) 顯示核心路由表資訊。
netstat –r
netstat –nr
(4) 顯示tcp/udp傳輸協議的連線狀態。
netstat –t
netstat –u
6、 hostname 可以使用hostname命令來更改主機名。例如;
hostname myhost
7、 arp 可以使用arp命令來配置並檢視arp快取。例如:(1) 檢視arp快取。
arp
(2) 新增乙個ip位址和mac位址的對應記錄。
arp –s 192.168.33.15 00:60:08:27:ce:b2
(3) 刪除乙個ip位址和mac位址的對應快取記錄。
arp –d192.168.33.15
ubuntu命令列下的網路配置
編輯 /etc/network/inte***ce檔案如下
先新增引用:
auto lo iface lo inet loopback auto eth0
如果是自動獲取ip,新增引用:
iface eth0 inet dhcp
如果是手動配置ip,新增引用:
iface eth0 inet static address ***.***.***.*** netmask ***.***.***.*** network ***.***.***.*** boardcast ***.***.***.*** gateway ***.***.***.***
ubuntu 網路配置
進入網路配置檔案 sudo vi etc network inte ces 在這裡你應該會看到如下內容 auth lo iface lo inet loopback 這個正是 lo回環,我需要讓這台執行 ubuntu server 的機子通過 dhcp 獲得ip 來加入網路,那麼我只需要在上面的 l...
Ubuntu 網路配置
1 sudo vi etc network inte ces 更改配置為 autoeth0 ifaceeth0 inet static address 192.168.3.90 gateway 192.168.3.1 netmask 255.255.255.0 sudo etc init.d net...
ubuntu 網路配置
檢查網路配置命令 ifconfig 4 如果以dhcp方式配置網絡卡,則改為 auto eth0 iface eth0 inet dhcp 也可以在命令列下直接輸入下面的命令來獲取位址 sudo dhclient eth0 5 配置dns伺服器的位址,最多可以使用3個dns伺服器 sudo vi e...