- Individual Applications
Protect
Filter
Perform
Connect
Add-Ons
- Software Packages
- Complete Appliances
|
|
#11 (permalink) |
|
Master Untangler
Join Date: Aug 2008
URLs submitted: 1
Posts: 946
![]() |
Thanks tbelote. I really apprecaite you providing this workaround. If I implemented these settings and wanted to put it "back to the way it was" before I edited the system at the prompt, how would I do that (besides re-installing).
Thanks! |
|
|
|
|
#12 (permalink) |
![]() ![]() Join Date: Apr 2008
Location: Phoenix, AZ
URLs submitted: 8
Posts: 15,460
![]() |
Oh great you found the post! I see my memory was only half right as usual...
These changes modify /etc/untangle-net-alpaca/scripts/modules So all you need to do is backup that file and replace the backup later if you want... Heck I just did a vi on that file and it looks like you may want to look as well. It is loading the following modules of interest... nf_conntrack_h323 nf_conntrack_sip nf_nat_h323 nf_nat_sip It seems the stuff provided here only removes the sip entries. If you're using h323 you may want to zap them too.
__________________
Rob Sandling, BS:SWE, MCP Intouch Technology Phone: 480-272-9889 rob@intouchtechllc.com UntangleAppliances.com Phone: 866-794-8879 |
|
|
|
|
#13 (permalink) | |
|
Master Untangler
Join Date: Aug 2008
URLs submitted: 1
Posts: 946
![]() |
Quote:
Unfortunately, I was working late and didn't think to backup the files. I already made these changes on my 6.0 Beta2 box at home. Its not that big of deal to re-install, but I would rather not if I could just undo what I did (since it didn't work for me). |
|
|
|
|
|
#14 (permalink) |
![]() ![]() Join Date: Apr 2008
Location: Phoenix, AZ
URLs submitted: 8
Posts: 15,460
![]() |
Well just toss a 6.0 in a VM and crank up SSH.
http://winscp.net/eng/index.php Use that on the IP of the VM.. and pull out the file. Heck if you really wanted you may be able to get it out of the CD iso... I have no idea if the 5.4 version is different... here is the content of mine. Code:
exec >> /var/log/untangle-net-alpaca/modprobe.log 2>&1
MODULES="nf_conntrack \
nf_conntrack_h323 nf_conntrack_netbios_ns \
nf_conntrack_proto_gre nf_conntrack_tftp\
nf_conntrack_amanda nf_conntrack_ipv4\
nf_conntrack_netlink nf_conntrack_proto_sctp\
nf_conntrack_ftp nf_conntrack_irc\
nf_conntrack_pptp nf_conntrack_sip
nf_nat nf_nat_ftp\
nf_nat_irc nf_nat_proto_gre\
nf_nat_snmp_basic nf_nat_amanda\
nf_nat_h323 nf_nat_pptp\
nf_nat_sip nf_nat_tftp"
for module in $MODULES ; do
modprobe $module
if [ "$?" -gt 0 ]; then echo "ERROR loading module $module"; fi
done
exit 0
__________________
Rob Sandling, BS:SWE, MCP Intouch Technology Phone: 480-272-9889 rob@intouchtechllc.com UntangleAppliances.com Phone: 866-794-8879 |
|
|
![]() |
| Thread Tools | |
|
|