Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. $ wget -O- http://localhost:3000
  2.  
  3. ...<p>Welcome to Express</p>...
  4.  
  5. $ sudo netstat -ntlp
  6. Active Internet connections (only servers)
  7. Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
  8. tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN 9167/mongod
  9. tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1607/sshd
  10. tcp 0 0 0.0.0.0:3000 0.0.0.0:* LISTEN 13685/node
  11. tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1104/master
  12. tcp6 0 0 :::22 :::* LISTEN 1607/sshd
  13. tcp6 0 0 ::1:25 :::* LISTEN 1104/master
  14.  
  15. $ sudo iptables -L
  16. Chain INPUT (policy ACCEPT)
  17. target prot opt source destination
  18.  
  19. Chain FORWARD (policy ACCEPT)
  20. target prot opt source destination
  21.  
  22. Chain OUTPUT (policy ACCEPT)
  23. target prot opt source destination
  24.  
  25. $ sestatus
  26. SELinux status: disabled
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement