LinuxQuestions.org
LinuxAnswers - the LQ Linux tutorial section.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Server
User Name
Password
Linux - Server This forum is for the discussion of Linux Software used in a server related context.

Notices

Reply
 
LinkBack Search this Thread
Old 11-17-2009, 05:30 PM   #1
moekad
Member
 
Registered: Feb 2009
Posts: 64

Rep: Reputation: 15
iptables issue? want to allow external access to a webserver


hey need help
i got:
modem => linux box => client
modem have pulic ip PPPoe, connect to linux box with dhcp 192.168.1.0/24
and another lan 192.168.0.0/24 to client:
i want external network to have access to my private network i use LAN:
/sbin/iptables -t nat -A PREROUTING -p tcp -j DNAT --to-destination 192.168.1.66:80
/sbin/iptables -t nat -A POSTROUTING -p tcp -j SNAT --to-source $REAL_IP:80

but it won't work why?
i did a webserver and i want outside network to open my website! why didn't work? what's wrong? thanks
TIPS: internal network it work but external network it didn't work any issue plz ?
Thx

Last edited by GrapefruiTgirl; 11-19-2009 at 10:45 AM. Reason: improved title.
 
Old 11-18-2009, 03:48 AM   #2
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: KirraMail Live Email Server
Posts: 1,205

Rep: Reputation: 56
First of all, there could be any number of issues that could be causing this, have you turned ip-forwarding on in the kernel? you will also need to have some FORWARD chain rules after you have PREROUTING/POSTROUTING rules to push the data between the network cards. Also Could you post your full iptables script as well.

Last edited by fotoguy; 11-19-2009 at 02:54 AM.
 
Old 11-18-2009, 07:54 AM   #3
esaym
Member
 
Registered: Nov 2006
Distribution: Lots of Debian
Posts: 165

Rep: Reputation: 32
I would try installing shorewall. It really helps make managing iptables stuff easy
 
Old 11-18-2009, 08:14 AM   #4
rupertwh
Member
 
Registered: Sep 2006
Location: Munich, Germany
Distribution: Debian / Ubuntu
Posts: 292

Rep: Reputation: 46
Quote:
Originally Posted by moekad View Post
modem => linux box => client
modem have pulic ip PPPoe, connect to linux box with dhcp 192.168.1.0/24
and another lan 192.168.0.0/24 to client
That sounds as if your modem is a router rather than a modem. I.e. your network looks like:

Code:
(Uplink)<--PPPoE--> Modem <--192.168.1.0/24 --> Linux <--192.168.0.0/24 --> Client
In that case you would have to do port forwarding both on your modem and your linux box.

As to your iptables statement: Your are currently forwarding *any* tcp traffic from *any* interface to your client.
You'd rather want something like:
Code:
iptables -t nat -A PREROUTING -i $PUB_IF -p tcp --dport 80 -j DNAT --to-destination 192.168.1.66:80
BTW that forwarding IP doesn't fit to your network description. So maybe you could clarify that first.
 
Old 11-18-2009, 04:10 PM   #5
moekad
Member
 
Registered: Feb 2009
Posts: 64

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by fotoguy View Post
First of all, there could be any number of issues that could be causing this, have you turned port-forwarding on in the kernel? you will also need to have some FORWARD chain rules after you have PREROUTING/POSTROUTING rules to push the data between the network cards. Also Could you post your full iptables script as well.
hey thans
yes i did echo 1 > /proc/sys/net/ipv4/ip_forward
u've said port-forwarding ! how i can turn it on?
i did :
iptables -t nat -A PREROUTING -d $REAL_IP -p tcp --dport 80 -j DNAT --to-destination 192.168.1.66:80
iptables -t nat -A POSTROUTING -p tcp --sport 80 -j SNAT --to-source $REAL_IP:80
iptables -A FORWARD -i eth1 -o eth3 -p tcp --dport 80 -j ACCEPT
iptables -A FORWARD -i eth3 -o eth1 -p tcp --sport 80 -j ACCEPT

Thx for your help alot =)
 
Old 11-19-2009, 02:51 AM   #6
fotoguy
Senior Member
 
Registered: Mar 2003
Location: Brisbane Queensland Australia
Distribution: KirraMail Live Email Server
Posts: 1,205

Rep: Reputation: 56
Quote:
Originally Posted by moekad View Post
u've said port-forwarding ! how i can turn it on?
oops! sorry that was a error on my end, I meant ip-forwarding on in the kernel, which you say you have done with:

Quote:
echo 1 > /proc/sys/net/ipv4/ip_forward
 
Old 11-19-2009, 10:42 AM   #7
moekad
Member
 
Registered: Feb 2009
Posts: 64

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by fotoguy View Post
oops! sorry that was a error on my end, I meant ip-forwarding on in the kernel, which you say you have done with:
ah ok
so any clue how i can fix it then ?
Thx
 
Old 11-19-2009, 11:46 AM   #8
win32sux
Moderator
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,847

Rep: Reputation: 348Reputation: 348Reputation: 348Reputation: 348
Quote:
Originally Posted by moekad View Post
iptables -t nat -A PREROUTING -d $REAL_IP -p tcp --dport 80 -j DNAT --to-destination 192.168.1.66:80
iptables -t nat -A POSTROUTING -p tcp --sport 80 -j SNAT --to-source $REAL_IP:80
iptables -A FORWARD -i eth1 -o eth3 -p tcp --dport 80 -j ACCEPT
iptables -A FORWARD -i eth3 -o eth1 -p tcp --sport 80 -j ACCEPT
The only strange thing I see here is the fact that you're not specifying the interfaces in your PRE/POSTROUTING rules. This would cause failure, but only under certain circumstances. You seem to be experiencing total failure, so that's probably not the cause. Still, try this cleaned up set of rules:
Code:
iptables -P FORWARD DROP

iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT

iptables -A FORWARD -p TCP -i $WAN_IFACE -o $LAN_IFACE \
-d 192.168.1.66 --dport 80 -m state --state NEW -j ACCEPT

iptables -A FORWARD -j LOG --log-prefix "FORWARD DROP: "

iptables -t nat -A PREROUTING -p TCP -i $WAN_IFACE -d $WAN_IP --dport 80 \
-j DNAT --to-destination 192.168.1.66

iptables -t nat -A POSTROUTING -o $WAN_IFACE -j SNAT --to-source $WAN_IP
If it doesn't work please post the log messages generated, as well as the output from these commands:
Code:
iptables -nvL
Code:
iptables -nvL -t nat
Code:
cat /proc/sys/net/ipv4/ip_forward
We should be able to properly diagnose the problem with that information. If you aren't getting any log messages when the connection attempts fail then, as mentioned by rupertwh, you'll need to confirm that you don't need to do port-forwarding on the device your WAN interface is connected to.

Last edited by win32sux; 11-19-2009 at 11:53 AM.
 
Old 11-19-2009, 09:12 PM   #9
moekad
Member
 
Registered: Feb 2009
Posts: 64

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by win32sux View Post
The only strange thing I see here is the fact that you're not specifying the interfaces in your PRE/POSTROUTING rules. This would cause failure, but only under certain circumstances. You seem to be experiencing total failure, so that's probably not the cause. Still, try this cleaned up set of rules:
Code:
iptables -P FORWARD DROP

iptables -A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT

iptables -A FORWARD -p TCP -i $WAN_IFACE -o $LAN_IFACE \
-d 192.168.1.66 --dport 80 -m state --state NEW -j ACCEPT

iptables -A FORWARD -j LOG --log-prefix "FORWARD DROP: "

iptables -t nat -A PREROUTING -p TCP -i $WAN_IFACE -d $WAN_IP --dport 80 \
-j DNAT --to-destination 192.168.1.66

iptables -t nat -A POSTROUTING -o $WAN_IFACE -j SNAT --to-source $WAN_IP
If it doesn't work please post the log messages generated, as well as the output from these commands:
Code:
iptables -nvL
Code:
iptables -nvL -t nat
Code:
cat /proc/sys/net/ipv4/ip_forward
We should be able to properly diagnose the problem with that information. If you aren't getting any log messages when the connection attempts fail then, as mentioned by rupertwh, you'll need to confirm that you don't need to do port-forwarding on the device your WAN interface is connected to.


