imoloc_cm
Profilo di
Nome | imoloc_cm |
---|---|
Indirizzo email | n/a |
Messaggi | 1 |
-
- 2021-05-28 13:24:26
- Estrai dati da output in txt
- Forum >> Programmazione Python >> Database
-
Ciao a tutti,
sono qui a chiedervi il vostro aiuto/supporto/suggerimenti per creare uno script in python.
Dato il seguente output:
unit 2777 {
disable;
description "cliente: PROVA SRL TD: null NUA: null TGU: 12345";
vlan-tags outer 358 inner 24;
family inet {
mtu 1500;
filter {
input POLICY;
}
address 2.2.2.2/31;
}
}
unit 100 {
description "ICR XXX/Z| Logico || TEST |";
vlan-id 100;
family inet {
filter {
output POLICY;
}
address 4.4.4.4/30;
}
}
Avrei bisogno di stampare l'output su un file excel.
Nel primo caso avrei bisogno del seguente output:
unit description completa TGU Cliente address outer inner vlan-id
2777 "cliente: PROVA SRL TD: null NUA: null TGU: 12345" 12345 PROVA SRL 2.2.2.2/31 358 24 null
nel secondo caso:
unit description completa TGU Cliente address outer inner vlan-id
100 "ICR XXX/Z| Logico || TEST |" null null 4.4.4.4/30 null null 100
Grazie in anticipo!