Multi peers should work, although I havent tested
This commit is contained in:
parent
3fcffc636b
commit
aa1018c734
1 changed files with 20 additions and 6 deletions
|
@ -126,9 +126,21 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan
|
||||||
an object that can be user by NetworkManager
|
an object that can be user by NetworkManager
|
||||||
"""
|
"""
|
||||||
filename = os.path.basename(pathname)
|
filename = os.path.basename(pathname)
|
||||||
|
mfile = open(pathname)
|
||||||
|
numpeers = 0
|
||||||
|
wholefile = str()
|
||||||
|
for line in mfile:
|
||||||
|
if '[Peer]' in line:
|
||||||
|
newline = line.replace('[Peer]', '[Peer' + str(numpeers)+ ']')
|
||||||
|
numpeers += 1
|
||||||
|
wholefile += newline
|
||||||
|
else:
|
||||||
|
wholefile += line
|
||||||
|
|
||||||
try:
|
try:
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(pathname)
|
config.read_string(wholefile)
|
||||||
|
|
||||||
iname = self.get_next_int_name()
|
iname = self.get_next_int_name()
|
||||||
profile = NM.SimpleConnection.new()
|
profile = NM.SimpleConnection.new()
|
||||||
s_con = NM.SettingConnection.new()
|
s_con = NM.SettingConnection.new()
|
||||||
|
@ -141,10 +153,12 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan
|
||||||
s_wireguard = NM.SettingWireGuard.new()
|
s_wireguard = NM.SettingWireGuard.new()
|
||||||
s_wireguard.set_property(NM.SETTING_WIREGUARD_PRIVATE_KEY,
|
s_wireguard.set_property(NM.SETTING_WIREGUARD_PRIVATE_KEY,
|
||||||
config['Interface']['PrivateKey'])
|
config['Interface']['PrivateKey'])
|
||||||
|
# peers
|
||||||
|
for i in range(numpeers):
|
||||||
s_peer = NM.WireGuardPeer.new()
|
s_peer = NM.WireGuardPeer.new()
|
||||||
s_peer.set_endpoint(config['Peer']['Endpoint'], False)
|
s_peer.set_endpoint(config['Peer' + str(i)]['Endpoint'], False)
|
||||||
s_peer.set_public_key(config['Peer']['PublicKey'], False)
|
s_peer.set_public_key(config['Peer' + str(i)]['PublicKey'], False)
|
||||||
s_peer.append_allowed_ip(config['Peer']['AllowedIPs'], False)
|
s_peer.append_allowed_ip(config['Peer' + str(i)]['AllowedIPs'], False)
|
||||||
s_wireguard.append_peer(s_peer)
|
s_wireguard.append_peer(s_peer)
|
||||||
|
|
||||||
s_ip4 = NM.SettingIP4Config.new()
|
s_ip4 = NM.SettingIP4Config.new()
|
||||||
|
|
Loading…
Add table
Reference in a new issue