-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
263 lines (243 loc) · 12.5 KB
/
Program.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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.NetworkInformation;
using System.Threading;
class Program
{
static void Main()
{
if (!IsAdministrator())
{
Console.WriteLine("Для работы программы требуются права администратора");
Thread.Sleep(10000);
return;
}
while (true)
{
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("1. Подключиться к сети техникума через Орион");
Console.WriteLine("2. Подключиться к сети техникума через Ростелеком");
Console.WriteLine("3. Задать свои параметры подключения");
Console.WriteLine("0. Выход");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Выберите необходимое действие");
var choice = Console.ReadLine();
switch (choice)
{
case "1":
ConnectToNetwork("Орион");
break;
case "2":
ConnectToNetwork("Ростелеком");
break;
case "3":
ConnectToNetwork("Свое");
break;
case "0":
return;
default:
Console.WriteLine("Неверный выбор. Попробуйте еще раз.");
Thread.Sleep(3000);
break;
}
}
}
static void ConnectToNetwork(string network)
{
var adapters = NetworkInterface.GetAllNetworkInterfaces();
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Выберите сетевой адаптер, которому необходимо сменить IP:");
for (int i = 0; i < adapters.Length; i++)
{
Console.WriteLine($"{i + 1}. {adapters[i].Name}");
}
int adapterIndex = Convert.ToInt32(Console.ReadLine()) - 1;
var selectedAdapter = adapters[adapterIndex];
if (network == "Орион")
{
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Выбрано: Подключение к сети техникума через Орион");
Console.WriteLine($"Выбран сетевой адаптер: {selectedAdapter.Name}");
var ipV4Address = selectedAdapter.GetIPProperties().UnicastAddresses.FirstOrDefault(x => x.Address.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork)?.Address.ToString();
Console.WriteLine(" ");
Console.WriteLine($"Ваш текущий IP: {ipV4Address}");
Console.WriteLine("Вы можете использовать его в качестве статического IP для подключения к сети, либо же задать другой");
Console.WriteLine(" ");
Console.WriteLine("1. Использовать этот IP");
Console.WriteLine("2. Изменить IP адрес");
var ipChoice = Console.ReadLine();
if (ipChoice == "1")
{
Thread.Sleep(1000);
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Устанавливаю следующие параметры:");
Console.WriteLine($"- IP: {ipV4Address}");
Console.WriteLine("- Маска подсети: 255.255.254.0");
Console.WriteLine("- Шлюз: 10.19.140.10");
Console.WriteLine("- DNS: 10.19.140.3, 10.19.140.10");
SetStaticIP(selectedAdapter.Name, ipV4Address, "255.255.254.0", "10.19.140.10", "10.19.140.3", "10.19.140.10");
Thread.Sleep(3000);
Console.WriteLine(" ");
Console.WriteLine("Готово! :)");
Thread.Sleep(1000);
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine(" ");
Console.WriteLine("Возврат в главное меню через 10 секунд...");
Thread.Sleep(10000);
}
else if (ipChoice == "2")
{
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Введите новый IP-адрес:");
var newIp = Console.ReadLine();
Thread.Sleep(1000);
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Устанавливаю следующие параметры:");
Console.WriteLine($"- IP: {newIp}");
Console.WriteLine("- Маска подсети: 255.255.254.0");
Console.WriteLine("- Шлюз: 10.19.140.10");
Console.WriteLine("- DNS: 10.19.140.3, 10.19.140.10");
SetStaticIP(selectedAdapter.Name, newIp, "255.255.254.0", "10.19.140.10", "10.19.140.3", "10.19.140.10");
Thread.Sleep(3000);
Console.WriteLine(" ");
Console.WriteLine("Готово! :)");
Thread.Sleep(1000);
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine(" ");
Console.WriteLine("Возврат в главное меню через 10 секунд...");
Thread.Sleep(10000);
}
}
else if (network == "Ростелеком")
{
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Выбрано: Подключение к сети техникума через Ростелеком");
Console.WriteLine($"Выбран сетевой адаптер: {selectedAdapter.Name}");
Thread.Sleep(3000);
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Получаю параметры IP через DHCP...");
SetDHCP(selectedAdapter.Name);
Thread.Sleep(3000);
Console.WriteLine(" ");
Console.WriteLine("Готово! :)");
Thread.Sleep(1000);
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine(" ");
Console.WriteLine("Возврат в главное меню через 10 секунд...");
Thread.Sleep(10000);
}
else if (network == "Свое")
{
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Выбрано: Установка своих параметров подключения");
Console.WriteLine($"Выбран сетевой адаптер: {selectedAdapter.Name}");
Thread.Sleep(1000);
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Введите новый IP-адрес:");
var newIp = Console.ReadLine();
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Введите маску подсети:");
var newNetmask = Console.ReadLine();
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Введите IP адрес шлюза (маршрутизатора):");
var newGateway = Console.ReadLine();
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Введите адрес основного DNS сервера:");
var newPrefDNS = Console.ReadLine();
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Введите адрес дополнительного DNS сервера:");
var newAltDNS = Console.ReadLine();
Thread.Sleep(1000);
Console.Clear();
Console.WriteLine("TKHiS NetworkConnect by #TheDayG0ne");
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine("Устанавливаю следующие параметры:");
Console.WriteLine($"- IP: {newIp}");
Console.WriteLine($"- Маска подсети: {newNetmask}");
Console.WriteLine($"- Шлюз: {newGateway}");
Console.WriteLine($"- DNS: {newPrefDNS}, {newAltDNS}");
SetStaticIP(selectedAdapter.Name, newIp, newNetmask, newGateway, newPrefDNS, newAltDNS);
Thread.Sleep(3000);
Console.WriteLine(" ");
Console.WriteLine("Готово! :)");
Thread.Sleep(1000);
Console.WriteLine("-----------------------------------------------------");
Console.WriteLine(" ");
Console.WriteLine("Возврат в главное меню через 10 секунд...");
Thread.Sleep(10000);
}
}
static void SetStaticIP(string networkInterface, string ipAddress, string subnetMask, string defaultGateway, string preferredDns, string alternateDns)
{
ProcessStartInfo psi = new ProcessStartInfo("netsh", $"interface ip set address \"{networkInterface}\" static {ipAddress} {subnetMask} {defaultGateway} 1")
{
Verb = "runas",
UseShellExecute = true,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
};
Process.Start(psi);
psi = new ProcessStartInfo("netsh", $"interface ip set dns \"{networkInterface}\" static {preferredDns} primary")
{
Verb = "runas",
UseShellExecute = true,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
};
Process.Start(psi);
psi = new ProcessStartInfo("netsh", $"interface ip add dns \"{networkInterface}\" {alternateDns} index=2")
{
Verb = "runas",
UseShellExecute = true,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
};
Process.Start(psi);
}
static void SetDHCP(string networkInterface)
{
ProcessStartInfo psi = new ProcessStartInfo("netsh", $"interface ip set address \"{networkInterface}\" dhcp")
{
Verb = "runas",
UseShellExecute = true,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
};
Process.Start(psi);
psi = new ProcessStartInfo("netsh", $"interface ip set dns \"{networkInterface}\" dhcp")
{
Verb = "runas",
UseShellExecute = true,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
};
Process.Start(psi);
}
static bool IsAdministrator()
{
var identity = System.Security.Principal.WindowsIdentity.GetCurrent();
var principal = new System.Security.Principal.WindowsPrincipal(identity);
return principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator);
}
}