遇到teamviewer连不上服务器,但是其他程序都能正常上网的情况下,不要多想,关闭一切防火墙,杀毒软件,卸载teamviewer重新安装,完了重启。亲测ubuntu可行。
ubuntu 中防火墙是ufw,sudo ufw disable
就可以了。
ubuntu中还有个头疼的东西就是网络配置,真的很烦,特别是一些服务器,可能有多个网卡,型号又很特别,所以总是有这样那样的情况,推荐下述配置。
sudo vi /etc/network/interfaces
配置成DHCP方式获取网络配置,比如:
# This file describes the network interfaces available on your system
# and how to activate them. For more information,see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth1
iface eth1 inet dhcp
如果需要固定ip地址,推荐在路由器中设置,因为一但你设置了固定ip地址,那dns也要手动设置,我查了不少资料,最后还是放弃了,总之是众说纷纭,还是路由器中设置一下方便。
原文链接:https://www.f2er.com/ubuntu/352730.html