make firewall rules look nicer - add vlan to interface
This commit is contained in:
parent
1a0b42b727
commit
8da7714544
@ -5,6 +5,7 @@ using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using System.Xml;
|
||||
@ -15,6 +16,7 @@ namespace EduNetworkBuilder
|
||||
public partial class FirewallEditor : Form
|
||||
{
|
||||
NetworkDevice FirewallDevice = null;
|
||||
|
||||
public FirewallEditor(NetworkDevice WhatToEdit)
|
||||
{
|
||||
InitializeComponent();
|
||||
@ -23,13 +25,42 @@ namespace EduNetworkBuilder
|
||||
Icon = Properties.Resources.NBIco;
|
||||
}
|
||||
|
||||
string InterfaceVLAN(string device)
|
||||
{
|
||||
string answer = "";
|
||||
string basedevice = Regex.Replace(device, ":.*","");
|
||||
NetworkCard nic = FirewallDevice.NicFromName(basedevice);
|
||||
if (nic != null)
|
||||
{
|
||||
NetworkInterface nif = nic.InterfaceFromName(device);
|
||||
if(nif != null)
|
||||
{
|
||||
Network myNet = NB.GetNetwork();
|
||||
int id = nif.GetNonForbiddenVLANID();
|
||||
foreach(VLANName vn in myNet.VlanNames)
|
||||
{
|
||||
if(vn.ID == id)
|
||||
{
|
||||
answer = vn.Name;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return answer;
|
||||
}
|
||||
|
||||
void UpdateForm()
|
||||
{
|
||||
int selected = lbRules.SelectedIndex;
|
||||
lbRules.Items.Clear();
|
||||
foreach (FirewallRule FW in FirewallDevice.FirewallRules)
|
||||
{
|
||||
string OneLine = FW.Action.ToString() + " " + FW.Source + " -> " + FW.Destination;
|
||||
string svlan = InterfaceVLAN(FW.Source);
|
||||
if (svlan != "") svlan = svlan + " ";
|
||||
string dvlan = InterfaceVLAN(FW.Destination);
|
||||
if (dvlan != "") dvlan = dvlan + " ";
|
||||
string OneLine = FW.Action.ToString() + " " + FW.Source + " " + svlan + " -> " + FW.Destination + " " + dvlan;
|
||||
lbRules.Items.Add(OneLine);
|
||||
}
|
||||
if (selected >= 0 && selected < lbRules.Items.Count)
|
||||
|
Loading…
Reference in New Issue
Block a user