Linux常用命令04网络基本操作

1、APT安装及卸载软件

#查看已安装的软件
dpkg -l | grep ssh

#查找软件
apt-cache search ssh

#安装软件
sudo apt-get install ssh

#卸载软件
sudo apt-get remove ssh
#或者
sudo dpkg -r ssh

#purge软件
sudo apt-get remove --purge ssh
sudo dpkg -P ssh

2、重启网络(方法一)

ifconfig eth0 down
ifconfig eth0 up

3、重启网络(方法二)

/etc/init.d/networking restart

4、刷新机器名

/etc/init.d/hostname.sh start

5、刷新环境变量

source /etc/profile

6、查看本地网络状态

ip addr
netstat -na
#UDP类型的端口
netstat -nupl
#TCP类型的端口
netstat -ntpl

7、测试远程网络状态

ping ip_addr
telnet ip_addr port
traceroute ip_addr

Leave a Reply

Your email address will not be published. Required fields are marked *

*