Difference between revisions of "EdgeOS SIP ALG"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "<ref>https://community.ubnt.com/t5/EdgeMAX/Disable-SIP-ALG/td-p/1690148</ref><ref>https://community.ubnt.com/t5/EdgeMAX/Can-t-SIP-register-unless-I-clear-connection-tracking/t...") |
Michael.mast (talk | contribs) |
||
Line 2: | Line 2: | ||
<pre> | <pre> | ||
set system conntrack modules sip disable | set system conntrack modules sip disable | ||
+ | </pre> | ||
+ | To clear conntrack table with script | ||
+ | <pre> | ||
+ | #!/bin/bash | ||
+ | |||
+ | sudo conntrack -F | ||
</pre> | </pre> |
Latest revision as of 11:46, 23 October 2017
set system conntrack modules sip disable
To clear conntrack table with script
#!/bin/bash sudo conntrack -F