Re: MASQUERADE

2001-06-15 Thread Thor
Hi > Hi all, > > I still have a masquerade problem, and nothing helps me to go to the right > way. > > This is my configuration : > > A server (10.0.0.1) with internet access on eth0, and local network access why you don't assign an internet number on eth0 if y

Re: MASQUERADE

2001-06-15 Thread Michel D'HOOGE
Luc MAIGNAN wrote: > [...] > On the workstation, I specify the gateway and the dns as 192.168.0.1 Do you have a DNS server (or cache) on your firewall? Otherwise, on the workstation you should point to your ISP's one. Michel

Re: MASQUERADE

2001-06-15 Thread Jonas bazz Egidius
Luc MAIGNAN wrote: > Hi all, > > I still have a masquerade problem, and nothing helps me to go to the right > way. > > This is my configuration : > > A server (10.0.0.1) with internet access on eth0, and local network access > (192.168.0.1) on eth1 > A workstation

MASQUERADE

2001-06-15 Thread Luc MAIGNAN
Hi all, I still have a masquerade problem, and nothing helps me to go to the right way. This is my configuration : A server (10.0.0.1) with internet access on eth0, and local network access (192.168.0.1) on eth1 A workstation (192.168.0.14) wants to access to internet This is what I done

Re: MASQUERADE

2001-06-15 Thread Thor
Hi > Hi all, > > I still have a masquerade problem, and nothing helps me to go to the right > way. > > This is my configuration : > > A server (10.0.0.1) with internet access on eth0, and local network access why you don't assign an internet number on eth0 if y

Re: MASQUERADE

2001-06-15 Thread Michel D'HOOGE
Luc MAIGNAN wrote: > [...] > On the workstation, I specify the gateway and the dns as 192.168.0.1 Do you have a DNS server (or cache) on your firewall? Otherwise, on the workstation you should point to your ISP's one. Michel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "un

Re: MASQUERADE

2001-06-15 Thread Jonas bazz Egidius
Luc MAIGNAN wrote: > Hi all, > > I still have a masquerade problem, and nothing helps me to go to the right > way. > > This is my configuration : > > A server (10.0.0.1) with internet access on eth0, and local network access > (192.168.0.1) on eth1 > A workstation

MASQUERADE

2001-06-15 Thread Luc MAIGNAN
Hi all, I still have a masquerade problem, and nothing helps me to go to the right way. This is my configuration : A server (10.0.0.1) with internet access on eth0, and local network access (192.168.0.1) on eth1 A workstation (192.168.0.14) wants to access to internet This is what I done

Re: MASQUERADE problem

2001-06-07 Thread Aleksander Iwanski
here is no support for > > ip_masquerade on this system'. > > > > But I have compiled my kernel with FULL NAT - including all masquerade > > options - (but I don't see any file named /proc/sys/net/ipv4/ip_masquerade) > > > > Anyone have an idea of what ca

Re: Help needed on MASQUERADE

2001-06-07 Thread Jose Celestino
On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > HI all, > > I have an internet connection on eth0 (10.0.0.1) and a private network > connection on eth1 (192.168.0.1). > > I put the masquerade configuration on a kernel 2.4.4 : > > iptables -t nat -

Re: MASQUERADE problem

2001-06-04 Thread Jose Celestino
As modules? Have you loaded them? On Sat, Jun 02, 2001 at 12:02:04AM +0200, Luc MAIGNAN wrote: > Hi, > > I did : 'netstat -M' and netstat told me : there is no support for > ip_masquerade on this system'. > > But I have compiled my kernel with FULL NAT - in

Re: MASQUERADE problem

2001-06-04 Thread Aleksander Iwanski
here is no support for > > ip_masquerade on this system'. > > > > But I have compiled my kernel with FULL NAT - including all masquerade > > options - (but I don't see any file named /proc/sys/net/ipv4/ip_masquerade) > > > > Anyone have an idea of what ca

Re: Help needed on MASQUERADE

2001-06-04 Thread Jose Celestino
On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > HI all, > > I have an internet connection on eth0 (10.0.0.1) and a private network > connection on eth1 (192.168.0.1). > > I put the masquerade configuration on a kernel 2.4.4 : > > iptables -t nat -

Re: MASQUERADE problem

2001-06-04 Thread Jose Celestino
As modules? Have you loaded them? On Sat, Jun 02, 2001 at 12:02:04AM +0200, Luc MAIGNAN wrote: > Hi, > > I did : 'netstat -M' and netstat told me : there is no support for > ip_masquerade on this system'. > > But I have compiled my kernel with FULL NAT - in

Re: Help needed on MASQUERADE

2001-06-03 Thread Ian Miller
you need to set it to eth0 not ppp0 - Original Message - From: Luc MAIGNAN <[EMAIL PROTECTED]> To: Cc: ; <[EMAIL PROTECTED]@lists.debian.org> Sent: Monday, June 04, 2001 7:39 AM Subject: Help needed on MASQUERADE > HI all, > > I have an internet connection on

Re: Help needed on MASQUERADE

2001-06-03 Thread Ian Miller
you need to set it to eth0 not ppp0 - Original Message - From: Luc MAIGNAN <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: ; <[EMAIL PROTECTED]@lists.debian.org> Sent: Monday, June 04, 2001 7:39 AM Subject: Help needed on MASQUERADE > HI all, > > I have an

Re: Help needed on MASQUERADE

2001-06-03 Thread Robert Magier
> iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE > echo 1>/proc/sys/net/ipv4/ip_forward This wouldn't work at all. You have to write iptables -t nat -I POSTROUTING -s 192.168.0.0/24 -o ppp0 -j MASQUARADE echo 1>/proc/sys/net/ipv4/ip_forward -- [EMAIL

Re: Help needed on MASQUERADE

2001-06-03 Thread John McCullough
you need to send it through eth0 not ppp0 [EMAIL PROTECTED] wrote: On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE echo 1>/proc/sys/net/ipv4/ip_forward A workstation on my network succeeded to ping b

Re: Help needed on MASQUERADE

2001-06-03 Thread yoros
On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE > echo 1>/proc/sys/net/ipv4/ip_forward > A workstation on my network succeeded to ping both eth0 and eth1, but didn't > succeed to go out of my

Re: Help needed on MASQUERADE

2001-06-03 Thread Alson van der Meulen
On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > HI all, > > I have an internet connection on eth0 (10.0.0.1) and a private network > connection on eth1 (192.168.0.1). > > I put the masquerade configuration on a kernel 2.4.4 : > > iptables -t nat -

Help needed on MASQUERADE

2001-06-03 Thread Luc MAIGNAN
HI all, I have an internet connection on eth0 (10.0.0.1) and a private network connection on eth1 (192.168.0.1). I put the masquerade configuration on a kernel 2.4.4 : iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE echo 1>/proc/sys/net/ipv4/ip_forward A workstat

Re: Help needed on MASQUERADE

2001-06-03 Thread Robert Magier
> iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE > echo 1>/proc/sys/net/ipv4/ip_forward This wouldn't work at all. You have to write iptables -t nat -I POSTROUTING -s 192.168.0.0/24 -o ppp0 -j MASQUARADE echo 1>/proc/sys/net/ipv4/ip_forward -- [EMAIL

Re: Help needed on MASQUERADE

2001-06-03 Thread John McCullough
you need to send it through eth0 not ppp0 [EMAIL PROTECTED] wrote: >On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > >> iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE >> echo 1>/proc/sys/net/ipv4/ip_forward >> >>A workstation on

Re: Help needed on MASQUERADE

2001-06-03 Thread yoros
On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE > echo 1>/proc/sys/net/ipv4/ip_forward > A workstation on my network succeeded to ping both eth0 and eth1, but didn't > succeed to go out of my

Re: Help needed on MASQUERADE

2001-06-03 Thread Alson van der Meulen
On Sun, Jun 03, 2001 at 11:39:29PM +0200, Luc MAIGNAN wrote: > HI all, > > I have an internet connection on eth0 (10.0.0.1) and a private network > connection on eth1 (192.168.0.1). > > I put the masquerade configuration on a kernel 2.4.4 : > > iptables -t nat -

Help needed on MASQUERADE

2001-06-03 Thread Luc MAIGNAN
HI all, I have an internet connection on eth0 (10.0.0.1) and a private network connection on eth1 (192.168.0.1). I put the masquerade configuration on a kernel 2.4.4 : iptables -t nat -s 192.168.0.0/24 -o ppp0 -j MASQUERADE echo 1>/proc/sys/net/ipv4/ip_forward A workstat

MASQUERADE problem

2001-06-01 Thread Luc MAIGNAN
Hi, I did : 'netstat -M' and netstat told me : there is no support for ip_masquerade on this system'. But I have compiled my kernel with FULL NAT - including all masquerade options - (but I don't see any file named /proc/sys/net/ipv4/ip_masquerade) Anyone have an ide

MASQUERADE problem

2001-06-01 Thread Luc MAIGNAN
Hi, I did : 'netstat -M' and netstat told me : there is no support for ip_masquerade on this system'. But I have compiled my kernel with FULL NAT - including all masquerade options - (but I don't see any file named /proc/sys/net/ipv4/ip_masquerade) Anyone have an ide