Fix Wireless repeater issue.

This commit is contained in:
Tim Young 2018-04-09 15:46:09 +03:00
parent 3847a90f70
commit e239a1873d

View File

@ -1887,7 +1887,8 @@ namespace EduNetworkBuilder
{ {
NicType NT = nic.GetNicType; NicType NT = nic.GetNicType;
//bridges and waps are basically switches //bridges and waps are basically switches
if ((myType == NetworkComponentType.wap || myType == NetworkComponentType.wbridge) && NT != NicType.management_interface) if ((myType == NetworkComponentType.wap || myType == NetworkComponentType.wbridge
|| myType == NetworkComponentType.wrepeater) && NT != NicType.management_interface)
NT = NicType.port; NT = NicType.port;
switch(NT) switch(NT)
{ {