linux下配置網路的命令大全

2021-05-13 02:49:10 字數 1652 閱讀 3702

一。通過命令配置

ifconfig命令

ifconfig eth0 192.168.1.253 netmark 255.255.255. 增加乙個ip位址

ifconfig eth0 down 關閉第0塊網絡卡

ifconfig eth0 up      啟動第0塊網絡卡

ifconfig eth0           檢視第0塊網絡卡的配置情況

iconfig eth0 -broadcast 192.168.1.255   設定第一塊網絡卡的廣播位址為192.168.1.255

ifconfig eth0 -allmulti 設定第一塊網絡卡接收多播位址

ifconfig eth0 allmulti 設定第一塊網絡卡不接收多播位址

route命令

route 察看路由表

route add default gw 192.168.1.1   增加乙個閘道器

route del default gw 192.168.1.1   刪除乙個閘道器

route add -net 192.168.16.0/24 gw 192.168.16.254 增加一條路由

自動取得網路配置

dhclient 為當前主機取得網路配置

hostname linux 修改當前主機名為linux

hostname 檢視當前主機名

服務命令配置檔案

#etc/init.d/network restart

#/etc/init.d/network stop

#/etc/init.d/network start

服務狀態改變的命令

#service network start

#service network stop

#service network restart

#service network status

#chkconfig --list|grep network 檢視某服務的自動啟動級別

#chkconfig --level 35 network off

#chkconfig --level 3 network 0n

二。通過字元介面配置

#ntsysv

三。通過配置檔案配置

#vi /etc/sysconfig/network-script/eth0   設定網絡卡的網路配置

#vi /etc/sysconfig/network   設定本地的主機名

#vi /etc/hosts             設定本地host的檔案

#vi /etc/resolv.conf   設定dns伺服器的相關配置

#vi /etc/rc.d/rc.local

檢視網路是否正常的方法

# ping 192.168.1.1

#ping www.hqew.com

#ping -c 4 192.168.1.1 傳送多大的資料報檢測

#ping -t eth0 192.168.1.1 通過第一塊網絡卡檢測。

#traceroute 192.168.1.1檢視到此ip所經過的路由資訊,可以知道網路故障出在了什麼地方。

#netstat -i檢視linux系統所到網路的狀況。         

# nslookup 檢視當前主機的dns伺服器,也可以設定當前主機的dns伺服器。

Linux下的網路配置命令

1 ifconfig 可以使用ifconfig命令來配置並檢視網路介面的配置情況。例如 1 配置eth0的ip位址,同時啟用該裝置。ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up 2 配置eth0別名裝置eth0 1的ip位址,並新增路由。if...

linux下簡單的網路配置命令

使用以下命令配置以太網路 1 ifconfig 可以使用ifconfig命令來配置並檢視網路介面的配置情況。例如 1 配置eth0的ip位址,同時啟用該裝置。ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up 2 配置eth0別名裝置eth0 1的...

linux下簡單的網路配置命令

使用以下命令配置以太網路 1 ifconfig 可以使用ifconfig命令來配置並檢視網路介面的配置情況。例如 1 配置eth0的ip位址,同時啟用該裝置。ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up 2 配置eth0別名裝置eth0 1的...