What is the best commands to list IPtables in a Sophos Firewall and also remove a MTU rule?
This thread was automatically locked due to age.
What is the best commands to list IPtables in a Sophos Firewall and also remove a MTU rule?
Hello Ben,
Enable editing of the startup script:
mount -no remount,rw /
Use vi to edit /scripts/system/clientpref/customization_application_startup.sh and add the lines. This should then look like:
#!/bin/sh
iptables -t mangle -D POSTROUTING -d 172.19.0.0/16 -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --set-mss 900
exit 0;
Save the changes and exit vi
Write protect the startup script again:
mount -no remount,ro /
Note:
In High Availability clusters the above will need to be applied on both nodes.
Regards,
I have two different MTU settings for the same thing, just wanted to clean it up.
Thanks,
I have two different MTU settings for the same thing, just wanted to clean it up.
Thanks,