-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools_change_ip.py
240 lines (194 loc) · 8.63 KB
/
tools_change_ip.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Jimmy Lin
import os
import time
import click
from subprocess import Popen, PIPE, call
interface_list = []
gl_IP = None
com_ip_list1 = ["255.255.255.0", "192.168.101.1", "114.114.114.114 8.8.8.8", "buyabs.corp"]
com_ip_list2 = ["255.255.255.0", "192.168.101.1", "192.168.168.254 122.51.145.229 8.8.8.8", "buyabs.corp"]
home_ip_list3 = ["255.255.255.0", "192.168.168.3", "114.114.114.114 8.8.8.8"]
home_ip_list254 = ["255.255.255.0", "192.168.168.253", "192.168.168.254 192.168.168.3 192.168.168.1", "buyabs.corp"]
url_list = ["占位","https://www.wlgo.cc/st/go.js",
"https://www.wlgo.cc/st/golan.js"]
def show_menu():
"""显示菜单
:return:
"""
print("欢迎使用IP管理系统For MacOS".center(50, "-"))
for i in ["1、手动配置", "2、定制设置", "3、自动获取", "4、设置代理", "q、退出系统"]:
print(i)
print("当前版本V1.0 by Python3".center(50, "-"))
print("博客 https://blog.rtwork.win ".center(50, "-"))
def show_interface_list():
"""查看网卡信息
1、show_interface_str 执行命令获取网卡列表
2、network_name_str 结果由二进制转换为str
3、network_name_str_list 分割字符串以循环打印
"""
show_interface_str = Popen("networksetup -listallnetworkservices | awk 'NR == 1 {next} {print $0}'",
stdin=None, stdout=PIPE, shell=True)
network_name_str = str(show_interface_str.communicate()[0], encoding="utf8")
network_name_str_list = network_name_str.rstrip().split("\n")
for i in network_name_str_list:
if ("'%s'" % i) not in interface_list:
interface_list.append("'%s'" % i)
print("网卡信息如下:".center(50, "="))
print("序号\t\t名称")
interface_list_num = 0
for i in interface_list:
print("%s\t\t%s" % (interface_list_num, i))
interface_list_num += 1
def show_interface_ip(interface_name):
"""查看网卡ip
:return:
"""
show_interface_ip_str = Popen("networksetup -getinfo %s" % interface_name,
stdin=None, stdout=PIPE, shell=True)
show_interface_dns_str = Popen("networksetup -getdnsservers %s" % interface_name,
stdin=None, stdout=PIPE, shell=True)
show_interface_proxy_str = Popen("networksetup -getautoproxyurl %s" % interface_name,
stdin=None, stdout=PIPE, shell=True)
show_interface_searchdomains_str = Popen("networksetup -getsearchdomains %s" % interface_name,
stdin=None, stdout=PIPE, shell=True)
network_ip_str = str(show_interface_ip_str.communicate()[0], encoding="utf8")
network_dn_str = str(show_interface_dns_str.communicate()[0], encoding="utf8")
network_proxy_str = str(show_interface_proxy_str.communicate()[0], encoding="utf8")
network_searchdomains_str = str(show_interface_searchdomains_str.communicate()[0], encoding="utf8")
print("您的【%s】网卡IP如下:".center(50, "=") % interface_name)
print(network_ip_str)
print("您的【%s】网卡DNS Server如下:".center(50, "=") % interface_name)
print(network_dn_str)
print("您的【%s】网卡代理配置如下:".center(50, "=") % interface_name)
print(network_proxy_str)
print("您的【%s】SearchDomains如下:".center(50, "=") % interface_name)
print(network_searchdomains_str)
ip_list = network_ip_str.rstrip().split("\n")
for line in ip_list:
if line.startswith("IP address:"):
global gl_IP
gl_IP = line.strip().replace("IP address: ", "")
def change_interface_ip(name, ip, netmask, gateway, dns):
"""修改网卡信息
:return:
"""
Popen("networksetup -setmanual %s %s %s %s" % (name, ip, netmask, gateway),
stdin=None, stdout=PIPE, shell=True)
Popen("networksetup -setdnsservers %s %s" % (name, dns),
stdin=None, stdout=PIPE, shell=True)
time.sleep(3)
show_interface_ip(name)
def change_search_domains(name, domain):
"""修改网卡信息
:return:
"""
Popen("networksetup -setsearchdomains %s %s" % (name, domain),
stdin=None, stdout=PIPE, shell=True)
def change_interface_dhcp(name):
"""设置网卡IP自动获取
:return:
"""
Popen("networksetup -setdhcp %s" % name,
stdin=None, stdout=PIPE, shell=True)
Popen("networksetup -setdnsservers %s empty" % name,
stdin=None, stdout=PIPE, shell=True)
time.sleep(5)
show_interface_ip(name)
def change_proxy(name, url):
"""设置自动代理"""
Popen("networksetup -setautoproxyurl %s %s" % (name, url),
stdin=None, stdout=PIPE, shell=True)
time.sleep(5)
show_interface_ip(name)
def user_input(name):
"""
定义用户输入信息,返回给修改IP。
:param name:
"""
change_interface_ip(name,
click.prompt("请输入IP:", default="192.168.1.233"),
click.prompt("请输入Mask:", default="255.255.255.0"),
click.prompt("请输入Gateway:", default="192.168.1.1"),
click.prompt("请输入DNS:", default="114.114.114.114 8.8.8.8"))
def user_input_me(name_input_str):
"""
自己使用 预定义了4个列表分别存储 掩码,网关,DNS、
:param name_input_str:
"""
for i in ["【1】公司\t[CN]", "【2】公司\t[GFW]", "【3】家庭\t[CN]", "【4】家庭\t[GFW]", "【0】退出\t[out]"]:
print(i)
user_c_str = input("请选择: ")
if user_c_str == "1":
change_interface_ip(interface_list[name_input_str],
click.prompt("请输入IP:", default="192.168.101.233"),
com_ip_list1[0],
com_ip_list1[1],
com_ip_list1[2])
change_search_domains(interface_list[name_input_str], com_ip_list1[3])
elif user_c_str == "2":
change_interface_ip(interface_list[name_input_str],
click.prompt("请输入IP:", default="192.168.101.233"),
com_ip_list2[0],
com_ip_list2[1],
com_ip_list2[2])
change_search_domains(interface_list[name_input_str], com_ip_list2[3])
elif user_c_str == "3":
change_interface_ip(interface_list[name_input_str],
click.prompt("请输入IP:", default=gl_IP),
home_ip_list3[0],
home_ip_list3[1],
home_ip_list3[2])
elif user_c_str == "4":
change_interface_ip(interface_list[name_input_str],
click.prompt("请输入IP:", default=gl_IP),
home_ip_list254[0],
home_ip_list254[1],
home_ip_list254[2])
def action():
"""
需要执行的动作,选择网卡,手动配置。
"""
print("请选择您要操作的网卡:".center(50, "="))
name_input_str = int(input("请输入网卡序号:"))
if len(interface_list) > 0:
show_interface_ip(interface_list[name_input_str])
user_c_str = input("是否修改y/n: ")
if user_c_str == "y":
user_input(interface_list[name_input_str])
else:
print("输入错误,请从新输入: ")
def action_me():
"""
定义了定制动作中的设置。
"""
print("请选择您要操作的网卡:".center(50, "="))
name_input_str = int(input("请输入网卡序号:"))
if len(interface_list) > 0:
show_interface_ip(interface_list[name_input_str])
user_c_str = input("是否修改y/n: ")
if user_c_str == "y":
user_input_me(name_input_str)
else:
print("输入错误,请从新输入: ")
def action_dhcp():
"""
设置自动获取。
"""
print("请选择您要操作的网卡:".center(50, "="))
name_input_str = int(input("请输入网卡序号:"))
if len(interface_list) > 0:
change_interface_dhcp(interface_list[name_input_str])
else:
print("不存在网卡信息,请核对: ")
def action_proxy():
"""设置url自动代理"""
print("请选择您要操作的网卡:".center(50, "="))
name_input_str = int(input("请输入网卡序号:"))
print("请选择代理链接: [1]WAN [2]LAN:".center(50, "="))
url = int(input("请输入代理序号:"))
if len(interface_list) > 0:
change_proxy(interface_list[name_input_str], url_list[url])
else:
print("不存在网卡信息,请核对: ")