Compare commits

...

6 Commits

Author SHA1 Message Date
Andreas Kirsch 16fd5e2bc4 Minor correction 2025-11-27 17:23:40 +01:00
Andreas Kirsch d7477abc78 Added "embedded Gateway" to description 2025-11-27 17:21:30 +01:00
Andreas Kirsch b2018348d1 Added "embedded Gateway Builder" Demo
Added DCTC10 Graphical panel
Prepared for TC10 on SFP_01/SFP_02 - not properly working yet
2025-11-27 16:03:51 +01:00
Andreas Kirsch 25ed6b93f4 Modified 1920x1080 Version so connection between SFP and AE has not to be taken care on to visualize TAPPED signal 2025-10-08 18:11:03 +02:00
Andreas Kirsch ccf9094d48 Updated/Restore Networks (VSpy 3.9.21.16) 2025-10-08 10:57:04 +02:00
Andreas Kirsch 053f5bd81f Modified 1920x1080 GP 2025-10-07 12:19:43 +02:00
4 changed files with 7719 additions and 2708 deletions

View File

@ -19,6 +19,7 @@ from util_sfp import (
import ics
import argparse
from sys import exit
###############################################################################
# This loads a single macsec configuration from selected yaml into supported
@ -36,7 +37,6 @@ def main():
def run_test(args, power_supply):
print(f"Attempting to load {args.yaml}...")
fail = 0
@ -52,6 +52,7 @@ def run_test(args, power_supply):
)
# if we only want reset, exit here
if args.reset:
print("Reset")
exit(0)
# if we only want the phy macsec counters, read then exit
@ -82,6 +83,7 @@ def run_test(args, power_supply):
exit(0)
# load yaml macsec config
print(f"Attempting to load {args.yaml}...")
load_macsec_from_yaml(device, args.config_netid, args.yaml, args.sfp)
if fail: # bail out if something fails

View File

@ -824,7 +824,7 @@ def sfp_ics_update_macsec(
def sfp_query_verify_macsec_support(device, netid_config, reset):
netid = get_hwnetid(netid_config)
# query for MACSec supproted SFP module
print("Checking for SFP modules...")
print(f"Checking for SFP modules... ")
msa = sfp_query_module(device, netid)
if msa is None:
print(f"\nNo SFP module found on port {netid_config}... exiting.")

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long