interface = input("Enter interface number: ")
vlan = input("Enter vlan number: ")
desc = input("Enter description of interface: ")
operation = input(""""Please choose switch mode on interface:
Access Trunk
1 2
""")
access_mode = ["interface GigabitEthernet {}",
"switchport mode access",
"switchport access vlan {}",
"Description {}",
"No shutdown"]
trunk_mode = ["interface GigabitEthernet {}",
"switchport mode trunk",
"switchport trunk allowed vlan {}",
"Description {}",
"No shutdown"]
if operation == "Access" or operation == "1":
print("-" * 35)
print("\n".join(access_mode).format(interface, vlan, desc))
print("-" * 35)
if operation == "Trunk" or operation == "2":
print("-" * 35)
print("\n".join(trunk_mode).format(interface, vlan, desc))
print("-" * 35)
Куда нужно вставить if, чтобы максимальное значение, которое можно было задать для Vlan было 4096?
И ещё, нужно ли сюда добавлять функцию, или она здесь не нужна?
П.с. только учусь писать, поэтому и сам скрипт выглядит через 5ю точку.
Спасибо за внимание, ответ и понимание!
Всем хорошего дня (=