tun 인터페이스를 생성하지 않는 OpenVPN


1

어떤 이유로 OpenVPN은 tun0 인터페이스를 만들지 않으며 더 이상 무엇을 해야할지 전혀 모릅니다.

이것은 내 server.conf입니다.

local 192.168.178.60
dev tun
proto udp
port 1194
ca /etc/openvpn/easy-rsa/keys/ca.crt
cert /etc/openvpn/easy-rsa/keys/server.crt
key /etc/openvpn/easy-rsa/keys/server.key
dh /etc/openvpn/easy-rsa/keys/dh1024.pem
server 10.8.0.0 255.255.255.0
# server and remote endpoints
ifconfig 10.8.0.1 10.8.0.2
# Add route to Client routing table for the OpenVPN Server
push "route 10.8.0.1 255.255.255.255"
# Add route to Client routing table for the OPenVPN Subnet
push "route 10.8.0.0 255.255.255.0"
# your local subnet
push "route 192.168.178.60 255.255.255.0"
# Set your primary domain name server address to Google DNS 8.8.8.8
push "dhcp-option DNS 8.8.8.8"
push "redirect-gateway def1"
client-to-client
duplicate-cn
keepalive 10 120
tls-auth /etc/openvpn/easy-rsa/keys/ta.key 0
cipher AES-128-CBC
comp-lzo
user nobody
group nogroup
persist-key
persist-tun
status /var/log/openvpn-status.log 20
log /var/log/openvpn.log
verb 1
# This configuration file was originally written by Lauren Orsini at 
ReadWrite.

누구나해야 할 일이 있습니까?


OpenVPN을 시작하기 전에 인터페이스 --mktun옵션을 사용하십시오 tun0.
LawrenceC

이것은 멍청한 질문 일지 모르지만 해당 옵션을 어디에 추가해야합니까?
Roel Huizing

1
verb 4더 많은 로깅을 얻는 데 사용하십시오 . 또한으로 시작 했 root습니까?
다니엘 B

예, 루트로 서비스를 시작했습니다.
Roel Huizing

오류가 발생했습니다 :
Roel Huizing
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.