Simple question. The following error is driving me totally nuts:
Where X.X.X.X is my IP.Mon Nov 15 16:43:59 2010 name/X.X.X.X:1108 MULTI: no dynamic or static remote --ifconfig address is available for name/X.X.X.X:1108
Server.conf:
Code: Select all
port 443
proto tcp-server
dev tap
ca keys/ca-name/ca.crt
cert keys/ca-name/cert-server-ovpn.crt
key keys/ca-name/cert-server-ovpn.key
dh keys/ca-name/dh2048.pem
;server 192.168.2.0 255.255.255.0
crl-verify keys/ca-name/crl.pem
mode server
cipher AES-256-CBC
user nobody
group nogroup
status servers/openvpn01/logs/openvpn-status.log
log-append servers/openvpn01/logs/openvpn.log
verb 2
mute 20
max-clients 100
keepalive 10 120
client-config-dir /etc/openvpn/servers/openvpn01/ccd
tls-server
comp-lzo
persist-key
ccd-exclusive
push "redirect-gateway"
client-to-client
Code: Select all
client
proto tcp-client
dev tap
ca ca.crt
dh dh2048.pem
cert cert-name.crt
key cert-name.key
remote 192.168.0.6 443
cipher AES-256-CBC
verb 2
mute 20
keepalive 10 120
comp-lzo
persist-key
float
resolv-retry infinite
nobind
I am using XP (Client) and Linux (Server).
Ethernet bridging is what I want.
Googling around brings me more questions then solutions. Citate from a forum:
(Excuse for the bad German translation)This refers to the to the TAP / TUN adapter of the client contracted address. OpenVPN sorgt normalerweise dafür, dass ein Client nur seine ihm zugewiesene IP Adresse verwenden kann. OpenVPN will normally ensure that a client can only use its IP address assigned to it. (jedenfalls bei TUN) Das kann es aber nur tun, wenn es die Adresse selbst vergibt (--server oder --server-bridge Direktive). (At least in TUN) That can only do this if the address automatically (- server or - server-bridge directive).
In deinem Fall bekommt es von der Adressvergabe aber nichts mit, daher die Meldung. In your case it gets from the address allocation but with nothing, hence the message.
I don't get the picture anymore.
Anyone can fix this?