网络配置
vim /etc/sysconfig/network-scripts/ifcfg-enp0s3 BOOTPROTO=static ONBOOT=yes IPADDR=192.168.100.38 PREFIX=24 GATEWAY=192.168.100.1 DNS1=192.168.100.11 DNS2=192.168.100.12 // 图形化更改网络配置 nmtui
检测当前IP连接数
netstat -ntu | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr
查看进程
ps -aux | grep pptp