What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

The conflict between dualwan & IPTV problem solved

johnnyboy

Occasional Visitor
The main issue is I can't get internet connection while IPTV paras setted.

Detailed description :
http://forums.smallnetbuilder.com/showthread.php?t=15865


By hacking the code, now I solved this problem with a little change in the code of file router/rc/init.c. For RT-N16 (L2157), RT-AC68U(L2362) and the likes, change the one line below:

Code:
  if(nvram_get("switch_wantag") && !nvram_match("switch_wantag", "") && !nvram_match("switch_wantag", "none") ){

to
Code:
if(nvram_get("switch_wantag") && !nvram_match("switch_wantag", "") && !nvram_match("switch_wantag", "none") && !nvram_match("switch_wantag", "manual")){

Now both dualwan and IPTV functions OK.

Thanks to anyone who helps me to successfully compile the code.
 
Last edited:

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top