This is a multi-part message in MIME format. ------=_NextPart_000_011B_01C1B538.DCC3CCA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hello Bert, I understand about your solution but I dunno how to do it using proxy arp. :( Bert can you help me how to do it? I will attach my config file to this email and can you edit it and send it back to me? I really badly need to work. Thanks, glynn ----- Original Message ----- From: "bert hubert" <ahu@ds9a.nl> To: "Glynn S. Condez" <glynn@itextron.com> Cc: <lartc@mailman.ds9a.nl> Sent: Wednesday, February 13, 2002 3:59 PM Subject: Re: [LARTC] Help with GRE Tunneling > On Wed, Feb 13, 2002 at 10:25:55AM +0800, Glynn S. Condez wrote: > > > hello everyone, I have a working pptp vpn ( gre tunneling ). I setup samba > > server on both linux server, in network A, i could see the network > > neighborhood with samba but i couldnt see the network of the otherside but > > I could open the samba server in Network B and also the workstation using > > \\networkB\share. I'd like to ask if its possible that im going to use the > > same subnet of the network B, so that both Network A and Network B are in > > the same subnet. Here is my config in pptp vpn on both networks. if its > > possible can anyone correct the config? > > Could you use a mailer that does not send out thousand character lines? You > are supposed to wrap lines after ~75 characters on the internet. But > returning to the question, yes, you can perform tricks to create a tunnel > within the same subnet. > > This is done with proxy arp, which tells the router on Network A about which > hosts live on Network B. Network A will then think the router contains > Network B - no explicit routes are needed. > > I *think* this will do what you want but I'd advise against it. There are > SMB proxy servers available which can help you browse over network borders. > Those are probably the right solution. > > Regards, > > bert > > -- > http://www.PowerDNS.com Versatile DNS Software & Services > http://www.tk the dot in .tk > Netherlabs BV / Rent-a-Nerd.nl - Nerd Available - > Linux Advanced Routing & Traffic Control: http://ds9a.nl/lartc > _______________________________________________ > LARTC mailing list / LARTC@mailman.ds9a.nl > http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://ds9a.nl/lartc/ > ------=_NextPart_000_011B_01C1B538.DCC3CCA0 Content-Type: text/plain; name="vpnconfig.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="vpnconfig.txt" #Network A /sbin/echo 1 > /proc/sys/net/ipv4/ip_forward /sbin/ipchains -A forward -s 192.168.1.0/24 -j MASQ /sbin/ipchains -A forward -s 192.168.2.0/24 -j MASQ =20 /sbin/insmod ip_gre /sbin/ip tunnel add alas mode gre remote x.x.x.x local y.y.y.y ttl 255 /sbin/ip link set netb up /sbin/ip addr add 192.168.1.1 dev netb /sbin/ip route add 192.168.2.0/24 dev netb -------------------------------------------------------------------------= ----- #Network B /sbin/echo 1 > /proc/sys/net/ipv4/ip_forward /sbin/ipchains -A forward -s 192.168.2.0/24 -j MASQ /sbin/ipchains -A forward -s 192.168.1.0/24 -j MASQ =20 /sbin/insmod ip_gre /sbin/ip tunnel add text mode gre remote y.y.y.y local x.x.x.x ttl 255 /sbin/ip link set neta up /sbin/ip addr add 192.168.2.1 dev neta /sbin/ip route add 192.168.1.0/24 dev neta ------=_NextPart_000_011B_01C1B538.DCC3CCA0--