-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from opensight-cv/dev
- Loading branch information
Showing
41 changed files
with
1,601 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import os | ||
from pathlib import Path | ||
|
||
|
||
def set_network_mode( | ||
dhcp: bool, team_number: int, static_ip_extension: int, lifespan: "Lifespan", | ||
): | ||
template_dir = Path(os.path.dirname(__file__), "templates") | ||
if dhcp: | ||
with open(template_dir / "dhcp.conf", "r") as template: | ||
data = template.read() | ||
with open("/etc/dhcpcd.conf", "w") as output: | ||
output.write(data) | ||
else: | ||
# 4 digit team number with leading zeros | ||
team_padded = f"{team_number:04d}" | ||
router_ip = f"10.{team_padded[0:2]}.{team_padded[2:4]}.1" | ||
static_ip = f"10.{team_padded[0:2]}.{team_padded[2:4]}.{static_ip_extension}" | ||
with open(template_dir / "static.conf", "r") as template: | ||
data = template.read() | ||
data = data.replace("STATIC_IP_ADDR", static_ip).replace( | ||
"ROUTER_IP_ADDR", router_ip | ||
) | ||
with open("/etc/dhcpcd.conf", "w") as output: | ||
output.write(data) | ||
|
||
lifespan.restart(host=True) | ||
|
||
|
||
def dhcpcd_writable(): | ||
path = "/etc/dhcpcd.conf" | ||
if os.path.exists(path) and os.path.isfile(path): | ||
return os.access(path, os.W_OK) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# A sample configuration for dhcpcd. | ||
# See dhcpcd.conf(5) for details. | ||
|
||
# Allow users of this group to interact with dhcpcd via the control socket. | ||
#controlgroup wheel | ||
|
||
# Inform the DHCP server of our hostname for DDNS. | ||
hostname | ||
|
||
# Use the hardware address of the interface for the Client ID. | ||
clientid | ||
# or | ||
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361. | ||
# Some non-RFC compliant DHCP servers do not reply with this set. | ||
# In this case, comment out duid and enable clientid above. | ||
#duid | ||
|
||
# Persist interface configuration when dhcpcd exits. | ||
persistent | ||
|
||
# Rapid commit support. | ||
# Safe to enable by default because it requires the equivalent option set | ||
# on the server to actually work. | ||
option rapid_commit | ||
|
||
# A list of options to request from the DHCP server. | ||
option domain_name_servers, domain_name, domain_search, host_name | ||
option classless_static_routes | ||
# Respect the network MTU. This is applied to DHCP routes. | ||
option interface_mtu | ||
|
||
# Most distributions have NTP support. | ||
#option ntp_servers | ||
|
||
# A ServerID is required by RFC2131. | ||
require dhcp_server_identifier | ||
|
||
# Generate SLAAC address using the Hardware Address of the interface | ||
#slaac hwaddr | ||
# OR generate Stable Private IPv6 Addresses based from the DUID | ||
slaac private | ||
|
||
# Example static IP configuration: | ||
#interface eth0 | ||
#static ip_address=192.168.0.10/24 | ||
#static ip6_address=fd51:42f8:caae:d92e::ff/64 | ||
#static routers=192.168.0.1 | ||
#static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1 | ||
|
||
# It is possible to fall back to a static IP if DHCP fails: | ||
# define static profile | ||
#profile static_eth0 | ||
#static ip_address=192.168.1.23/24 | ||
#static routers=192.168.1.1 | ||
#static domain_name_servers=192.168.1.1 | ||
|
||
# fallback to static profile on eth0 | ||
#interface eth0 | ||
#fallback static_eth0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# A sample configuration for dhcpcd. | ||
# See dhcpcd.conf(5) for details. | ||
|
||
# Allow users of this group to interact with dhcpcd via the control socket. | ||
#controlgroup wheel | ||
|
||
# Inform the DHCP server of our hostname for DDNS. | ||
hostname | ||
|
||
# Use the hardware address of the interface for the Client ID. | ||
clientid | ||
# or | ||
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361. | ||
# Some non-RFC compliant DHCP servers do not reply with this set. | ||
# In this case, comment out duid and enable clientid above. | ||
#duid | ||
|
||
# Persist interface configuration when dhcpcd exits. | ||
persistent | ||
|
||
# Rapid commit support. | ||
# Safe to enable by default because it requires the equivalent option set | ||
# on the server to actually work. | ||
option rapid_commit | ||
|
||
# A list of options to request from the DHCP server. | ||
option domain_name_servers, domain_name, domain_search, host_name | ||
option classless_static_routes | ||
# Respect the network MTU. This is applied to DHCP routes. | ||
option interface_mtu | ||
|
||
# Most distributions have NTP support. | ||
#option ntp_servers | ||
|
||
# A ServerID is required by RFC2131. | ||
require dhcp_server_identifier | ||
|
||
# Generate SLAAC address using the Hardware Address of the interface | ||
#slaac hwaddr | ||
# OR generate Stable Private IPv6 Addresses based from the DUID | ||
slaac private | ||
|
||
# Example static IP configuration: | ||
interface eth0 | ||
static ip_address=STATIC_IP_ADDR/24 | ||
static routers=ROUTER_IP_ADDR | ||
#static domain_name_servers=192.168.0.1 8.8.8.8 fd51:42f8:caae:d92e::1 | ||
|
||
# It is possible to fall back to a static IP if DHCP fails: | ||
# define static profile | ||
#profile static_eth0 | ||
#static ip_address=192.168.1.23/24 | ||
#static routers=192.168.1.1 | ||
#static domain_name_servers=192.168.1.1 | ||
|
||
# fallback to static profile on eth0 | ||
#interface eth0 | ||
#fallback static_eth0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.