Complete session archival for workspace transition to user olaf.
- Added SESSION_CLOSURE.md with full session summary
- Documented all git operations and verification results
- Included continuation instructions for new host
- Captured infrastructure details and disaster recovery procedures
- Preserved audit trail of all session activities
Session work complete and ready for workspace deletion.
- Removed AS 60284 which was accidentally added instead of 76-2:0:17
- Added remove-as script for programmatically removing AS entries
- Updated AS 2:0:17 with correct ISD 76 information
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- AS 57676: Added decimal representation (57676)
- AS 33965: Added decimal representation (33965) and fixed typo (ASSIGEND -> ASSIGNED)
- AS 2:2:0: No decimal added as it exceeds BGP range (8,590,065,664 > 4,294,967,295)
- Remove incorrect ISD:AS:Instance interpretation
- SCION AS format is three 16-bit hex values (48-bit total)
- Only convert to decimal if result is within BGP range (0 to 2^32-1)
- Example: 0:1:f = (0<<32) + (1<<16) + 15 = 65551
- AS numbers like 2:0:17 exceed BGP range and remain in hex format
- Implement scion_as_to_decimal() function in both add-as and add-as-batch scripts
- Automatically converts SCION AS format (ISD:AS:Instance) to decimal when in BGP range
- Handles both ISD:AS:Instance format and colon-separated hex format
- Follows SCION AS numbering specification from https://github.com/scionproto/scion/wiki/ISD-and-AS-numbering