Ngôn ngữ Python sử dụng 3 API cơ bản để thực thi các lệnh CLI
Lưu ý : khi hai lệnh được thực thi như ví dụ bên dưới thì lệnh thứ hai sẽ thất bại vì trạng thái lệnh thứ nhất sẽ không tồn tại cho lệnh thứ hai:
Code:
[SIZE=18px]>>> cli("conf t")[/SIZE] [SIZE=18px]>>> cli("interface eth4/1")[/SIZE]
Code:
[SIZE=18px]>>> cli("conf t ; interface eth4/1 ; shut")[/SIZE]
Code:
[SIZE=18px]>>> cli('where detail') ' mode: conf\n interface loopback1\n username: admin\n vdc: switch\n routing-context vrf: default\n'[/SIZE]
Code:
[SIZE=18px]>>> clip('where detail') mode: conf interface loopback1 username: admin vdc: switch routing-context vrf: default[/SIZE]
Nguồn : VNPRO