《Linux菜鸟入门》Linux网络管理
●管理網(wǎng)絡(luò)
?
??1.ip基礎(chǔ)知識(shí)
??? ipv4/ipv6
???32位
???172.25.0.10/255.255.255.0
?? 2.配置ip
??? <<圖形化>>
???? 1。圖形界面
????nm-connection-editor
???? 2.文本化圖形
????nmtui
?
??? ifconfig ?????????????????? 查看或者臨時(shí)設(shè)定主機(jī)ip的工具
??? ifconfig 網(wǎng)絡(luò)接口?????????????? 查看這個(gè)接口上的 ip
??? ifconfig 網(wǎng)絡(luò)接口 ip netmask 子網(wǎng)掩碼???? 臨時(shí)設(shè)定ip
??? ifconfig eth0 172.25.254.100 netmask 255.255.255.0
?
??? systemctl restart network ????重新啟動(dòng)網(wǎng)絡(luò)基本服務(wù)
??? systemctl restart NetworkManager? 網(wǎng)絡(luò)智能管理服務(wù)
??<<命令>>
? ?? ifconfig 網(wǎng)卡 ip netmask ??臨時(shí)設(shè)定
? ?? nmcli :
????system ststus NetWork
?connection add type ethernet ?con-name westos ifname eth0 autoconnect yes
?nmcli connection add type ethernet con-name westos ifname ip4 ip/24
?nmcli connection add delete westos
?nmcli connection show
?nmcli connection down westos
?nmcli connection up westos
?nmcli connection modify westos ipv4.addresses newip/24
?nmcli connection modify westos ipv4.method <auto|manual>
?nmcli device connect
?nmcli device disconnect
?nmcli device show
?nmcli device status
?
? <<文件>>
????dhcp ????動(dòng)態(tài)獲取
????vim ???/etc/sysconfig/network-scripts/ifcfg-eth0
??? DEVICE=eth0
??? BOOTPROTO=dhcp
??? ONBOOT=yes
??? NAME=eth0
??? :wq
??? systemctl restart network
?
??? static|none ??靜態(tài)網(wǎng)絡(luò)
? ? ? vim ???/etc/sysconfig/network-scripts/ifcfg-eth0
? ?? DEVICE=eth0
? ?? BOOTPROTO=static|none
? ?? ONBOOT=yes
? ?? IPADDR(x)=172.25.0.100
? ?? NETNASK=172.25.0.100 | PREFIS0=24 ??子網(wǎng)掩碼
? ?? NAME=eth0
??? :wq
???? systemctl restart network
????如果要設(shè)置多個(gè)ip 就在x位置
轉(zhuǎn)載于:https://blog.51cto.com/12157236/1861116
總結(jié)
以上是生活随笔為你收集整理的《Linux菜鸟入门》Linux网络管理的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 记录一次postfix无法收取邮件和my
- 下一篇: HTTPS证书撤销