I bet on the two OUTPUT lines. I doubt that your origin will be from the 92 port when you connect to a ssh server on a nother machine.
Also tweakable in the kernel normaly outgoing connections take on a random port between 1024:65535.
Try this one
Code:
root@tux:/etc# iptables -A INPUT -p tcp --destination-port 92 -j ACCEPT
root@tux:/etc# iptables -A INPUT -p udp --destination-port 92 -j ACCEPT
root@tux:/etc# iptables -A OUTPUT -p tcp --destination-port 92 -j ACCEPT
root@tux:/etc# iptables -A OUTPUT -p udp --destination-port 92 -j ACCEPT
If you changed the service in
/etc/servicesyou could also go along with
Code:
root@tux:/etc# iptables -A OUTPUT -p udp --destination-port ssh -j ACCEPT
Cheers Zhjim