Ubuntu Guest VM의 OpenVPN 서버에 연결

Ubuntu Guest VM의 OpenVPN 서버에 연결

Ubuntu Server VM에 OpenVPN 서버를 설정하고 호스트 Windows 8에서 연결을 시도했지만 성공하지 못했습니다. 연결이 없습니다. 뭐가 문제 야?

이 튜토리얼로 모든 작업이 완료되었습니다.http://lintut.com/install-openvpn-on-ubuntu-server/

  • /proc/sys/net/ipv4/ip_forward> 1
  • 게스트 네트워크 - 브리지 어댑터. 호스트와 게스트가 서로 핑할 수 있음
  • iptables

    Chain INPUT (policy ACCEPT 500 packets, 73786 bytes)
     pkts bytes target     prot opt in     out     source               destination         
    
    Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
     pkts bytes target     prot opt in     out     source               destination         
        0     0 ACCEPT     all  --  *      *       0.0.0.0/0            0.0.0.0/0            state RELATED,ESTABLISHED
        0     0 ACCEPT     all  --  *      *       10.8.0.0/24          0.0.0.0/0           
        0     0 REJECT     all  --  *      *       0.0.0.0/0            0.0.0.0/0            reject-with icmp-port-unreachable
    
    Chain OUTPUT (policy ACCEPT 29 packets, 1664 bytes)
     pkts bytes target     prot opt in     out     source               destination  
    
  • ifconfig

    eth0      Link encap:Ethernet  HWaddr 08:00:27:26:c7:a5  
              inet addr:10.210.0.135  Bcast:10.210.1.255  Mask:255.255.254.0
    
    tun0      Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00  
              inet addr:10.8.0.1  P-t-P:10.8.0.2  Mask:255.255.255.255
    

무엇이 잘못되었는지 이해할 수 없습니다. 또한 다른 가상 머신에서 연결을 시도했지만 운이 좋지 않았습니다.

관련 정보