iptables Config: (INPUT OUTPUT FORWARD were Dropped and i try them as accept trying to resolv same)
//////////////////
# Generated by iptables-save v1.4.1.1 on Fri Nov 20 04:10:19 2009
*filter
:INPUT ACCEPT [6:468]
:FORWARD DROP [1968:95099]
:OUTPUT ACCEPT [17:14768]
-A INPUT -d 192.168.1.66/32 -p udp -m comment --comment "Allow local to traceroute" -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -s 192.168.0.26/32 -d 192.168.0.1/32 -p tcp -m tcp --dport 3128 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
-A INPUT -d 127.0.0.1/32 -j ACCEPT
-A INPUT -d 192.168.1.66/32 -i eth3 -p udp -m udp --sport 53 -m state --state RELATED,ESTABLISHED -m comment --comment "DNS Port Inciming on Interface Eth3 local Connection" -j ACCEPT
-A INPUT -d 192.168.1.66/32 -i eth3 -p tcp -m tcp --sport 80 -m state --state RELATED,ESTABLISHED -m comment --comment "HTTP Port Inciming on Interface Eth3 local Connection" -j ACCEPT
-A INPUT -d 192.168.1.66/32 -i eth3 -p tcp -m tcp --sport 443 -m state --state RELATED,ESTABLISHED -m comment --comment "Incoming to SSL/HTTPS Traffic with outgoing Interface Eth3 Local" -j ACCEPT
-A INPUT -d 192.168.1.66/32 -i eth3 -p tcp -m tcp --sport 1863 -m state --state RELATED,ESTABLISHED -m comment --comment "Incoming to MSN Traffic with outgoing Interface Eth3 Local" -j ACCEPT
-A INPUT -s 192.168.0.26/32 -d 192.168.0.1/32 -p tcp -m comment --comment "SSH" -m tcp --dport 22 -j ACCEPT
-A INPUT -s 192.168.0.26/32 -d 192.168.0.1/32 -i eth1 -p icmp -m icmp --icmp-type 8 -m comment --comment "ICMP Request from 192.168.0.26" -j ACCEPT
-A INPUT -s 192.168.0.26/32 -d 192.168.0.1/32 -i eth1 -p udp -m udp --dport 53 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
-A INPUT -s 192.168.0.26/32 -d 192.168.1.66/32 -p icmp -m icmp --icmp-type 8 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
-A INPUT -s 192.168.0.26/32 -p icmp -j ACCEPT
-A INPUT -p icmp -m comment --comment "allow Local to ping sites" -j ACCEPT
-A INPUT -s 192.168.1.254/32 -d 192.168.1.66/32 -p tcp -m tcp --sport 23 -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m tcp --dport 80 -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m tcp --sport 80 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m tcp --dport 1863 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "MSN" -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m tcp --sport 1863 -m state --state RELATED,ESTABLISHED -m comment --comment "MSN" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m tcp --dport 443 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "HTTPS/SSL" -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m tcp --sport 443 -m state --state RELATED,ESTABLISHED -m comment --comment "HTTPS/SSL" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m tcp --dport 6667 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "mIRC" -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m tcp --sport 6667 -m state --state RELATED,ESTABLISHED -m comment --comment "mIRC" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m multiport --dports 20,21 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "FTP" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m multiport --sports 20,21 -m state --state RELATED,ESTABLISHED -m comment --comment "FTP" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m multiport --dports 5050,5100,5060 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "Consequently:Yahoo Port,Yahoo Cam,Yahoo SIP voice" -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m multiport --sports 5050,5100,5060 -m state --state RELATED,ESTABLISHED -m comment --comment "Consequently:Yahoo Port,Yahoo Cam,Yahoo SIP voice" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m multiport --dports 9000,9010 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "HOTMAIL CAM" -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m multiport --sports 9000,9010 -m state --state RELATED,ESTABLISHED -m comment --comment "HOTMAIL CAM" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -i eth1 -o eth3 -p tcp -m tcp --dport 22 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "SSH" -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -i eth3 -o eth1 -p tcp -m tcp --sport 22 -m state --state RELATED,ESTABLISHED -m comment --comment "SSH" -j ACCEPT
-A FORWARD -s 192.168.0.26/32 -p icmp -m state --state NEW,RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -d 192.168.0.26/32 -p icmp -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
-A FORWARD -d 192.168.1.66/32 -i eth3 -o eth1 -p tcp -m tcp --dport 80 -m state --state NEW -j ACCEPT
-A FORWARD -j LOG --log-prefix "FORWARD DROP: "
-A OUTPUT -s 192.168.1.66/32 -p udp -m comment --comment "Allow local to traceroute" -j ACCEPT
-A OUTPUT -o lo -j ACCEPT
-A OUTPUT -s 192.168.0.1/32 -d 192.168.0.26/32 -p tcp -m tcp --sport 3128 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A OUTPUT -s 127.0.0.1/32 -j ACCEPT
-A OUTPUT -s 192.168.0.1/32 -d 192.168.0.0/24 -p tcp -m comment --comment "SSH" -m tcp --sport 22 -j ACCEPT
-A OUTPUT -s 192.168.1.66/32 -o eth3 -p udp -m udp --dport 53 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "Outgoing to DNS with outgoing Interface Eth3 Local" -j ACCEPT
-A OUTPUT -s 192.168.1.66/32 -o eth3 -p tcp -m tcp --dport 80 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "Outgoing to HTTP Traffic with outgoing Interface Eth3 Local" -j ACCEPT
-A OUTPUT -s 192.168.1.66/32 -o eth3 -p tcp -m tcp --dport 443 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "Outgoing to SSL HTTPS Traffic with outgoing Interface Eth3 Local" -j ACCEPT
-A OUTPUT -s 192.168.1.66/32 -o eth3 -p tcp -m tcp --dport 1863 -m state --state NEW,RELATED,ESTABLISHED -m comment --comment "Outgoing to MSN Traffic with outgoing Interface Eth3 Local" -j ACCEPT
-A OUTPUT -s 192.168.0.1/32 -d 192.168.0.26/32 -p icmp -m icmp --icmp-type 0 -m comment --comment "ICMP Reply for 192.168.0.26" -j ACCEPT
-A OUTPUT -s 192.168.0.1/32 -d 192.168.0.26/32 -o eth1 -p udp -m udp --sport 53 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A OUTPUT -s 192.168.1.66/32 -d 192.168.0.26/32 -p icmp -m icmp --icmp-type 0 -m state --state RELATED,ESTABLISHED -j ACCEPT
-A OUTPUT -d 192.168.0.26/32 -p icmp -j ACCEPT
-A OUTPUT -p icmp -m comment --comment "allow Local to ping sites" -j ACCEPT
-A OUTPUT -s 192.168.1.66/32 -d 192.168.1.254/32 -p tcp -m tcp --dport 23 -j ACCEPT
COMMIT
# Completed on Fri Nov 20 04:10:19 2009
# Generated by iptables-save v1.4.1.1 on Fri Nov 20 04:10:19 2009
*nat
:PREROUTING ACCEPT [5252:444077]
:POSTROUTING ACCEPT [1333:82478]
:OUTPUT ACCEPT [12605:1822572]
-A PREROUTING -s 192.168.0.26/32 -p tcp -m tcp --dport 80 -j REDIRECT --to-ports 3128
-A PREROUTING -d $WAN_IP/32 -i eth3 -p tcp -m tcp --dport 80 -j DNAT --to-destination 192.168.1.66
-A POSTROUTING -o eth3 -j SNAT --to-source $WAN_IP
-A POSTROUTING -o eth3 -j MASQUERADE
COMMIT
# Completed on Fri Nov 20 04:10:19 2009
# Generated by iptables-save v1.4.1.1 on Fri Nov 20 04:10:19 2009
*mangle
:PREROUTING ACCEPT [1290588:893033543]
:INPUT ACCEPT [1246866:881367204]
:FORWARD ACCEPT [42235:11491291]
:OUTPUT ACCEPT [1703601:955992613]
:POSTROUTING ACCEPT [1740382:966256070]
-A FORWARD -p tcp -m tcp --dport 3128 -j ECN --ecn-tcp-remove
-A FORWARD -p tcp -m tcp --dport 80 -j ECN --ecn-tcp-remove
-A FORWARD -p tcp -m tcp --dport 1863 -j ECN --ecn-tcp-remove
-A POSTROUTING -o eth3 -p tcp -m tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
COMMIT
# Completed on Fri Nov 20 04:10:19 2009

0 0 ACCEPT tcp -- eth3 eth1 0.0.0.0/0 192.168.1.66 tcp dpt:80 state NEW
0 0 LOG all -- * * 0.0.0.0/0 0.0.0.0/0 LOG flags 0 level 4 prefix `FORWARD DROP: '

Chain PREROUTING (policy ACCEPT 5254 packets, 444K bytes)
pkts bytes target prot opt in out source destination
5528 265K REDIRECT tcp -- * * 192.168.0.26 0.0.0.0/0 tcp dpt:80 redir ports 3128
0 0 DNAT tcp -- eth3 * 0.0.0.0/0 $WAN_IP tcp dpt:80 to:192.168.1.66
Chain POSTROUTING (policy ACCEPT 1352 packets, 97805 bytes)
pkts bytes target prot opt in out source destination
1 60 SNAT all -- * eth3 0.0.0.0/0 0.0.0.0/0 to:$WAN_IP
10244 682K MASQUERADE all -- * eth3 0.0.0.0/0 0.0.0.0/0


nothing hit! so nothing log

/etc/squid3# cat /proc/sys/net/ipv4/ip_forward
1


Hope you can resolve my problem thx =)

Last edited by moekad; 11-19-2009 at 09:18 PM.
 
Old 11-20-2009, 03:33 AM   #10
win32sux
Moderator
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,847

Rep: Reputation: 348Reputation: 348Reputation: 348Reputation: 348
Quote:
Originally Posted by moekad View Post
0 0 ACCEPT tcp -- eth3 eth1 0.0.0.0/0 192.168.1.66 tcp dpt:80 state NEW
0 0 LOG all -- * * 0.0.0.0/0 0.0.0.0/0 LOG flags 0 level 4 prefix `FORWARD DROP: '

Chain PREROUTING (policy ACCEPT 5254 packets, 444K bytes)
pkts bytes target prot opt in out source destination
5528 265K REDIRECT tcp -- * * 192.168.0.26 0.0.0.0/0 tcp dpt:80 redir ports 3128
0 0 DNAT tcp -- eth3 * 0.0.0.0/0 $WAN_IP tcp dpt:80 to:192.168.1.66
Chain POSTROUTING (policy ACCEPT 1352 packets, 97805 bytes)
pkts bytes target prot opt in out source destination
1 60 SNAT all -- * eth3 0.0.0.0/0 0.0.0.0/0 to:$WAN_IP
10244 682K MASQUERADE all -- * eth3 0.0.0.0/0 0.0.0.0/0
The top part of that output seems to be missing. Still, it's enough for us to see that no packets have hit either the FORWARD rule, the FORWARD chain policy, or the DNAT rule. You aren't testing this from a box with IP 192.168.0.26, right? I ask because if so, then the packet would match the REDIRECT rule, therefore bypassing the DNAT rule and the FORWARD chain.

Are you able to run tcpdump on this box?
Code:
tcpdump -n -i eth3 port 80 and dst $REAL_IP
Absence of output with that command (when testing the forwarding) would indicate the packets aren't arriving.

Last edited by win32sux; 11-20-2009 at 04:10 AM.
 
Old 11-20-2009, 09:44 AM   #11
moekad
Member
 
Registered: Feb 2009
Posts: 64

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by win32sux View Post
The top part of that output seems to be missing. Still, it's enough for us to see that no packets have hit either the FORWARD rule, the FORWARD chain policy, or the DNAT rule. You aren't testing this from a box with IP 192.168.0.26, right? I ask because if so, then the packet would match the REDIRECT rule, therefore bypassing the DNAT rule and the FORWARD chain.

Are you able to run tcpdump on this box?
Code:
tcpdump -n -i eth3 port 80 and dst $REAL_IP
Absence of output with that command (when testing the forwarding) would indicate the packets aren't arriving.
no bro
i'm testing from external network mean from another REAL IP let them to take access from my webserver
wanna me to test from internal access? i think internal work but external don't
Thx
 
Old 11-20-2009, 09:51 AM   #12
win32sux
Moderator
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,847

Rep: Reputation: 348Reputation: 348Reputation: 348Reputation: 348
Quote:
Originally Posted by moekad View Post
no bro
i'm testing from external network mean from another REAL IP let them to take access from my webserver
wanna me to test from internal access? i think internal work but external don't
Thx
Like I said, if the packets are reaching the box then they should show up in tcpdump's output. So yeah, do the test as you normally would (from the WAN side) and see if the packets are reaching this box or not. It doesn't sound to me like they are, but with tcpdump you can know for sure.

If you get output, post it. If you don't get any output, then you know what the problem is.

Last edited by win32sux; 11-20-2009 at 09:54 AM. Reason: Grammar.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
issue with iptables mrmnemo Slackware 3 09-22-2009 10:11 PM
Iptables Issue satish Linux - Networking 1 02-04-2009 05:51 AM
iptables issue pushpraj Linux - Networking 2 12-04-2008 10:08 AM
Issue with iptables SentralOrigin Linux - Networking 6 07-14-2007 04:42 PM
iptables issue f1uke Linux - Security 3 08-11-2003 08:58 PM


All times are GMT -5. The time now is 09:41 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration