查询网卡名
1 | nmcli connection show |
查看配置
1 | # 查看网络配置 |
配置 dns
1 | # 如果系统开启了IPv4、IPv6,需要配置这个。参考:http://www.spingdraft.com/article-10081.html |
取消 dns 配置
1 | sudo nmcli con mod ens192 ipv4.dns-options "" |
测试 dns 速度
tst.sh
1 |
|
执行脚本
1 | nohup sh tst.sh & |
1 | nmcli connection show |
1 | # 查看网络配置 |
1 | # 如果系统开启了IPv4、IPv6,需要配置这个。参考:http://www.spingdraft.com/article-10081.html |
1 | sudo nmcli con mod ens192 ipv4.dns-options "" |
tst.sh
1 | #!/bin/bash |
执行脚本
1 | nohup sh tst.sh & |