# iptables -N KRYTEN && iptables -A KRYTEN -j ACCEPT
# iptables -N KRYTEN_IN && iptables -A KRYTEN_IN -j KRYTEN
# iptables -N KRYTEN_OUT && iptables -A KRYTEN_OUT -j KRYTEN
# iptables -A FORWARD -s 192.168.0.60 -j KRYTEN_OUT
# iptables -A FORWARD -d 192.168.0.60 -j KRYTEN_IN
-------------------------
# iptables -vx -L KRYTEN
Chain kryten (2 references)
 pkts   bytes target   prot opt in   out   source   destination
  442   46340 ACCEPT   all  --  any  any   anywhere anywhere
-------------------------
# iptables -vx -L KRYTEN | egrep -v 'Chain|pkts' | awk '{print $2}'
-------------------------
@3 pass inet from 192.168.0.60 to any
  [ Evaluations: 125       Packets: 60        Bytes: 4976        States: 0     ]
  [ Inserted: uid 0 pid 15815 ]
@4 pass inet from any to 192.168.0.60
  [ Evaluations: 128       Packets: 65        Bytes: 7748        States: 0     ]
  [ Inserted: uid 0 pid 15815 ]
-------------------------
pass inet from 192.168.0.60 to any label "KRYTEN_OUT"
pass inet from any to 192.168.0.60 label "KRYTEN_IN"
-------------------------
KRYTEN_OUT 175 77 6660 77 6660 0 0
KRYTEN_IN 176 93 11668 0 0 93 11668
