09-06-2023 06:34 AM
interface ve 111
vrf forwarding A
ip anycast-address 10.0.31.129/25
ip address 10.0.30.130/25 >>>>>>> 10.0.31.130/25 . I need to replace this ip from another range of ip as its mistake, you can see anycast is different range.
what would be EFA CLI .
I am trying below its not working.
efa tenant epg update --tenant TAG --name EPG_A --operation local-ip-add 111,192.168.245.81:10.0.31.131/25
Error : additional arguments passed to the command
Solved! Go to Solution.
09-07-2023 06:05 AM
Neeraj,
The issue you are seeing is that "local-ip-add" is the argument to "--operation" and you should not list the "ctag,device:local-ip" without the --local-ip switch.
Try:
efa tenant epg update --tenant [tenant_name] --name [epg_name] --local-ip [ctag,device-ip:local-ip] --operation local-ip-add
09-07-2023 06:05 AM
Neeraj,
The issue you are seeing is that "local-ip-add" is the argument to "--operation" and you should not list the "ctag,device:local-ip" without the --local-ip switch.
Try:
efa tenant epg update --tenant [tenant_name] --name [epg_name] --local-ip [ctag,device-ip:local-ip] --operation local-ip-add