Hello,
On Friday 03 May 2002 12:00, Bob Hillegas wrote:
> ./fw_iptables.nat: line 623: syntax error near unexpected token
> `"EXT-icmp-in(1' ./fw_iptables.nat: line 623: `## --log-level INFO
> --log-prefix "EXT-icmp-in(1): "'
> $IPT -A EXT-icmp-out --fragment -m limit -j LOG \
> --log-level INFO --log-prefix "EXT-icmp-out(2): "
The characters "(" and ")" are special in shell. You should escape them :
$IPT -A EXT-icmp-out --fragment -m limit -j LOG \
--log-level INFO --log-prefix "EXT-icmp-out\(2\): "
or use '' to tell the shell not interpret :
$IPT -A EXT-icmp-out --fragment -m limit -j LOG \
--log-level INFO --log-prefix 'EXT-icmp-out(2): '
Have a nice day,
Fabrice.
--
Fabrice MARIE
Senior R&D Engineer
Celestix Networks
http://www.celestix.com/
"Silly hacker, root is for administrators"
-Unknown