Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. $ tshark -r playbook.pcap
  2. 1 0.000000 10.0.5.46 -> 10.0.100.61 TCP 74 58272 → 22 [SYN] Seq=0 Win=29200 Len=0 MSS=1460 SACK_PERM=1 TSval=2134045698 TSecr=0 WS=128
  3. 2 0.000403 10.0.100.61 -> 10.0.5.46 TCP 74 22 → 58272 [SYN, ACK] Seq=0 Ack=1 Win=28960 Len=0 MSS=1400 SACK_PERM=1 TSval=101829993 TSecr=2134045698 WS=128
  4. 3 0.000443 10.0.5.46 -> 10.0.100.61 TCP 66 58272 → 22 [ACK] Seq=1 Ack=1 Win=29312 Len=0 TSval=2134045698 TSecr=101829993
  5. 4 0.001017 10.0.5.46 -> 10.0.100.61 SSH 107 Client: Protocol (SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.1)
  6. 5 0.001275 10.0.100.61 -> 10.0.5.46 TCP 66 22 → 58272 [ACK] Seq=1 Ack=42 Win=29056 Len=0 TSval=101829994 TSecr=2134045698
  7. 6 0.011482 10.0.100.61 -> 10.0.5.46 SSHv2 109 Server: Protocol (SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8)
  8. 7 0.011502 10.0.5.46 -> 10.0.100.61 TCP 66 58272 → 22 [ACK] Seq=42 Ack=44 Win=29312 Len=0 TSval=2134045701 TSecr=101829996
  9. 8 0.012415 10.0.100.61 -> 10.0.5.46 TCP 1454 [TCP segment of a reassembled PDU]
  10. 9 0.012431 10.0.5.46 -> 10.0.100.61 TCP 66 58272 → 22 [ACK] Seq=42 Ack=1432 Win=32128 Len=0 TSval=2134045701 TSecr=101829996
  11. 10 0.012456 10.0.100.61 -> 10.0.5.46 SSHv2 326 Server: Key Exchange Init
  12. 11 0.012466 10.0.5.46 -> 10.0.100.61 TCP 66 58272 → 22 [ACK] Seq=42 Ack=1692 Win=34944 Len=0 TSval=2134045701 TSecr=101829996
  13. 12 0.015782 10.0.5.46 -> 10.0.100.61 SSHv2 1402 Client: Key Exchange Init
  14.  
  15. ---
  16. - hosts: all
  17. gather_facts: no
  18. become: yes
  19. tasks:
  20. - name: "Run apt-get autoremove"
  21. async: 45
  22. apt:
  23. name: linux-image-generic
  24. autoremove: yes
  25. state: present
  26. update_cache: yes
  27. cache_valid_time: 3600
  28.  
  29. ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ServerAliveInterval=30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement