Wireless Devices are auto-set up for DHCP

This commit is contained in:
Tim Young 2015-10-26 15:49:40 -04:00
parent 2c178b82e7
commit 9b82f0ccd5

View File

@ -72,6 +72,7 @@ namespace EduNetworkBuilder
if (what == NetworkComponentType.laptop ) if (what == NetworkComponentType.laptop )
{ {
tnic = new NetworkCard(NICs.Count(), GetUniqueIdentifier, hostname,NicType.wlan); //Add a wireless nic tnic = new NetworkCard(NICs.Count(), GetUniqueIdentifier, hostname,NicType.wlan); //Add a wireless nic
tnic.SetIPForDHCP();
NICs.Add(tnic); NICs.Add(tnic);
} }
if (what == NetworkComponentType.wbridge) if (what == NetworkComponentType.wbridge)
@ -158,6 +159,7 @@ namespace EduNetworkBuilder
tnic = new NetworkCard(0, GetUniqueIdentifier, hostname, NicType.lo); tnic = new NetworkCard(0, GetUniqueIdentifier, hostname, NicType.lo);
NICs.Add(tnic); NICs.Add(tnic);
tnic = new NetworkCard(0, GetUniqueIdentifier, hostname, NicType.wlan); tnic = new NetworkCard(0, GetUniqueIdentifier, hostname, NicType.wlan);
tnic.SetIPForDHCP();
NICs.Add(tnic); NICs.Add(tnic);
} }