This request returns all network IP routing settings.

Usage:

GET on /domains/{domainId}/vms/configurations

Request URL:

https://<MS hostname>/jss/appliances/networks/iproutings

Header:

fios-session:vc_sessionId

Request:

N/A

Response:

[

    {

        "networkId": "Network:network-48",

        "ipRouting": [

            {

                "id": 1,

                "ipAddress": "192.168.0.1",

                "netmask": "255.255.245.0",

                "gateway": "192.168.0.0",

                "metric": 1234

            },

            {

                "id": 2,

                "ipAddress": "10.10.0.5",

                "netmask": "255.255.245.0",

                "gateway": "10.10.0.0",

                "metric": 432

            }

        ]

    },

    {

        "networkId": "Network:network-12",

        "ipRouting": [

            {

                "id": 3,

                "ipAddress": "192.168.5.5",

                "netmask": "255.255.245.0",

                "gateway": "192.168.5.0",

                "metric": 88

            }

        ]

    }

]