linux 下一些簡單的網路配置命令

2021-08-30 12:05:26 字數 2341 閱讀 8683

使用以下命令配置以太網路

1、 ifconfig

可以使用ifconfig命令來配置並檢視網路介面的配置情況。

例如:

(1) 配置eth0的ip位址, 同時啟用該裝置。

#ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up

(2) 配置eth0別名裝置eth0:1的ip位址,並新增路由。

#ifconfig eth0:1 192.168.1.3

#route add –host 192.168.1.3 dev eth0:1

(3) 啟用裝置。

#ifconfig eth0:1 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 www.sina.com.cn

4、 ping

可以使用ping 命令來測試網路的連通性。

例如:

#ping www.sina.com.cn

#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

Linux下一些操作的簡單整理

1.tomcat啟動與關閉 cd tomcat目錄 startup.sh shutdown.sh 2.mysql的啟動與關閉與編碼設定 使用 service 啟動 service mysqld start 使用 mysqld 指令碼啟動 etc inint.d mysqld start 使用 saf...

Linux下一些操作

b 1.解壓多個檔案 b 解壓當前目錄下的所有 tar.gz 結尾的檔案 for ark in tar.gz do tar xvf ark done 將檔名賦給ark。或者find name tar.gz exec tar xvf print b 2.軟體的安裝和刪除 b 安裝 sudo apt g...

Linux下一些目錄

linux是一款作業系統,裡面有很多目錄,下面是幾個在linux下很重要的目錄 proc 是乙個虛擬檔案系統,只存在記憶體當中,不占用外部空間,通過這個目錄可以獲得系統的資訊。bin 二進位制可執行檔案 usr bin 最基本的一些可執行檔案 系統自帶的 usr local bin 使用者自己安裝的...