|
|
On Tue, May 04, 2004 at 06:10:48PM +0200, Manuel Balderrábano wrote: > > Here are my config files: > > **Windows** > > remote <Public_Firewall_IP> > port 5000 > dev tap > ip-win32 manual > ifconfig 10.3.0.3 255.255.255.0 > secret c:\openVPN\secret.key > verb 5 > ping 10 > float > tun-mtu 1500 > tun-mtu-extra 32 > mssfix > disable-occ > route delay 1 > route <Office_network_IP> <Office_network_MASK> 10.3.0.4 > > **Linux**(eth0 is local network, eth1 is Internet) > > dev tap0 > up ./tap-up.sh > local <Office_network_IP> > secret /etc/openvpn/public.key > port 5000 > ping 10 > verb 5 > #mssfix > tun-mtu 1500 > tun-mtu-extra 32 > > **tap-up.sh** > > #!/bin/bash > ifconfig br0 10.3.0.4 pointopoint 10.3.0.0 netmask 255.255.255.0 mtu 1500 You need to configure br0 to be on the ordinary office lan, like 192.168.0.0/24 or something like that. 10.3.0.0 is a good choice for the openvpn virtual addresses, but not for br0. > **SuSEFirewall** > (added tap0 as internal network interface) > > What am I doing wrong? The Windows and Linux boxes can't even see themselves! > > Thanks in advance. ____________________________________________ Openvpn-users mailing list Openvpn-users@xxxxxxxxxxxxxxxxxxxxx https://lists.sourceforge.net/lists/listinfo/openvpn-users |