Skip to content

Instantly share code, notes, and snippets.

@luckman212
Last active October 23, 2023 02:38
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luckman212/124a81d5f295dfa5c6d1162aaef55842 to your computer and use it in GitHub Desktop.
Save luckman212/124a81d5f295dfa5c6d1162aaef55842 to your computer and use it in GitHub Desktop.
script for pfSense to detect IPv6 router advertisements coming from a WAN interface
#!/bin/sh
# set the variable below to your FIOS interface
IF=igb0
/usr/bin/timeout 5m /usr/sbin/tcpdump -ni ${IF} 'icmp6 && ip6[40] == 134' >/tmp/${IF}_RAs.out
FSIZE=$(/usr/bin/stat -f '%z' /tmp/${IF}_RAs.out)
if [ "$FSIZE" -gt 1 ]; then
echo '<?php include("notices.inc"); $msg = "IPv6 RAs detected on interface '$IF'"; notify_via_smtp($msg);?>' | /usr/local/bin/php -q
fi
@sectary-want-holly
Copy link

Great script! However, is there a way to tie the notification into Telegram?

@luckman212
Copy link
Author

@sectary-want-holly sure, just edit the notify_via_smtp() line, change it to notify_via_telegram($msg);

@sectary-want-holly
Copy link

@luckman212 well, I feel silly! Muchos gracious!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment