mirror of
https://github.com/MonkWho/pfatt.git
synced 2024-11-22 10:35:14 +01:00
pfSense 2.4.5 cleanup
This commit is contained in:
parent
30ec673f01
commit
c229973076
15
bin/pfatt.sh
15
bin/pfatt.sh
@ -1,16 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
ONT_IF='em0'
|
ONT_IF='xx0'
|
||||||
RG_IF='em1'
|
RG_IF='xx1'
|
||||||
RG_ETHER_ADDR='xx:xx:xx:xx:xx:xx'
|
RG_ETHER_ADDR='xx:xx:xx:xx:xx:xx'
|
||||||
LOG=/var/log/pfatt.log
|
LOG=/var/log/pfatt.log
|
||||||
|
|
||||||
# Calculate pfsense version so we can manage some variations.
|
|
||||||
VERSION_MAJOR=`sed -nre 's/([0-9])+\.([0-9])+\.([0-9])+.*/\1/p' /etc/version`
|
|
||||||
VERSION_MINOR=`sed -nre 's/([0-9])+\.([0-9])+\.([0-9])+.*/\2/p' /etc/version`
|
|
||||||
VERSION_PATCH=`sed -nre 's/([0-9])+\.([0-9])+\.([0-9])+.*/\3/p' /etc/version`
|
|
||||||
|
|
||||||
getTimestamp(){
|
getTimestamp(){
|
||||||
echo `date "+%Y-%m-%d %H:%M:%S :: [pfatt.sh] ::"`
|
echo `date "+%Y-%m-%d %H:%M:%S :: [pfatt.sh] ::"`
|
||||||
}
|
}
|
||||||
@ -22,12 +17,6 @@ getTimestamp(){
|
|||||||
echo "$(getTimestamp) RG_IF: $RG_IF"
|
echo "$(getTimestamp) RG_IF: $RG_IF"
|
||||||
echo "$(getTimestamp) RG_ETHER_ADDR: $RG_ETHER_ADDR"
|
echo "$(getTimestamp) RG_ETHER_ADDR: $RG_ETHER_ADDR"
|
||||||
|
|
||||||
if ( [ ${VERSION_MAJOR} -ge '2' ] && [ ${VERSION_MINOR} -ge '4' ] && [ ${VERSION_PATCH} -lt '5' ] ); then
|
|
||||||
echo -n "$(getTimestamp) loading netgraph kernel modules... "
|
|
||||||
/sbin/kldload -nq ng_etf
|
|
||||||
echo "OK!"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo -n "$(getTimestamp) attaching interfaces to ng_ether... "
|
echo -n "$(getTimestamp) attaching interfaces to ng_ether... "
|
||||||
/usr/local/bin/php -r "pfSense_ngctl_attach('.', '$ONT_IF');"
|
/usr/local/bin/php -r "pfSense_ngctl_attach('.', '$ONT_IF');"
|
||||||
/usr/local/bin/php -r "pfSense_ngctl_attach('.', '$RG_IF');"
|
/usr/local/bin/php -r "pfSense_ngctl_attach('.', '$RG_IF');"
|
||||||
|
Loading…
Reference in New Issue
Block a user