Hey Streaker--
I meant to say "goes well." I actually cannot make it, as the Navy has me doing a few other things this coming weekend.
I also figured out my iptables problem, but thanks anyway.
Quote:
# Block Outgoing SSH connections to prevent connection bouncing
iptables -A OUTPUT -p tcp -m tcp --dport 22 -j DROP
|
should have read
Quote:
# Block Outgoing SSH connections to prevent connection bouncing
iptables -A FORWARD -p tcp -m tcp --dport 22 -j DROP
|