How to isolate ER605 VLANs?

This thread has been locked for further replies. You can start a new thread to share your ideas or ask questions.

How to isolate ER605 VLANs?

This thread has been locked for further replies. You can start a new thread to share your ideas or ask questions.
How to isolate ER605 VLANs?
How to isolate ER605 VLANs?
2023-03-14 04:49:05

I set up the VLANS on this router, but it looks like they can see each other by default.

I need to Isolate them, and isolate the VLANs from seeing the Admin GUI.

 

How can I do this? I don't want to use the Omada software, can I do this with the GUI??

I would think there should be a "Guest VLAN" option, but I don't see anything like that. This router has so many options, I'm surprised it doesn't have such a basic one.

 

Thanks

  0      
  0      
#1
Options
24 Reply
Re:How to isolate ER605 VLANs?
2023-03-14 15:37:18

  @minks1 

I have the same problem, look this https://community.tp-link.com/en/business/forum/topic/600612

  0  
  0  
#2
Options
Re:How to isolate ER605 VLANs?
2023-03-14 15:41:20

  @minks1 

my solution

 

1. create my_custom_script in /tmp/userconfig/etc

2. chmod +x

3. add */3 * * * * /bin/sh /tmp/userconfig/etc/my_custom_script[.]sh to crontab ->  /tmp/userconfig/etc/crontab

 

 

#!/bin/sh

if iptables -C INPUT -p tcp --dport 80 -s 192.168.10.0/24 -j DROP; then
    echo "Exist";
else
    echo "No Exist";
    iptables -I INPUT -p tcp --dport 80 -s 192.168.10.0/24 -j DROP;
    iptables -I INPUT -p tcp --dport 443 -s 192.168.10.0/24 -j DROP;
    iptables -I INPUT -p tcp --dport 22 -s 192.168.10.0/24 -j DROP;
    iptables -I INPUT -p tcp --dport 23 -s 192.168.10.0/24 -j DROP;
fi

  1  
  1  
#3
Options
Re:How to isolate ER605 VLANs?
2023-03-14 15:48:46

  @minks1 

I useed ER8411 for two weeks and this router in standalone mode doesn't have a lot of options from expected for me. For example set keepAlive config for OpenVpn.

 

The only solution is connect by ssh and find some workarounds

 

  0  
  0  
#4
Options
Re:How to isolate ER605 VLANs?
2023-03-14 16:19:01

  @mati2762 

Thanks for all the info! I will try it. That's a decent solution, but TPLINK should have a simple checkbox for this. Looks like they could care less though.

 

I thought the firewall ACL could be used, someone said to block VLAN2-> !VLAN2 for example, but that would probably block internet too?

I found this in another thread: https://community.tp-link.com/en/business/forum/topic/250216?sortDir=ASC&page=2

I think it may apply for ER605 too..

 

  0  
  0  
#5
Options
Re:How to isolate ER605 VLANs?
2023-03-14 16:20:57

  @mati2762 

are you sure that tmp directory ok to put scripts in? Do you think it may get wiped out at some point?

  0  
  0  
#6
Options
Re:How to isolate ER605 VLANs?
2023-03-14 16:42:30

  @minks1 

 

/tmp/userconfig/ - this folder have all user config, so when you backup your config from GUI and restore you notice that your file exists

  0  
  0  
#7
Options
Re:How to isolate ER605 VLANs?
2023-03-14 18:42:45

  @mati2762 

How did you enable SSH? I am unable to find a ssh option in the router's website. Maybe I need to upgrade firmware?

Also is it just me or are others having issues with this site? It keeps wanting to confirm I'm human.. I write a post, press submit, and I get kicked out completely, have to login all over again and prove I'm human. I've had to do this for every post, tplink is nuts.

  0  
  0  
#8
Options
Re:How to isolate ER605 VLANs?
2023-03-14 18:46:54 - last edited 2023-03-14 18:48:34

  @minks1 

 

 

  0  
  0  
#9
Options
Re:How to isolate ER605 VLANs?
2023-03-14 18:57:43

  @mati2762 

Thanks. This gui is not very intuituve, I'm used to dd-wrt.

 

Now I'm facing another error.. looks like the firmware doesn't have a secure version of ssh. It's from 2022-02-11, so it should've been fairly up to date. Tried guides for allowing legacy ssh and it still won't work. Did you run into this too?

 

ssh 192.168.100.1


Unable to negotiate with 192.1.100.1

port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1,diffie-hellman-group14-sha1

 

 

 

  0  
  0  
#10
Options
Re:How to isolate ER605 VLANs?
2023-03-14 19:01:10 - last edited 2023-03-14 19:02:29

  @minks1 

use this command

 

ssh -o KexAlgorithms=diffie-hellman-group1-sha1,diffie-hellman-group14-sha1 root@192.168.1.1

  1  
  1  
#11
Options

Information

Helpful: 0

Views: 2835

Replies: 24

Related Articles