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
  • ゲストネットワーク - ブリッジアダプタ。ホストとゲストが互いにpingできる
  • 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
    

何が間違っているのか理解できません。また、他の仮想マシンで接続しようとしましたが、幸運ではありませんでした。

ベストアンサー1

おすすめ記事