diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/migration-scripts/interfaces/19-to-20 | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/src/migration-scripts/interfaces/19-to-20 b/src/migration-scripts/interfaces/19-to-20 index 1727ac4dc..ed2780b92 100755 --- a/src/migration-scripts/interfaces/19-to-20 +++ b/src/migration-scripts/interfaces/19-to-20 @@ -37,6 +37,7 @@ if __name__ == '__main__':      #      # Migrate "interface tunnel <tunX> encapsulation gre-bridge" to gretap      # Migrate "interface tunnel <tunX> local-ip" to source-address +    # Migrate "interface tunnel <tunX> remote-ip" to remote      for interface in config.list_nodes(base):          encap_path = base + [interface, 'encapsulation']          if config.exists(encap_path): @@ -48,6 +49,10 @@ if __name__ == '__main__':          if config.exists(local_ip_path):              config.rename(local_ip_path, 'source-address') +        remote_ip_path = base + [interface, 'remote-ip'] +        if config.exists(remote_ip_path): +            config.rename(remote_ip_path, 'remote') +      try:          with open(file_name, 'w') as f:              f.write(config.to_string())  | 
