-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
385 lines (317 loc) · 15.6 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Management;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ChangeIP
{
public partial class MainForm : Form
{
// Variabili classe
List<IpConfiguration> ipConfigurations = new List<IpConfiguration>();
List<NetworkAdapter> networkAdapters = new List<NetworkAdapter>();
public MainForm()
{
// Inizializzo i componenti grafici
InitializeComponent();
// Centro il form a schermo
this.CenterToParent();
// Se ho un indirizzo custom usato in precedenza lo setto
string lastCustomIP = Properties.Settings.Default.LastCustomIP;
if (lastCustomIP != "")
TxtCustomIP.Text = lastCustomIP;
// Creo la lista di definizioni indirizzi IP
CreateNetworkAddresses();
// Popolo la lista di adattatori di rete
SetupNetworkAdapters();
}
// Metodo per popolare le definizioni di indirizzi IP
public void CreateNetworkAddresses()
{
ipConfigurations.Add(new IpConfiguration() { Name = "Mitsubishi", IpAddress = "192.168.3.200" });
ipConfigurations.Add(new IpConfiguration() { Name = "Siemens/Lenze", IpAddress = "192.168.254.200" });
ipConfigurations.Add(new IpConfiguration() { Name = "Lenze 1° Avvio", IpAddress = "192.168.5.200" });
ipConfigurations.Add(new IpConfiguration() { Name = "Siemens Comar", IpAddress = "192.168.0.200" });
}
// Metodo per popolare la lista di adattatori di rete presenti sul PC
public void SetupNetworkAdapters()
{
// Ottengo gli adattatori di rete
networkAdapters = GetNetworkAdapters();
// Configuro il ComboBox con gli adattatori appena ottenuti
AdaptersComboBox.DataSource = networkAdapters;
AdaptersComboBox.DisplayMember = "Name";
AdaptersComboBox.ValueMember = "Value";
// Imposto il ComboBox come sola lettura
AdaptersComboBox.DropDownStyle = ComboBoxStyle.DropDownList;
// Ottengo l'adattatore e se ho un adattatore salvato lo scelgo
string savedAdapter = Properties.Settings.Default.SavedAdapter;
if (savedAdapter != "")
{
NetworkAdapter adapter = networkAdapters.Where(i => i.Name == savedAdapter).FirstOrDefault();
AdaptersComboBox.SelectedIndex = networkAdapters.IndexOf(adapter);
BoxSaveAdapter.Checked = true;
return;
}
// Aggiorno le info con IP e info configurazione
DisplayNetworkAdapterInformations(0);
}
// Metodo per ottenere una lista di adattatori di rete
private List<NetworkAdapter> GetNetworkAdapters()
{
// Creo una lista di elementi
List<NetworkAdapter> results = new List<NetworkAdapter>();
// Ottengo gli adattatori di rete
NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();
// Itero la lista di adattatori di rete
foreach (NetworkInterface adapter in adapters)
{
// Ottengo il nome dell'adattatore
var adapterName = adapter.Description;
// Se l'adattatore non è di tipo Ethernet passo al prossimo adattatore
if (adapter.NetworkInterfaceType != NetworkInterfaceType.Ethernet)
continue;
// Aggiungo l'adattatore alla lista degli adapters
results.Add(new NetworkAdapter() { Name = adapterName, Value = adapter });
}
// Restituisco la lista
return results;
}
// Metodo per mostare a video IP e configurazione di un adattatore di rete
public void DisplayNetworkAdapterInformations(int adapterIndex)
{
// Setto il cursore di caricamento
Cursor.Current = Cursors.WaitCursor;
// Ottengo l'adattatore dalla lista
NetworkInterface adapter = networkAdapters[adapterIndex].Value;
// Ottengo gli adattatori da Windows
List<NetworkAdapter> adapters = GetNetworkAdapters();
// Aggiorno nella lista di NetworkAdapters l'adattatore
IEnumerable<NetworkAdapter> winAdapter = GetNetworkAdapters().Where(adp => adp.Name == networkAdapters[adapterIndex].Name);
adapter = winAdapter.First().Value;
// Ottengo le informazioni sull'IP
IPInterfaceProperties properties = adapter.GetIPProperties();
// Itero gli UnicastAddresses
String ipAddress = "Non Disponibile";
foreach (UnicastIPAddressInformation ip in properties.UnicastAddresses)
{
// Se l'Address Family dell'indirizzo è InterNetwork leggo l'IP address
if (ip.Address.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)
{
ipAddress = ip.Address.ToString();
}
}
// Imposto l'IP Address
LblIpAddress.Text = ipAddress;
// Cerco nella lista di definizioni IP se c'è quello appena letto
IEnumerable<IpConfiguration> query = ipConfigurations.Where(ip => ip.IpAddress == ipAddress);
// Se non ho risultati vuol dire che sono in indirizzo statico custom
if (query.Count() == 0)
{
LblConfigType.Text = "Custom / DHCP";
Cursor.Current = Cursors.Default;
return;
}
// Ottengo il primo elemento dell'array, lo stampo a video e resetto il cursore
LblConfigType.Text = query.First().Name;
Cursor.Current = Cursors.Default;
}
// Metodo per impostare un IP statico su un adattatore di rete
public void SetStaticIP(string ipAddress)
{
// Setto il cursore di caricamento
Cursor.Current = Cursors.WaitCursor;
// Ottengo le info sull'adattatore di rete scelto
NetworkInterface networkInterface = networkAdapters[AdaptersComboBox.SelectedIndex].Value;
// Creo un processo netsh per configurare l'IP in statico e lo avvio
Process process = new Process
{
StartInfo = new ProcessStartInfo("netsh", $"interface ip set address \"{networkInterface.Name}\" static {ipAddress}") { Verb = "runas" }
};
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
process.WaitForExit();
// Ottengo l'exit code del processo - 0 = OK
bool successful = process.ExitCode == 0;
process.Dispose();
// Se sono uscito dal processo in modo anomalo mi fermo
if (!successful)
{
Cursor.Current = Cursors.Default;
MessageBox.Show("Impossibile impostare l'IP per l'adattatore di rete scelto", "Errore netsh", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Creo un processo netsh per configurare i DNS in DHCP e lo avvio
process = new Process
{
StartInfo = new ProcessStartInfo("netsh", $"interface ip set dns \"{networkInterface.Name}\" dhcp") { Verb = "runas" }
};
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
process.WaitForExit();
// Ottengo l'exit code del processo
successful = process.ExitCode == 0;
process.Dispose();
// Se sono uscito dal processo in modo anomalo mi fermo
if (!successful)
{
Cursor.Current = Cursors.Default;
MessageBox.Show("Impossibile impostare l'IP per l'adattatore di rete scelto", "Errore netsh", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Aggiorno le info mostrare a video
DisplayNetworkAdapterInformations(AdaptersComboBox.SelectedIndex);
// Se ho selezionato il salva adattatore lo salvo
if (BoxSaveAdapter.Checked)
{
Properties.Settings.Default.SavedAdapter = networkAdapters[AdaptersComboBox.SelectedIndex].Name;
Properties.Settings.Default.Save();
}
// Mostro popup di avviso IP modificato
MessageBox.Show("Scheda \"" + networkAdapters[AdaptersComboBox.SelectedIndex].Name + "\" modificata con indirizzo IP statico "
+ ipAddress, "Modifica indirizzo IP", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
// Callback per il cambio di index mostrato
private void AdaptersComboBox_SelectedIndexChanged(object sender, EventArgs e)
{
// Cancello le info sull'adattatore
LblIpAddress.Text = "";
LblConfigType.Text = "";
// Aggiorno le info sull' adattatore
DisplayNetworkAdapterInformations(AdaptersComboBox.SelectedIndex);
}
// Metodo per aggiornare l'IP a DHCP
private void BtnDHCP_Click(object sender, EventArgs e)
{
// Setto il cursore di caricamento
Cursor.Current = Cursors.WaitCursor;
// Ottengo le info sull'adattatore di rete scelto
NetworkInterface networkInterface = networkAdapters[AdaptersComboBox.SelectedIndex].Value;
// Creo un processo netsh per configurare l'IP in DHCP e lo avvio
Process process = new Process
{
StartInfo = new ProcessStartInfo("netsh", $"interface ip set address \"{networkInterface.Name}\" dhcp") { Verb = "runas" }
};
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
process.WaitForExit();
// Ottengo l'exit code del processo - 0 = OK
bool successful = process.ExitCode == 0;
process.Dispose();
// Se sono uscito dal processo in modo anomalo mi fermo
if (!successful)
{
Cursor.Current = Cursors.Default;
MessageBox.Show("Impossibile impostare l'IP in DHCP per l'adattatore di rete scelto", "Errore netsh", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Creo un processo netsh per configurare i DNS in DHCP e lo avvio
process = new Process
{
StartInfo = new ProcessStartInfo("netsh", $"interface ip set dns \"{networkInterface.Name}\" dhcp") { Verb = "runas" }
};
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = true;
process.Start();
process.WaitForExit();
// Ottengo l'exit code del processo
successful = process.ExitCode == 0;
process.Dispose();
// Se sono uscito dal processo in modo anomalo mi fermo
if (!successful)
{
Cursor.Current = Cursors.Default;
MessageBox.Show("Impossibile impostare l'IP in DHCP per l'adattatore di rete scelto", "Errore netsh", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Aggiorno le info mostrare a video
DisplayNetworkAdapterInformations(AdaptersComboBox.SelectedIndex);
// Se ho selezionato il salva adattatore lo salvo
if (BoxSaveAdapter.Checked)
{
Properties.Settings.Default.SavedAdapter = networkAdapters[AdaptersComboBox.SelectedIndex].Name;
Properties.Settings.Default.Save();
}
// Mostro popup di avviso IP modificato
MessageBox.Show("Scheda \"" + networkAdapters[AdaptersComboBox.SelectedIndex].Name + "\" modificata con indirizzo IP dinamico",
"Modifica indirizzo IP", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
// Metodo per aggiornare l'IP a Mitsubishi
private void BtnMitsubishi_Click(object sender, EventArgs e)
{
// Ottengo l'indirizzo IP da impostare
IpConfiguration config = ipConfigurations.Where(i => i.Name.ToLower().Contains("mitsubishi")).FirstOrDefault();
// Imposto l'indirizzo IP statico
SetStaticIP(config.IpAddress);
}
// Metodo per aggiornare l'IP a Siemens e Lenze (sono uguali)
private void BtnLenzeSiemens_Click(object sender, EventArgs e)
{
// Ottengo l'indirizzo IP da impostare
IpConfiguration config = ipConfigurations.Where(i => i.Name.ToLower().Contains("siemens")).FirstOrDefault();
// Imposto l'indirizzo IP statico
SetStaticIP(config.IpAddress);
}
// Metodo per aggiornare l'IP a Siemens per COMAR
private void BtnSiemensComar_Click(object sender, EventArgs e)
{
// Ottengo l'indirizzo IP da impostare
IpConfiguration config = ipConfigurations.Where(i => i.Name.ToLower().Contains("comar")).FirstOrDefault();
// Imposto l'indirizzo IP statico
SetStaticIP(config.IpAddress);
}
// Metodo per aggiornare l'IP a Lenze per PLC vergine
private void BtnLenzeFirst_Click(object sender, EventArgs e)
{
// Ottengo l'indirizzo IP da impostare
IpConfiguration config = ipConfigurations.Where(i => i.Name.ToLower().Contains("avvio")).FirstOrDefault();
// Imposto l'indirizzo IP statico
SetStaticIP(config.IpAddress);
}
// Metodo per impostare un indirizzo IP custom specificato dall'utente
private void BtnCustomIP_Click(object sender, EventArgs e)
{
// Creo il match pattern per il regex
string pattern = @"^([1-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])(\.([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])){3}$";
// Creo una Regular Expression
Regex check = new(pattern);
// Ottengo l'indirizzo IP inserito
string ipAddress = TxtCustomIP.Text;
// Se non ho nulla inserito mi fermo
if (ipAddress == "")
{
MessageBox.Show("Inserire un indirizzo IP da impostare", "Errore IP custom", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Se non posso validare mi fermo
if (!check.IsMatch(ipAddress, 0))
{
MessageBox.Show("L'indirizzo IP inserito non è valido, controlla e riprova", "Errore IP custom", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Imposto l'indirizzo IP statico scelto
SetStaticIP(ipAddress);
// Salvo l'indirizzo IP scritto dall'utente
Properties.Settings.Default.LastCustomIP = ipAddress;
Properties.Settings.Default.Save();
}
// Metodo per gestire il click sull'about
private void LblAbout_Click(object sender, EventArgs e)
{
// Apro la pagina GitHub del progetto
Process.Start(new ProcessStartInfo { FileName = "https://github.com/IvanMazzoli/ChangeIP", UseShellExecute = true });
}
}
}