Important note about SSL VPN compatibility for 20.0 MR1 with EoL SFOS versions and UTM9 OS. Learn more in the release notes.

This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to change the physical port from 1G to 10G

We want to upgrade from the 1G port the 10G port provided with the Flexiport. Is there an easy way to migrate the settings to the new Port or do we have to do this all by hand, port by port?



This thread was automatically locked due to age.
Parents
  •  

    can you take a look at this thread?

    I am not sure if the way I know (via psql commands) is the one to change the physical port from one to another.

    Regards

  • I am not sure but I performed the following on another XG box:

    • Delete the 10 Gb port
    • Connect to XG advanced shell
    • Type: psql -U nobody -d corporate
    • Type: SELECT * FROM tblinterface;

    From this output, you should see Port1, Port2, PortC1 and so forth. Here you should see the zoneid number. It should be the 8th column. To check what each column contains, type:

    • \d tblinterface

    Now type: UPDATE tblinterface SET zoneid=1 WHERE interface='PortX';

    change zoneid to what is returned from the SELECT * FROM tblinterface under the zoneid column.

    then you should change the zoneid on the current 1Gb port  to something else like "empty"

    Let us know if it works!

    Thanks

  • Thanks for the input. I'm not shure if this is the right Update-Command.

    Our Tables looks like this:

    interface  | enabled | linktype | mtu  | mss  | interface_speed |    overridemac    | zoneid | parentinterface | memberof
    ------------+---------+----------+------+------+-----------------+-------------------+--------+-----------------+----------
    Port7      |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    Port8      |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    PortA1     |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    PortA2     |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    GuestAP    |       0 |       21 | 1500 | 1460 | auto            | f2:66:d6:f4:d7:6d |      7 |                 |
    Port4      |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    Port5      |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    Port6      |       1 |        0 | 1500 | 1460 | auto            |                   |        |                 |
    Port1      |       0 |        0 | 1500 | 1460 | auto            |                   |      1 |                 |
    Port2      |       0 |        0 | 1500 | 1460 | auto            |                   |      2 |                 |
    Port3      |       0 |        0 | 1500 | 1460 | auto            |                   |      3 |                 |
    Port3.2040 |       0 |        2 |    0 |    0 | auto            |                   |      3 | Port3           |
    Port1.2071 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2021 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2080 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2090 |       0 |        2 |    0 |    0 | auto            |                   |      7 | Port1           |
    Port1.2092 |       0 |        2 |    0 |    0 | auto            |                   |      7 | Port1           |
    Port1.2091 |       0 |        2 |    0 |    0 | auto            |                   |      7 | Port1           |
    Port1.2093 |       0 |        2 |    0 |    0 | auto            |                   |      7 | Port1           |
    Port1.2060 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2010 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2030 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2020 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.100  |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.2070 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    Port1.1030 |       0 |        2 |    0 |    0 | auto            |                   |      1 | Port1           |
    (26 rows)

    Goal is to move everything from Port1 to PortA1 (all VLANs, Settings, etc...)

  • Christian, I suggest you to open a ticket with Support since you have VLAN.

    I moved the configurations from one port to another without loosing any configuration but no VLANs in my case where configured yet!

    Please let us know!

  • Ok, I'll open a Ticket. Thanks for the help. :)

  • You are welcome.

    If you can post the commands or what they did, it would help other community users.

    Regards

Reply Children