Arp and clearArp as doactions
This commit is contained in:
parent
8e0fdd9105
commit
06ca7c59f3
@ -139,6 +139,10 @@ namespace EduNetworkBuilder
|
|||||||
case NBAction.dhcp:
|
case NBAction.dhcp:
|
||||||
break;
|
break;
|
||||||
case NBAction.arp:
|
case NBAction.arp:
|
||||||
|
source.AskArpFromHere(Destination);
|
||||||
|
break;
|
||||||
|
case NBAction.cleararp:
|
||||||
|
source.ClearArps();
|
||||||
break;
|
break;
|
||||||
case NBAction.ping:
|
case NBAction.ping:
|
||||||
source.PingFromHere(Destination) ;
|
source.PingFromHere(Destination) ;
|
||||||
|
@ -104,7 +104,9 @@ namespace EduNetworkBuilder
|
|||||||
public enum HowToBreak { PowerOff, EthernetBreak, EthernetCorrupt, EthernetRemoveLink, LockOutSwitch,
|
public enum HowToBreak { PowerOff, EthernetBreak, EthernetCorrupt, EthernetRemoveLink, LockOutSwitch,
|
||||||
WirelessBreakSSID, WirelessBreakKey, DeviceChangeIP, DeviceChangeGW, StaticRouteClear,
|
WirelessBreakSSID, WirelessBreakKey, DeviceChangeIP, DeviceChangeGW, StaticRouteClear,
|
||||||
StaticRouteCorrupt, VLANChange, VPNChangeEndpoint, VPNChangeKey, BreakDevice }
|
StaticRouteCorrupt, VLANChange, VPNChangeEndpoint, VPNChangeKey, BreakDevice }
|
||||||
public enum NBAction { none, newdevice, changelocation, changedevice, deletecomponent, ping, traceroute, arp, dhcp }
|
public enum NBAction { none, newdevice, changelocation, changedevice, deletecomponent,
|
||||||
|
|
||||||
|
ping, traceroute, arp, cleararp, dhcp }
|
||||||
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public struct HostNicID //This holds a unique identifier for a network card. Links use this to know what it is connected to
|
public struct HostNicID //This holds a unique identifier for a network card. Links use this to know what it is connected to
|
||||||
@ -1405,6 +1407,29 @@ namespace EduNetworkBuilder
|
|||||||
|
|
||||||
AC.DoAction();
|
AC.DoAction();
|
||||||
|
|
||||||
|
}
|
||||||
|
public static void DoActionArpDevice(int HostID, NB_IPAddress Destination)
|
||||||
|
{
|
||||||
|
ActionClass AC = new ActionClass();
|
||||||
|
AC.Action = NBAction.arp;
|
||||||
|
AC.SourceID = HostID;
|
||||||
|
AC.Destination = Destination;
|
||||||
|
|
||||||
|
RegisterAction(AC);
|
||||||
|
|
||||||
|
AC.DoAction();
|
||||||
|
|
||||||
|
}
|
||||||
|
public static void DoActionClearArpDevice(int HostID)
|
||||||
|
{
|
||||||
|
ActionClass AC = new ActionClass();
|
||||||
|
AC.Action = NBAction.cleararp;
|
||||||
|
AC.SourceID = HostID;
|
||||||
|
|
||||||
|
RegisterAction(AC);
|
||||||
|
|
||||||
|
AC.DoAction();
|
||||||
|
|
||||||
}
|
}
|
||||||
#endregion ActionFunctions
|
#endregion ActionFunctions
|
||||||
|
|
||||||
|
@ -1494,7 +1494,8 @@ namespace EduNetworkBuilder
|
|||||||
todo = destination.Edit(ItemClickedOn, this, NB.Translate("H_ARP_Title2"));
|
todo = destination.Edit(ItemClickedOn, this, NB.Translate("H_ARP_Title2"));
|
||||||
if (todo)
|
if (todo)
|
||||||
{
|
{
|
||||||
ItemClickedOn.AskArpFromHere(destination);
|
//ItemClickedOn.AskArpFromHere(destination);
|
||||||
|
NB.DoActionArpDevice(ItemClickedOn.GetUniqueIdentifier, destination);
|
||||||
myNetwork.ProcessPackets();
|
myNetwork.ProcessPackets();
|
||||||
UpdateMessages();
|
UpdateMessages();
|
||||||
}
|
}
|
||||||
@ -1503,7 +1504,8 @@ namespace EduNetworkBuilder
|
|||||||
private void pbNetworkView_ArpClear_Click(object sender, EventArgs e)
|
private void pbNetworkView_ArpClear_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (ItemClickedOn == null) return; //we do not have something chosen to arp request from
|
if (ItemClickedOn == null) return; //we do not have something chosen to arp request from
|
||||||
ItemClickedOn.ClearArps();
|
//ItemClickedOn.ClearArps();
|
||||||
|
NB.DoActionClearArpDevice(ItemClickedOn.GetUniqueIdentifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void pbNetworkView_MouseUp(object sender, MouseEventArgs e)
|
private void pbNetworkView_MouseUp(object sender, MouseEventArgs e)
|
||||||
|
Loading…
Reference in New Issue
Block a user