(20250218) ...

This commit is contained in:
2025-02-18 15:17:23 +05:30
parent 04fad8dc49
commit b7823f4c48
5 changed files with 1888 additions and 100 deletions
+120 -100
View File
@@ -2314,9 +2314,24 @@ if __name__ == "__main__":
api_response = await my_mikrotik.list_ppp_servers()
print(f"PPP SERVERS ({len(api_response.data)}):", json.to_string(api_response.data))
api_response = await my_mikrotik.list_hotspot_profiles()
print(f"HOTSPOT PROFILES ({len(api_response.data)}):", json.to_string(api_response.data))
api_response = await my_mikrotik.list_hotspot_servers()
print(f"HOTSPOT SERVERS ({len(api_response.data)}):", json.to_string(api_response.data))
api_response = await my_mikrotik.list_hotspot_walled_gardens()
print(f"HOTSPOT WALLED GARDENS ({len(api_response.data)}):", json.to_string(api_response.data))
api_response = await my_mikrotik.list_hotspot_walled_garden_ips()
print(f"HOTSPOT WALLED GARDEN IPS ({len(api_response.data)}):", json.to_string(api_response.data))
api_response = await my_mikrotik.list_radius_servers()
print(f"RADIUS SERVERS ({len(api_response.data)}):", json.to_string(api_response.data))
api_response = await my_mikrotik.list_firewall_nat()
print(f"FIREWALL NAT ({len(api_response.data)}):")
async def hotspot_steps():
HS_VLAN_ID = "2001"
@@ -2324,6 +2339,8 @@ if __name__ == "__main__":
HS_INTERFACE_NAME = "easyfi-hs-if"
HS_VLAN_NAME = "easyfi-hs-vlan-" + HS_VLAN_ID
HS_IP_POOL_NAME = "easyfi-hs-pool-" + HS_VLAN_ID
HS_PROFILE_NAME = "easyfi-hs-prf-" + HS_VLAN_ID
HS_SERVER_NAME = "easyfi-hs-srv-" + HS_VLAN_ID
HS_DHCP_SERVER_NAME = "easyfi-hs-dhcp-" + HS_VLAN_ID
HS_SNMP_COMMUNITY_NAME = "lkjhgfdsa1234567"
@@ -2354,7 +2371,7 @@ if __name__ == "__main__":
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# # STEP 2:
# # Create the VLAN:
# api_response = await my_mikrotik.add_vlan(
@@ -2370,7 +2387,7 @@ if __name__ == "__main__":
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# # STEP 3:
# # Bind a new IP address/network to the VLAN:
# api_response = await my_mikrotik.add_ip_address_binding(
@@ -2385,7 +2402,7 @@ if __name__ == "__main__":
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# # STEP 4:
# # Add a new IP Pool for the Hotspot users:
# api_response = await my_mikrotik.add_ip_pool(
@@ -2399,58 +2416,61 @@ if __name__ == "__main__":
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# # STEP 5:
# # Add a new Hotspot Profile:
# api_response = await my_mikrotik.add_hotspot_profile(
# json_payload = {
# "dns-name": "hs01.easyfi.net.in",
# "hotspot-address": HS_GATEWAY_PRIVATE_IP,
# "html-directory": "hotspot",
# "html-directory-override": "",
# "http-cookie-lifetime": "3d",
# "http-proxy": "0.0.0.0:0",
# "install-hotspot-queue": "false",
# "login-by": "cookie,http-chap",
# "name": "hs01.easyfi.net.in",
# "split-user-domain": "false",
# "use-radius": "true",
# "nas-port-type": "wireless-802.11",
# "radius-accounting": "true",
# "radius-default-domain": "",
# "radius-interim-update": "received",
# "radius-location-id": "",
# "radius-location-name": "",
# "radius-mac-format": "XX:XX:XX:XX:XX:XX",
# # "comment": HS_COMMENT
# }
# )
# print("STEP 5:", api_response.success, f"({api_response.action})")
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# # STEP 6:
# # Add a new Hotspot Server:
# api_response = await my_mikrotik.add_hotspot_server(
# json_payload = {
# "address-pool": HS_IP_POOL_NAME,
# "addresses-per-mac": "2",
# "idle-timeout": "5m",
# "interface": HS_VLAN_NAME,
# "keepalive-timeout": "none",
# "login-timeout": "none",
# "name": "hs01.easyfi.net.in",
# "profile": "hs01.easyfi.net.in",
# "disabled": "false",
# # "comment": HS_COMMENT
# }
# )
# print("STEP 6:", api_response.success, f"({api_response.action})")
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# STEP 5:
# Add a new Hotspot Profile:
api_response = await my_mikrotik.add_hotspot_profile(
json_payload = {
"dns-name": "hs01.easyfi.net.in",
"hotspot-address": HS_GATEWAY_PRIVATE_IP,
"html-directory": "hotspot",
"html-directory-override": "",
"http-cookie-lifetime": "3d",
"http-proxy": "0.0.0.0:0",
"install-hotspot-queue": "false",
"login-by": "cookie,http-chap",
# "name": "hs01.easyfi.net.in",
"name": HS_PROFILE_NAME,
"split-user-domain": "false",
"use-radius": "true",
"nas-port-type": "wireless-802.11",
"radius-accounting": "true",
"radius-default-domain": "",
"radius-interim-update": "received",
"radius-location-id": "",
"radius-location-name": "",
"radius-mac-format": "XX:XX:XX:XX:XX:XX",
# "comment": HS_COMMENT
}
)
print("STEP 5:", api_response.success, f"({api_response.action})")
print("MESSAGE:", api_response.message)
print("JSON:", api_response.data)
print("\n\n")
# STEP 6:
# Add a new Hotspot Server:
api_response = await my_mikrotik.add_hotspot_server(
json_payload = {
"address-pool": HS_IP_POOL_NAME,
"addresses-per-mac": "2",
"idle-timeout": "5m",
"interface": HS_VLAN_NAME,
"keepalive-timeout": "none",
"login-timeout": "none",
# "name": "hs01.easyfi.net.in",
"name": HS_SERVER_NAME,
# "profile": "hs01.easyfi.net.in",
"profile": HS_PROFILE_NAME,
"disabled": "false",
# "comment": HS_COMMENT
}
)
print("STEP 6:", api_response.success, f"({api_response.action})")
print("MESSAGE:", api_response.message)
print("JSON:", api_response.data)
print("\n\n")
# # STEP 7:
# # Add a new DHCP Server:
# api_response = await my_mikrotik.add_dhcp_server(
@@ -2469,23 +2489,23 @@ if __name__ == "__main__":
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# # STEP 8:
# # Add a new DHCP Network:
# api_response = await my_mikrotik.add_dhcp_network(
# json_payload = {
# "address": HS_PRIVATE_IP_SUBNET,
# "gateway": HS_GATEWAY_PRIVATE_IP,
# "netmask": HS_PRIVATE_IP_SUBNET.split("/")[-1],
# "dns-server": HS_GATEWAY_PRIVATE_IP,
# "comment": HS_COMMENT
# }
# )
# print("STEP 8:", api_response.success, f"({api_response.action})")
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# STEP 8:
# Add a new DHCP Network:
api_response = await my_mikrotik.add_dhcp_network(
json_payload = {
"address": HS_PRIVATE_IP_SUBNET,
"gateway": HS_GATEWAY_PRIVATE_IP,
"netmask": HS_PRIVATE_IP_SUBNET.split("/")[-1],
"dns-server": HS_GATEWAY_PRIVATE_IP,
"comment": HS_COMMENT
}
)
print("STEP 8:", api_response.success, f"({api_response.action})")
print("MESSAGE:", api_response.message)
print("JSON:", api_response.data)
print("\n\n")
# # STEP 9:
# # Set up the Walled-Garden IP:
# api_response = await my_mikrotik.add_hotspot_walled_garden_ip(
@@ -2547,33 +2567,33 @@ if __name__ == "__main__":
# print("MESSAGE:", api_response.message)
# print("JSON:", api_response.data)
# print("\n\n")
#
# STEP 13:
# Map the private IPs to the public IPs for NAT-ing:
private_ips = [
str(ipaddress.IPv4Address(_))
for _ in range(
int(ipaddress.IPv4Address(HS_FIRST_PRIVATE_IP)),
int(ipaddress.IPv4Address(HS_LAST_PRIVATE_IP)) + 1
)
]
public_ips = [
str(ipaddress.IPv4Address(_))
for _ in range(
int(ipaddress.IPv4Address(HS_FIRST_PUBLIC_IP)),
int(ipaddress.IPv4Address(HS_LAST_PUBLIC_IP)) + 1
)
]
nat_map = my_mikrotik.split_ipv4_range_in_powers_of_two(
start_ip = HS_FIRST_PRIVATE_IP,
end_ip = HS_LAST_PRIVATE_IP,
targets = public_ips,
consider_reserved_ips = False
)
print("NAT MAP:", json.to_string(nat_map, default=str))
print("PRIVATE IP COUNT:", len(private_ips))
print("PUBLIC IP COUNT:", len(public_ips))
print("RULE COUNT:", len(nat_map))
# # STEP 13:
# # Map the private IPs to the public IPs for NAT-ing:
# private_ips = [
# str(ipaddress.IPv4Address(_))
# for _ in range(
# int(ipaddress.IPv4Address(HS_FIRST_PRIVATE_IP)),
# int(ipaddress.IPv4Address(HS_LAST_PRIVATE_IP)) + 1
# )
# ]
# public_ips = [
# str(ipaddress.IPv4Address(_))
# for _ in range(
# int(ipaddress.IPv4Address(HS_FIRST_PUBLIC_IP)),
# int(ipaddress.IPv4Address(HS_LAST_PUBLIC_IP)) + 1
# )
# ]
# nat_map = my_mikrotik.split_ipv4_range_in_powers_of_two(
# start_ip = HS_FIRST_PRIVATE_IP,
# end_ip = HS_LAST_PRIVATE_IP,
# targets = public_ips,
# consider_reserved_ips = False
# )
# print("NAT MAP:", json.to_string(nat_map, default=str))
# print("PRIVATE IP COUNT:", len(private_ips))
# print("PUBLIC IP COUNT:", len(public_ips))
# print("RULE COUNT:", len(nat_map))
# for index, nat_rule in enumerate(nat_map):
# api_response = await my_mikrotik.add_firewall_nat(
# json_payload = {
@@ -2613,4 +2633,4 @@ if __name__ == "__main__":
# print("\n\n")
asyncio.run(hotspot_steps())
asyncio.run(main())