图解Windows下VMWare中的Linux网络配置

(一)Windows下的配置

(1)本地连接如下配置

图解Windows下VMWare中的Linux网络配置_第1张图片
(2)VMware Network Adapter VMnet1如下配置

图解Windows下VMWare中的Linux网络配置_第2张图片
(3)VMware Network Adapter Vmnet8如下配置

 图解Windows下VMWare中的Linux网络配置_第3张图片

(二)Linux下的配置

(1)虚拟网卡的配置如下

图解Windows下VMWare中的Linux网络配置_第4张图片
(2)SUSE中网卡的配置如下

图解Windows下VMWare中的Linux网络配置_第5张图片
(3)Linux防火墙的配置如下
     安装完毕后,发现在其他机器上不能telnet到这台机器的22端口甚至其他端口
     误打误撞,我先启动了防火墙,然后又停止了防火墙,竟然就可以了,特总结一下。
     service iptables start
     service iptables stop
(4)解决"不能打开到主机的连接,在端口23:连接失败"
      vi   /etc/xinetd.d/telnet  
      修改disable=no;  
      service   xinetd   restart;  
      service   iptables   stop;  
      service   vsftpd   start; 

      chkconfig vsftpd on
      chkconfig telnet on
      service vsftpd restart
      service telnet restart

(5)Linux下eth0的配置如下


(6)Linux下DNS的配置如下

 图解Windows下VMWare中的Linux网络配置_第6张图片

 

你可能感兴趣的:(vmware,linux,windows,网络,防火墙,service)