Advertisement
Guest User

Untitled

a guest
May 20th, 2015
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. iptables -L -v -n -t nat
  2.  
  3. Chain PREROUTING (policy ACCEPT 7912 packets, 1044K bytes)
  4. pkts bytes target prot opt in out source destination
  5.  
  6. Chain INPUT (policy ACCEPT 7844 packets, 1030K bytes)
  7. pkts bytes target prot opt in out source destination
  8.  
  9. Chain OUTPUT (policy ACCEPT 3586 packets, 299K bytes)
  10. pkts bytes target prot opt in out source destination
  11.  
  12. Chain POSTROUTING (policy ACCEPT 3586 packets, 299K bytes)
  13. pkts bytes target prot opt in out source destination
  14.  
  15. cat /etc/ssh/sshd_config | sed '/#/d'
  16.  
  17. Port 3000
  18. Port 22
  19. Protocol 2
  20. HostKey /etc/ssh/ssh_host_rsa_key
  21. HostKey /etc/ssh/ssh_host_dsa_key
  22. HostKey /etc/ssh/ssh_host_ecdsa_key
  23. UsePrivilegeSeparation yes
  24.  
  25. KeyRegenerationInterval 3600
  26. ServerKeyBits 768
  27.  
  28. SyslogFacility AUTH
  29. LogLevel INFO
  30.  
  31. LoginGraceTime 120
  32. PermitRootLogin no
  33. StrictModes yes
  34.  
  35. RSAAuthentication yes
  36. PubkeyAuthentication yes
  37. AuthorizedKeysFile %h/.ssh/authorized_keys
  38.  
  39. IgnoreRhosts yes
  40. RhostsRSAAuthentication no
  41. HostbasedAuthentication yes
  42.  
  43. PermitEmptyPasswords no
  44.  
  45. ChallengeResponseAuthentication no
  46.  
  47. X11Forwarding no
  48. X11DisplayOffset 10
  49. X11UseLocalhost yes
  50. PrintMotd no
  51. PrintLastLog yes
  52. TCPKeepAlive yes
  53.  
  54. AcceptEnv LANG LC_*
  55.  
  56. Subsystem sftp /usr/lib/openssh/sftp-server
  57.  
  58. UsePAM yes
  59.  
  60. ClientAliveCountMax 3
  61. ClientAliveInterval 15
  62. PermitTunnel yes
  63. StrictModes no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement