Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.09 KB | None | 0 0
  1. root@darkstar:~# iptables -t nat -L -nvx
  2. Chain PREROUTING (policy ACCEPT 118 packets, 10381 bytes)
  3.     pkts      bytes target     prot opt in     out     source               destination
  4.        0        0 DNAT       tcp  --  *      *       0.0.0.0/0            10.0.2.13            tcp dpt:1234 to:10.0.2.60:3389
  5.  
  6. Chain INPUT (policy ACCEPT 104 packets, 9627 bytes)
  7.     pkts      bytes target     prot opt in     out     source               destination
  8.  
  9. Chain OUTPUT (policy ACCEPT 3 packets, 204 bytes)
  10.     pkts      bytes target     prot opt in     out     source               destination
  11.        0        0 DNAT       tcp  --  *      *       0.0.0.0/0            10.0.2.13            tcp dpt:3389 to:10.0.2.60
  12.        0        0 DNAT       tcp  --  *      lo      0.0.0.0/0            0.0.0.0/0            tcp dpt:1234 to:10.0.2.60:3389
  13.  
  14. Chain POSTROUTING (policy ACCEPT 3 packets, 204 bytes)
  15.     pkts      bytes target     prot opt in     out     source               destination
  16.        0        0 SNAT       tcp  --  *      *       0.0.0.0/0            10.0.2.60            tcp dpt:3389 to:10.0.2.13
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement