File tree 4 files changed +38
-0
lines changed
4 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 71
71
"_dict" : lib_mapper .CAPIRCA_LIB_MAPPER_REVERSE ,
72
72
"_file" : "docs/user/lib_mapper/capirca_reverse.md" ,
73
73
},
74
+ "dna_center" : {
75
+ "header_src" : "DNA_CENTER" ,
76
+ "header_dst" : "NORMALIZED" ,
77
+ "_dict" : lib_mapper .DNA_CENTER_LIB_MAPPER ,
78
+ "_file" : "docs/user/lib_mapper/dna_center.md" ,
79
+ },
80
+ "dna_center_reverse" : {
81
+ "header_src" : "NORMALIZED" ,
82
+ "header_dst" : "DNA_CENTER" ,
83
+ "_dict" : lib_mapper .DNA_CENTER_LIB_MAPPER_REVERSE ,
84
+ "_file" : "docs/user/lib_mapper/dna_center_reverse.md" ,
85
+ },
74
86
"forwardnetworks" : {
75
87
"header_src" : "FORWARDNETWORKS" ,
76
88
"header_dst" : "NORMALIZED" ,
Original file line number Diff line number Diff line change
1
+ | DNA_CENTER | | NORMALIZED |
2
+ | ---------- | -- | ------ |
3
+ | IOS | → | cisco_ios |
4
+ | IOS-XE | → | cisco_ios |
5
+ | IOS-XR | → | cisco_xr |
6
+ | NX-OS | → | cisco_nxos |
Original file line number Diff line number Diff line change
1
+ | NORMALIZED | | DNA_CENTER |
2
+ | ---------- | -- | ------ |
3
+ | cisco_ios | → | IOS |
4
+ | cisco_nxos | → | NX-OS |
5
+ | cisco_xr | → | IOS-XR |
Original file line number Diff line number Diff line change 124
124
"windows" : "windows" ,
125
125
}
126
126
127
+ # DNA Center | Normalized
128
+ DNA_CENTER_LIB_MAPPER = {
129
+ "IOS" : "cisco_ios" ,
130
+ "IOS-XE" : "cisco_ios" ,
131
+ "NX-OS" : "cisco_nxos" ,
132
+ "IOS-XR" : "cisco_xr" ,
133
+ }
134
+
135
+ # Normalized | DNA Center
136
+ DNA_CENTER_LIB_MAPPER_REVERSE = {
137
+ "cisco_ios" : "IOS" ,
138
+ "cisco_nxos" : "NX-OS" ,
139
+ "cisco_xr" : "IOS-XR" ,
140
+ }
141
+
127
142
# Normalized | Netmiko
128
143
NETMIKO_LIB_MAPPER : t .Dict [str , str ] = {
129
144
"a10" : "a10" ,
You can’t perform that action at this time.
0 commit comments