Raspberry Pi에서 OpenVPN 서버를 실행하려고 합니다. apt를 사용하여 설치한 후 원시 연결을 만들어 테스트해 보려고 하는데 다른 컴퓨터에서 서버에 연결할 수 없습니다. 서버는 Debian 7.8에서 OpenVPN 2.2.1을 실행 중이고 클라이언트는 Windows 8.1에서 OpenVPN 2.3.6을 실행 중입니다. 서비스 터미널:
pi@raspberrypi ~ $ sudo openvpn --dev tun1 --ifconfig 10.9.8.1 10.9.8.2 --port 20004
Thu Apr 16 19:00:22 2015 OpenVPN 2.2.1 arm-linux-gnueabihf [SSL] [LZO2] [EPOLL] [PKCS11] [eurephia] [MH] [PF_INET6] [IPv6 payload 20110424-2 (2.2RC2)] built on Dec 1 2014
Thu Apr 16 19:00:22 2015 NOTE: OpenVPN 2.1 requires '--script-security 2' or higher to call user-defined scripts or executables
Thu Apr 16 19:00:22 2015 ******* WARNING *******: all encryption and authentication features disabled -- all data will be tunnelled as cleartext
Thu Apr 16 19:00:22 2015 TUN/TAP device tun1 opened
Thu Apr 16 19:00:22 2015 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
Thu Apr 16 19:00:22 2015 /sbin/ifconfig tun1 10.9.8.1 pointopoint 10.9.8.2 mtu 1500
Thu Apr 16 19:00:22 2015 UDPv4 link local (bound): [undef]
Thu Apr 16 19:00:22 2015 UDPv4 link remote: [undef]
고객:
C:\Users\Adam>openvpn --remote doma.pinkiepie.cz --port 20004 --dev tun1 --ifconfig 10.9.8.2 10.9.8.1
Thu Apr 16 18:44:18 2015 OpenVPN 2.3.6 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [PKCS11] [IPv6] built on Mar 19 2015
Thu Apr 16 18:44:18 2015 library versions: OpenSSL 1.0.1m 19 Mar 2015, LZO 2.08
Thu Apr 16 18:44:18 2015 ******* WARNING *******: all encryption and authentication features disabled -- all data will be tunnelled as cleartext
Thu Apr 16 18:44:18 2015 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
Thu Apr 16 18:44:18 2015 open_tun, tt->ipv6=0
Thu Apr 16 18:44:18 2015 TAP-WIN32 device [SÃÅ¥ Ethernet 3] opened: \\.\Global\{C7E73F1C-C5D5-4767-84D9-563C582B9765}.tap
Thu Apr 16 18:44:18 2015 Notified TAP-Windows driver to set a DHCP IP/netmask of 10.9.8.2/255.255.255.252 on interface {C7E73F1C-C5D5-4767-84D9-563C582B9765} [DHCP-serv: 10.9.8.1, lease-time: 31536000]
Thu Apr 16 18:44:18 2015 UDPv4 link local (bound): [undef]
Thu Apr 16 18:44:18 2015 UDPv4 link remote: [AF_INET]213.192.60.53:20004
내가 뭘 잘못하고 있는지 아시나요?