linux:網路屬於核心的功能
lo:本地回環 乙太網網絡卡:ethx x=數字 pppx
網絡卡命名規則存在位置: rhel6: /etc/udev/rules.d/70-persistent-net.rules
ifconfig
-a:顯示所有介面的配置住處
ifconfig ethx ip/mask [up|down]
配置的位址立即生效,但重啟網路服務或主機,都失效
網路服務: rhel5: /etc/init.d/network (start|stop|restart|status) rhel6: /etc/init.d/networkmanager (start|stop|restart|status)
閘道器: route
add:新增 -host -net
route add -net|-host dest gw nexthop
del:刪除 -host -net
route del -net 10.0.0.0/8
檢視:route -n:以數字方式顯示各主機或埠等相關住處
網路配置檔案 /etc/sysconfig/network
網路介面配置檔案: /etc/sysconfig/network-scripts/ifcfg-name
device=:關聯的裝置名稱,要與檔案的後半部name保持一致 bootproto=(static|none|dhcp|bootp) 引導協議,要使用靜態位址,使用static或none,dhcp標識使用dhcp伺服器獲取位址 ipaddr=:ip位址 netmask=:子網掩碼 gateway=設定預設閘道器 onboot:開機時是否自動啟用此網路介面 hwaddr=:硬體位址,要與硬體中的位址保持一致;可省略 userctl=(yes|no) 是否允許普通使用者控制此介面 peerdns=(yes|no) 是否在bootproto為dhcp時,接受有dhcp伺服器指定的dns位址
不會立即生效,但重啟網路服務或注意都會生效
路由: /etc/sysconfig/network-scripts/route-ethx
新增格式一 dest via nexthop
新增格式二 address0 netmask0 gatway0
dns伺服器指定的方法只有一種 /etc/resolv.conf
nameserver dns_ip_2 nameserver dns_ip_1 nameserver dns_ip_3
最多配置3個dns伺服器
編輯host檔案 /etc/hosts
指定本機解析: /etc/hosts 主機ip 主機名 主機別名 172.16.0.1 www.magedu.com www
dns-->/etc/hosts-->dns快取
配置主機名: hostname hostname
立即生效,不能永久有效
/etc/sysconfig/network
rhel5: setup:system-config-network-tui system-config-network-gui
ifconfig,老舊
iproute2軟體包 ip
link:配置網路介面屬性
addr add ip addr add address dev dev del ip addr del address dev dev show ip addr show dev dev to prefix flush ip addr flush dev dev to prefix
一張網路可以適用於多個位址
網路裝置可以別名
eth0 ethx:x=數字
配置方法: ifconfig ethx: x ip/netmask
/etc/sysconfig/network-scripts/ifcfg-ethx:x device=ethx:x
網路 linux網路配置
zlm ubuntu sudo ifconfig eth0 192.168.1.109 netmask 255.255.255.0 broadcast 192.168.1.255 zlm ubuntu sudo route add del default gw 192.168.1.1 新增刪除閘道器...
linux配置 網路配置
ip位址,子網掩碼,閘道器 設定ip位址,子網掩碼並啟用 ifconfig eth0 10.192.77.250 netmask 255.255.255.0 up 注 ip,掩碼,閘道器都設定到 etc sysconfig network scripts ifcfg eth0裡面了。設定多ip 可以...
linux網路管理 Linux網路配置
1.1 linux配置ip位址 1 ifconfig命令臨時配置ip位址 能不能自動獲取ip位址和dns位址,要看有沒有dhcp伺服器 win10上,輸入ipconfig all 會看到是否有dhcp伺服器 ifconfig命令 對此命令更加詳細的解說 傳送門 2 setup工具永久配置ip位址 r...