teamviewer Not ready only LAN 无法连接

来源:互联网 发布:python sleep用法 编辑:程序博客网 时间:2024/06/05 14:09

遇到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 interfaceauto loiface lo inet loopback# The primary network interfaceauto eth1iface eth1 inet dhcp如果需要固定ip地址,推荐在路由器中设置,因为一但你设置了固定ip地址,那dns也要手动设置,我查了不少资料,最后还是放弃了,总之是众说纷纭,还是路由器中设置一下方便。
原创粉丝点击