This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| root@bird1:~# # acknowledgements to the client(10.10.10.1) are withheld until the hot backup has received the corresponding data | |
| root@bird1:~# tshark -c 4 -i enp7s0 -f 'tcp and port 179' | |
| Running as user "root" and group "root". This could be dangerous. | |
| Capturing on 'enp7s0' | |
| 1 0.000000000 10.10.10.1 → 10.10.10.0 BGP 85 KEEPALIVE Message | |
| 2 0.601193559 10.10.10.0 → 10.10.10.1 TCP 66 179 → 60153 [ACK] Seq=1 Ack=20 Win=16384 Len=0 TSval=2273170037 TSecr=1268402651 | |
| 3 4.135022182 10.10.10.0 → 10.10.10.1 BGP 85 KEEPALIVE Message | |
| 4 4.135067259 10.10.10.1 → 10.10.10.0 TCP 66 60153 → 179 [ACK] Seq=20 Ack=20 Win=126 Len=0 TSval=1268406786 TSecr=2273173570 | |
| 4 packets captured | |
| root@bird1:~# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| get_journal_logs() { | |
| log_type="$1" | |
| if [[ "$log_type" == "system" ]]; then | |
| args+=( "--dmesg" ) |
OlderNewer