diff --git a/README.md b/README.md index 144dbaa..e0d285c 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,20 @@ The container can be built locally, if preferred. docker run -itd --name nautobot -p 8000:8000 nautobot-lab ``` +### Importing the demo dataset + +The nautobot-lab container provides demo dataset similar to the Nautobot public sandbox (http://demo.nautobot.com). +This dataset can be used to quickly populate your Nautobot instance with the real life data! You can use it to view data, experiment or perform experimental or development work. + +Use following command to import the data into your lab container: +```shell +docker exec -itd nautobot load-mock-data +``` + +!!! warning + **Importing dataset will erase your existing data**. Issuing the `load-mock-data` will result in destroying your existing dataset and importing new one. + **Dataset contains default credentials**. If you decide to import provided dataset, the dataset credentials will be used: username: `admin`, password: `admin`. + ## The Default Account The nautobot-lab container comes with a user pre-defined. The username is `demo` and its corresponding password is `nautobot`. If you choose to build your own container, you can define your own attributes for the default account by setting the following environment variables before executing the `docker build` command. diff --git a/pb_nautobot_install.yml b/pb_nautobot_install.yml index 65a2fdb..282c393 100644 --- a/pb_nautobot_install.yml +++ b/pb_nautobot_install.yml @@ -130,6 +130,14 @@ mode: u=rwX,g=rX,o=rX recurse: "yes" + - name: "ADD LOAD MOCK DATA SCRIPT" + ansible.builtin.template: + src: "loaddata.sh" + dest: "/usr/local/bin/load-mock-data" + owner: "nautobot" + group: "nautobot" + mode: "0755" + - name: "UPDATE REDIS.CONF" ansible.builtin.template: src: "redis.conf" diff --git a/templates/loaddata.sh b/templates/loaddata.sh new file mode 100644 index 0000000..d10d5f6 --- /dev/null +++ b/templates/loaddata.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +export PGUSER="postgres" +export PGDATABASE=$DB_NAME + +psql -c "DROP SCHEMA public CASCADE"; +psql -c "CREATE SCHEMA public"; +psql -c "GRANT ALL ON SCHEMA public TO postgres"; +psql -c "GRANT ALL ON SCHEMA public TO public"; +psql -c "GRANT ALL ON SCHEMA public TO ${DB_USER}"; + +export PGUSER=$DB_USER +export PGPASSWORD=$DB_PASSWORD + +psql < {{ nautobot_root }}/templates/nautobot_backup.dump + +{{ nautobot_root }}/bin/nautobot-server migrate +{{ nautobot_root }}/bin/nautobot-server invalidate all diff --git a/templates/nautobot_backup.dump b/templates/nautobot_backup.dump new file mode 100644 index 0000000..f9a9f13 --- /dev/null +++ b/templates/nautobot_backup.dump @@ -0,0 +1,27890 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 13.12 +-- Dumped by pg_dump version 13.12 + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: auth_group; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.auth_group ( + id integer NOT NULL, + name character varying(150) NOT NULL +); + + +ALTER TABLE public.auth_group OWNER TO nautobot; + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.auth_group_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.auth_group_id_seq OWNER TO nautobot; + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.auth_group_id_seq OWNED BY public.auth_group.id; + + +-- +-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.auth_group_permissions ( + id bigint NOT NULL, + group_id integer NOT NULL, + permission_id integer NOT NULL +); + + +ALTER TABLE public.auth_group_permissions OWNER TO nautobot; + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.auth_group_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.auth_group_permissions_id_seq OWNER TO nautobot; + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.auth_group_permissions_id_seq OWNED BY public.auth_group_permissions.id; + + +-- +-- Name: auth_permission; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.auth_permission ( + id integer NOT NULL, + name character varying(255) NOT NULL, + content_type_id integer NOT NULL, + codename character varying(100) NOT NULL +); + + +ALTER TABLE public.auth_permission OWNER TO nautobot; + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.auth_permission_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.auth_permission_id_seq OWNER TO nautobot; + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.auth_permission_id_seq OWNED BY public.auth_permission.id; + + +-- +-- Name: auth_user; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.auth_user ( + password character varying(128) NOT NULL, + last_login timestamp with time zone, + is_superuser boolean NOT NULL, + username character varying(150) NOT NULL, + first_name character varying(150) NOT NULL, + last_name character varying(150) NOT NULL, + email character varying(254) NOT NULL, + is_staff boolean NOT NULL, + is_active boolean NOT NULL, + date_joined timestamp with time zone NOT NULL, + id uuid NOT NULL, + config_data jsonb NOT NULL +); + + +ALTER TABLE public.auth_user OWNER TO nautobot; + +-- +-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.auth_user_groups ( + id bigint NOT NULL, + user_id uuid NOT NULL, + group_id integer NOT NULL +); + + +ALTER TABLE public.auth_user_groups OWNER TO nautobot; + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.auth_user_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.auth_user_groups_id_seq OWNER TO nautobot; + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.auth_user_groups_id_seq OWNED BY public.auth_user_groups.id; + + +-- +-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.auth_user_user_permissions ( + id bigint NOT NULL, + user_id uuid NOT NULL, + permission_id integer NOT NULL +); + + +ALTER TABLE public.auth_user_user_permissions OWNER TO nautobot; + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.auth_user_user_permissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.auth_user_user_permissions_id_seq OWNER TO nautobot; + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.auth_user_user_permissions_id_seq OWNED BY public.auth_user_user_permissions.id; + + +-- +-- Name: circuits_circuit; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.circuits_circuit ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + cid character varying(100) NOT NULL, + install_date date, + commit_rate integer, + description character varying(200) NOT NULL, + comments text NOT NULL, + provider_id uuid NOT NULL, + status_id uuid, + tenant_id uuid, + type_id uuid NOT NULL, + termination_a_id uuid, + termination_z_id uuid, + CONSTRAINT circuits_circuit_commit_rate_check CHECK ((commit_rate >= 0)) +); + + +ALTER TABLE public.circuits_circuit OWNER TO nautobot; + +-- +-- Name: circuits_circuittermination; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.circuits_circuittermination ( + id uuid NOT NULL, + _cable_peer_id uuid, + term_side character varying(1) NOT NULL, + port_speed integer, + upstream_speed integer, + xconnect_id character varying(50) NOT NULL, + pp_info character varying(100) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + circuit_id uuid NOT NULL, + site_id uuid, + provider_network_id uuid, + _custom_field_data jsonb NOT NULL, + created date, + last_updated timestamp with time zone, + location_id uuid, + CONSTRAINT circuits_circuittermination_port_speed_check CHECK ((port_speed >= 0)), + CONSTRAINT circuits_circuittermination_upstream_speed_check CHECK ((upstream_speed >= 0)) +); + + +ALTER TABLE public.circuits_circuittermination OWNER TO nautobot; + +-- +-- Name: circuits_circuittype; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.circuits_circuittype ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.circuits_circuittype OWNER TO nautobot; + +-- +-- Name: circuits_provider; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.circuits_provider ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + asn bigint, + account character varying(100) NOT NULL, + portal_url character varying(200) NOT NULL, + noc_contact text NOT NULL, + admin_contact text NOT NULL, + comments text NOT NULL +); + + +ALTER TABLE public.circuits_provider OWNER TO nautobot; + +-- +-- Name: circuits_providernetwork; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.circuits_providernetwork ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + comments text NOT NULL, + provider_id uuid NOT NULL +); + + +ALTER TABLE public.circuits_providernetwork OWNER TO nautobot; + +-- +-- Name: constance_config; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.constance_config ( + id integer NOT NULL, + key character varying(255) NOT NULL, + value text +); + + +ALTER TABLE public.constance_config OWNER TO nautobot; + +-- +-- Name: constance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.constance_config_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.constance_config_id_seq OWNER TO nautobot; + +-- +-- Name: constance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.constance_config_id_seq OWNED BY public.constance_config.id; + + +-- +-- Name: dcim_cable; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_cable ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + termination_a_id uuid NOT NULL, + termination_b_id uuid NOT NULL, + type character varying(50) NOT NULL, + label character varying(100) NOT NULL, + color character varying(6) NOT NULL, + length smallint, + length_unit character varying(50) NOT NULL, + _abs_length numeric(10,4), + _termination_a_device_id uuid, + _termination_b_device_id uuid, + status_id uuid, + termination_a_type_id integer NOT NULL, + termination_b_type_id integer NOT NULL, + CONSTRAINT dcim_cable_length_check CHECK ((length >= 0)) +); + + +ALTER TABLE public.dcim_cable OWNER TO nautobot; + +-- +-- Name: dcim_cablepath; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_cablepath ( + id uuid NOT NULL, + origin_id uuid NOT NULL, + destination_id uuid, + path jsonb NOT NULL, + is_active boolean NOT NULL, + is_split boolean NOT NULL, + destination_type_id integer, + origin_type_id integer NOT NULL +); + + +ALTER TABLE public.dcim_cablepath OWNER TO nautobot; + +-- +-- Name: dcim_consoleport; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_consoleport ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + type character varying(50) NOT NULL, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + device_id uuid NOT NULL, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_consoleport OWNER TO nautobot; + +-- +-- Name: dcim_consoleporttemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_consoleporttemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + device_type_id uuid NOT NULL, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_consoleporttemplate OWNER TO nautobot; + +-- +-- Name: dcim_consoleserverport; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_consoleserverport ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + type character varying(50) NOT NULL, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + device_id uuid NOT NULL, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_consoleserverport OWNER TO nautobot; + +-- +-- Name: dcim_consoleserverporttemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_consoleserverporttemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + device_type_id uuid NOT NULL, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_consoleserverporttemplate OWNER TO nautobot; + +-- +-- Name: dcim_device; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_device ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + local_context_data jsonb, + local_context_data_owner_object_id uuid, + name character varying(64), + _name character varying(100), + serial character varying(255) NOT NULL, + asset_tag character varying(50), + "position" smallint, + face character varying(50) NOT NULL, + vc_position smallint, + vc_priority smallint, + comments text NOT NULL, + cluster_id uuid, + device_role_id uuid NOT NULL, + device_type_id uuid NOT NULL, + local_context_data_owner_content_type_id integer, + platform_id uuid, + primary_ip4_id uuid, + primary_ip6_id uuid, + rack_id uuid, + site_id uuid NOT NULL, + status_id uuid, + tenant_id uuid, + virtual_chassis_id uuid, + local_context_schema_id uuid, + secrets_group_id uuid, + location_id uuid, + device_redundancy_group_priority smallint, + device_redundancy_group_id uuid, + CONSTRAINT dcim_device_device_redundancy_group_priority_check CHECK ((device_redundancy_group_priority >= 0)), + CONSTRAINT dcim_device_position_check CHECK (("position" >= 0)), + CONSTRAINT dcim_device_vc_position_check CHECK ((vc_position >= 0)), + CONSTRAINT dcim_device_vc_priority_check CHECK ((vc_priority >= 0)) +); + + +ALTER TABLE public.dcim_device OWNER TO nautobot; + +-- +-- Name: dcim_devicebay; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_devicebay ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + device_id uuid NOT NULL, + installed_device_id uuid, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_devicebay OWNER TO nautobot; + +-- +-- Name: dcim_devicebaytemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_devicebaytemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + device_type_id uuid NOT NULL, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_devicebaytemplate OWNER TO nautobot; + +-- +-- Name: dcim_deviceredundancygroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_deviceredundancygroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + failover_strategy character varying(50) NOT NULL, + comments text NOT NULL, + secrets_group_id uuid, + status_id uuid +); + + +ALTER TABLE public.dcim_deviceredundancygroup OWNER TO nautobot; + +-- +-- Name: dcim_devicerole; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_devicerole ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + color character varying(6) NOT NULL, + vm_role boolean NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.dcim_devicerole OWNER TO nautobot; + +-- +-- Name: dcim_devicetype; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_devicetype ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + model character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + part_number character varying(50) NOT NULL, + u_height smallint NOT NULL, + is_full_depth boolean NOT NULL, + subdevice_role character varying(50) NOT NULL, + front_image character varying(100) NOT NULL, + rear_image character varying(100) NOT NULL, + comments text NOT NULL, + manufacturer_id uuid NOT NULL, + CONSTRAINT dcim_devicetype_u_height_check CHECK ((u_height >= 0)) +); + + +ALTER TABLE public.dcim_devicetype OWNER TO nautobot; + +-- +-- Name: dcim_frontport; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_frontport ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + type character varying(50) NOT NULL, + rear_port_position smallint NOT NULL, + _cable_peer_type_id integer, + cable_id uuid, + device_id uuid NOT NULL, + rear_port_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_frontport_rear_port_position_check CHECK ((rear_port_position >= 0)) +); + + +ALTER TABLE public.dcim_frontport OWNER TO nautobot; + +-- +-- Name: dcim_frontporttemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_frontporttemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + rear_port_position smallint NOT NULL, + device_type_id uuid NOT NULL, + rear_port_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_frontporttemplate_rear_port_position_check CHECK ((rear_port_position >= 0)) +); + + +ALTER TABLE public.dcim_frontporttemplate OWNER TO nautobot; + +-- +-- Name: dcim_interface; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_interface ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + enabled boolean NOT NULL, + mac_address character varying(18), + mtu integer, + mode character varying(50) NOT NULL, + _name character varying(100) NOT NULL, + type character varying(50) NOT NULL, + mgmt_only boolean NOT NULL, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + device_id uuid NOT NULL, + lag_id uuid, + untagged_vlan_id uuid, + status_id uuid, + parent_interface_id uuid, + bridge_id uuid, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_interface_mtu_check CHECK ((mtu >= 0)) +); + + +ALTER TABLE public.dcim_interface OWNER TO nautobot; + +-- +-- Name: dcim_interface_tagged_vlans; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_interface_tagged_vlans ( + id bigint NOT NULL, + interface_id uuid NOT NULL, + vlan_id uuid NOT NULL +); + + +ALTER TABLE public.dcim_interface_tagged_vlans OWNER TO nautobot; + +-- +-- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.dcim_interface_tagged_vlans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.dcim_interface_tagged_vlans_id_seq OWNER TO nautobot; + +-- +-- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.dcim_interface_tagged_vlans_id_seq OWNED BY public.dcim_interface_tagged_vlans.id; + + +-- +-- Name: dcim_interfacetemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_interfacetemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _name character varying(100) NOT NULL, + type character varying(50) NOT NULL, + mgmt_only boolean NOT NULL, + device_type_id uuid NOT NULL, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_interfacetemplate OWNER TO nautobot; + +-- +-- Name: dcim_inventoryitem; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_inventoryitem ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + part_id character varying(50) NOT NULL, + serial character varying(255) NOT NULL, + asset_tag character varying(50), + discovered boolean NOT NULL, + lft integer NOT NULL, + rght integer NOT NULL, + tree_id integer NOT NULL, + level integer NOT NULL, + device_id uuid NOT NULL, + manufacturer_id uuid, + parent_id uuid, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_inventoryitem_level_check CHECK ((level >= 0)), + CONSTRAINT dcim_inventoryitem_lft_check CHECK ((lft >= 0)), + CONSTRAINT dcim_inventoryitem_rght_check CHECK ((rght >= 0)), + CONSTRAINT dcim_inventoryitem_tree_id_check CHECK ((tree_id >= 0)) +); + + +ALTER TABLE public.dcim_inventoryitem OWNER TO nautobot; + +-- +-- Name: dcim_location; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_location ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + _name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + location_type_id uuid NOT NULL, + parent_id uuid, + site_id uuid, + status_id uuid, + tenant_id uuid +); + + +ALTER TABLE public.dcim_location OWNER TO nautobot; + +-- +-- Name: dcim_locationtype; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_locationtype ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + parent_id uuid, + nestable boolean NOT NULL +); + + +ALTER TABLE public.dcim_locationtype OWNER TO nautobot; + +-- +-- Name: dcim_locationtype_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_locationtype_content_types ( + id bigint NOT NULL, + locationtype_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.dcim_locationtype_content_types OWNER TO nautobot; + +-- +-- Name: dcim_locationtype_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.dcim_locationtype_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.dcim_locationtype_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: dcim_locationtype_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.dcim_locationtype_content_types_id_seq OWNED BY public.dcim_locationtype_content_types.id; + + +-- +-- Name: dcim_manufacturer; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_manufacturer ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.dcim_manufacturer OWNER TO nautobot; + +-- +-- Name: dcim_platform; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_platform ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + napalm_driver character varying(50) NOT NULL, + napalm_args jsonb, + description character varying(200) NOT NULL, + manufacturer_id uuid +); + + +ALTER TABLE public.dcim_platform OWNER TO nautobot; + +-- +-- Name: dcim_powerfeed; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_powerfeed ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + _cable_peer_id uuid, + name character varying(100) NOT NULL, + type character varying(50) NOT NULL, + supply character varying(50) NOT NULL, + phase character varying(50) NOT NULL, + voltage smallint NOT NULL, + amperage smallint NOT NULL, + max_utilization smallint NOT NULL, + available_power integer NOT NULL, + comments text NOT NULL, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + power_panel_id uuid NOT NULL, + rack_id uuid, + status_id uuid, + CONSTRAINT dcim_powerfeed_amperage_check CHECK ((amperage >= 0)), + CONSTRAINT dcim_powerfeed_available_power_check CHECK ((available_power >= 0)), + CONSTRAINT dcim_powerfeed_max_utilization_check CHECK ((max_utilization >= 0)) +); + + +ALTER TABLE public.dcim_powerfeed OWNER TO nautobot; + +-- +-- Name: dcim_poweroutlet; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_poweroutlet ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + type character varying(50) NOT NULL, + feed_leg character varying(50) NOT NULL, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + device_id uuid NOT NULL, + power_port_id uuid, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_poweroutlet OWNER TO nautobot; + +-- +-- Name: dcim_poweroutlettemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_poweroutlettemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + feed_leg character varying(50) NOT NULL, + device_type_id uuid NOT NULL, + power_port_id uuid, + created date, + last_updated timestamp with time zone +); + + +ALTER TABLE public.dcim_poweroutlettemplate OWNER TO nautobot; + +-- +-- Name: dcim_powerpanel; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_powerpanel ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + rack_group_id uuid, + site_id uuid NOT NULL, + location_id uuid +); + + +ALTER TABLE public.dcim_powerpanel OWNER TO nautobot; + +-- +-- Name: dcim_powerport; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_powerport ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + type character varying(50) NOT NULL, + maximum_draw smallint, + allocated_draw smallint, + _cable_peer_type_id integer, + _path_id uuid, + cable_id uuid, + device_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_powerport_allocated_draw_check CHECK ((allocated_draw >= 0)), + CONSTRAINT dcim_powerport_maximum_draw_check CHECK ((maximum_draw >= 0)) +); + + +ALTER TABLE public.dcim_powerport OWNER TO nautobot; + +-- +-- Name: dcim_powerporttemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_powerporttemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + maximum_draw smallint, + allocated_draw smallint, + device_type_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_powerporttemplate_allocated_draw_check CHECK ((allocated_draw >= 0)), + CONSTRAINT dcim_powerporttemplate_maximum_draw_check CHECK ((maximum_draw >= 0)) +); + + +ALTER TABLE public.dcim_powerporttemplate OWNER TO nautobot; + +-- +-- Name: dcim_rack; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_rack ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + _name character varying(100) NOT NULL, + facility_id character varying(50), + serial character varying(255) NOT NULL, + asset_tag character varying(50), + type character varying(50) NOT NULL, + width smallint NOT NULL, + u_height smallint NOT NULL, + desc_units boolean NOT NULL, + outer_width smallint, + outer_depth smallint, + outer_unit character varying(50) NOT NULL, + comments text NOT NULL, + group_id uuid, + role_id uuid, + site_id uuid NOT NULL, + status_id uuid, + tenant_id uuid, + location_id uuid, + CONSTRAINT dcim_rack_outer_depth_check CHECK ((outer_depth >= 0)), + CONSTRAINT dcim_rack_outer_width_check CHECK ((outer_width >= 0)), + CONSTRAINT dcim_rack_u_height_check CHECK ((u_height >= 0)), + CONSTRAINT dcim_rack_width_check CHECK ((width >= 0)) +); + + +ALTER TABLE public.dcim_rack OWNER TO nautobot; + +-- +-- Name: dcim_rackgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_rackgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + lft integer NOT NULL, + rght integer NOT NULL, + tree_id integer NOT NULL, + level integer NOT NULL, + parent_id uuid, + site_id uuid NOT NULL, + location_id uuid, + CONSTRAINT dcim_rackgroup_level_check CHECK ((level >= 0)), + CONSTRAINT dcim_rackgroup_lft_check CHECK ((lft >= 0)), + CONSTRAINT dcim_rackgroup_rght_check CHECK ((rght >= 0)), + CONSTRAINT dcim_rackgroup_tree_id_check CHECK ((tree_id >= 0)) +); + + +ALTER TABLE public.dcim_rackgroup OWNER TO nautobot; + +-- +-- Name: dcim_rackreservation; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_rackreservation ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + units jsonb NOT NULL, + description character varying(200) NOT NULL, + rack_id uuid NOT NULL, + tenant_id uuid, + user_id uuid NOT NULL +); + + +ALTER TABLE public.dcim_rackreservation OWNER TO nautobot; + +-- +-- Name: dcim_rackrole; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_rackrole ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + color character varying(6) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.dcim_rackrole OWNER TO nautobot; + +-- +-- Name: dcim_rearport; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_rearport ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + _cable_peer_id uuid, + type character varying(50) NOT NULL, + positions smallint NOT NULL, + _cable_peer_type_id integer, + cable_id uuid, + device_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_rearport_positions_check CHECK ((positions >= 0)) +); + + +ALTER TABLE public.dcim_rearport OWNER TO nautobot; + +-- +-- Name: dcim_rearporttemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_rearporttemplate ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + label character varying(64) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + positions smallint NOT NULL, + device_type_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT dcim_rearporttemplate_positions_check CHECK ((positions >= 0)) +); + + +ALTER TABLE public.dcim_rearporttemplate OWNER TO nautobot; + +-- +-- Name: dcim_region; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_region ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + lft integer NOT NULL, + rght integer NOT NULL, + tree_id integer NOT NULL, + level integer NOT NULL, + parent_id uuid, + CONSTRAINT dcim_region_level_check CHECK ((level >= 0)), + CONSTRAINT dcim_region_lft_check CHECK ((lft >= 0)), + CONSTRAINT dcim_region_rght_check CHECK ((rght >= 0)), + CONSTRAINT dcim_region_tree_id_check CHECK ((tree_id >= 0)) +); + + +ALTER TABLE public.dcim_region OWNER TO nautobot; + +-- +-- Name: dcim_site; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_site ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + _name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + facility character varying(50) NOT NULL, + asn bigint, + time_zone character varying(63) NOT NULL, + description character varying(200) NOT NULL, + physical_address character varying(200) NOT NULL, + shipping_address character varying(200) NOT NULL, + latitude numeric(8,6), + longitude numeric(9,6), + contact_name character varying(50) NOT NULL, + contact_phone character varying(20) NOT NULL, + contact_email character varying(254) NOT NULL, + comments text NOT NULL, + region_id uuid, + status_id uuid, + tenant_id uuid +); + + +ALTER TABLE public.dcim_site OWNER TO nautobot; + +-- +-- Name: dcim_virtualchassis; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.dcim_virtualchassis ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(64) NOT NULL, + domain character varying(30) NOT NULL, + master_id uuid +); + + +ALTER TABLE public.dcim_virtualchassis OWNER TO nautobot; + +-- +-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_admin_log ( + id integer NOT NULL, + action_time timestamp with time zone NOT NULL, + object_id text, + object_repr character varying(200) NOT NULL, + action_flag smallint NOT NULL, + change_message text NOT NULL, + content_type_id integer, + user_id uuid NOT NULL, + CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0)) +); + + +ALTER TABLE public.django_admin_log OWNER TO nautobot; + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_admin_log_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_admin_log_id_seq OWNER TO nautobot; + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_admin_log_id_seq OWNED BY public.django_admin_log.id; + + +-- +-- Name: django_celery_beat_clockedschedule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_celery_beat_clockedschedule ( + id integer NOT NULL, + clocked_time timestamp with time zone NOT NULL +); + + +ALTER TABLE public.django_celery_beat_clockedschedule OWNER TO nautobot; + +-- +-- Name: django_celery_beat_clockedschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_celery_beat_clockedschedule_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_celery_beat_clockedschedule_id_seq OWNER TO nautobot; + +-- +-- Name: django_celery_beat_clockedschedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_celery_beat_clockedschedule_id_seq OWNED BY public.django_celery_beat_clockedschedule.id; + + +-- +-- Name: django_celery_beat_crontabschedule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_celery_beat_crontabschedule ( + id integer NOT NULL, + minute character varying(240) NOT NULL, + hour character varying(96) NOT NULL, + day_of_week character varying(64) NOT NULL, + day_of_month character varying(124) NOT NULL, + month_of_year character varying(64) NOT NULL, + timezone character varying(63) NOT NULL +); + + +ALTER TABLE public.django_celery_beat_crontabschedule OWNER TO nautobot; + +-- +-- Name: django_celery_beat_crontabschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_celery_beat_crontabschedule_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_celery_beat_crontabschedule_id_seq OWNER TO nautobot; + +-- +-- Name: django_celery_beat_crontabschedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_celery_beat_crontabschedule_id_seq OWNED BY public.django_celery_beat_crontabschedule.id; + + +-- +-- Name: django_celery_beat_intervalschedule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_celery_beat_intervalschedule ( + id integer NOT NULL, + every integer NOT NULL, + period character varying(24) NOT NULL +); + + +ALTER TABLE public.django_celery_beat_intervalschedule OWNER TO nautobot; + +-- +-- Name: django_celery_beat_intervalschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_celery_beat_intervalschedule_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_celery_beat_intervalschedule_id_seq OWNER TO nautobot; + +-- +-- Name: django_celery_beat_intervalschedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_celery_beat_intervalschedule_id_seq OWNED BY public.django_celery_beat_intervalschedule.id; + + +-- +-- Name: django_celery_beat_periodictask; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_celery_beat_periodictask ( + id integer NOT NULL, + name character varying(200) NOT NULL, + task character varying(200) NOT NULL, + args text NOT NULL, + kwargs text NOT NULL, + queue character varying(200), + exchange character varying(200), + routing_key character varying(200), + expires timestamp with time zone, + enabled boolean NOT NULL, + last_run_at timestamp with time zone, + total_run_count integer NOT NULL, + date_changed timestamp with time zone NOT NULL, + description text NOT NULL, + crontab_id integer, + interval_id integer, + solar_id integer, + one_off boolean NOT NULL, + start_time timestamp with time zone, + priority integer, + headers text NOT NULL, + clocked_id integer, + expire_seconds integer, + CONSTRAINT django_celery_beat_periodictask_expire_seconds_check CHECK ((expire_seconds >= 0)), + CONSTRAINT django_celery_beat_periodictask_priority_check CHECK ((priority >= 0)), + CONSTRAINT django_celery_beat_periodictask_total_run_count_check CHECK ((total_run_count >= 0)) +); + + +ALTER TABLE public.django_celery_beat_periodictask OWNER TO nautobot; + +-- +-- Name: django_celery_beat_periodictask_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_celery_beat_periodictask_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_celery_beat_periodictask_id_seq OWNER TO nautobot; + +-- +-- Name: django_celery_beat_periodictask_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_celery_beat_periodictask_id_seq OWNED BY public.django_celery_beat_periodictask.id; + + +-- +-- Name: django_celery_beat_periodictasks; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_celery_beat_periodictasks ( + ident smallint NOT NULL, + last_update timestamp with time zone NOT NULL +); + + +ALTER TABLE public.django_celery_beat_periodictasks OWNER TO nautobot; + +-- +-- Name: django_celery_beat_solarschedule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_celery_beat_solarschedule ( + id integer NOT NULL, + event character varying(24) NOT NULL, + latitude numeric(9,6) NOT NULL, + longitude numeric(9,6) NOT NULL +); + + +ALTER TABLE public.django_celery_beat_solarschedule OWNER TO nautobot; + +-- +-- Name: django_celery_beat_solarschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_celery_beat_solarschedule_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_celery_beat_solarschedule_id_seq OWNER TO nautobot; + +-- +-- Name: django_celery_beat_solarschedule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_celery_beat_solarschedule_id_seq OWNED BY public.django_celery_beat_solarschedule.id; + + +-- +-- Name: django_content_type; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_content_type ( + id integer NOT NULL, + app_label character varying(100) NOT NULL, + model character varying(100) NOT NULL +); + + +ALTER TABLE public.django_content_type OWNER TO nautobot; + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_content_type_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_content_type_id_seq OWNER TO nautobot; + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_content_type_id_seq OWNED BY public.django_content_type.id; + + +-- +-- Name: django_migrations; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_migrations ( + id bigint NOT NULL, + app character varying(255) NOT NULL, + name character varying(255) NOT NULL, + applied timestamp with time zone NOT NULL +); + + +ALTER TABLE public.django_migrations OWNER TO nautobot; + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.django_migrations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.django_migrations_id_seq OWNER TO nautobot; + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.django_migrations_id_seq OWNED BY public.django_migrations.id; + + +-- +-- Name: django_session; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.django_session ( + session_key character varying(40) NOT NULL, + session_data text NOT NULL, + expire_date timestamp with time zone NOT NULL +); + + +ALTER TABLE public.django_session OWNER TO nautobot; + +-- +-- Name: extras_computedfield; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_computedfield ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + slug character varying(100) NOT NULL, + label character varying(100) NOT NULL, + description character varying(200) NOT NULL, + template text NOT NULL, + fallback_value character varying(500) NOT NULL, + weight smallint NOT NULL, + content_type_id integer NOT NULL, + advanced_ui boolean NOT NULL, + CONSTRAINT extras_computedfield_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_computedfield OWNER TO nautobot; + +-- +-- Name: extras_configcontext; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + owner_object_id uuid, + weight smallint NOT NULL, + description character varying(200) NOT NULL, + is_active boolean NOT NULL, + data jsonb NOT NULL, + owner_content_type_id integer, + schema_id uuid, + CONSTRAINT extras_configcontext_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_configcontext OWNER TO nautobot; + +-- +-- Name: extras_configcontext_cluster_groups; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_cluster_groups ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + clustergroup_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_cluster_groups OWNER TO nautobot; + +-- +-- Name: extras_configcontext_cluster_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_cluster_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_cluster_groups_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_cluster_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_cluster_groups_id_seq OWNED BY public.extras_configcontext_cluster_groups.id; + + +-- +-- Name: extras_configcontext_clusters; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_clusters ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + cluster_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_clusters OWNER TO nautobot; + +-- +-- Name: extras_configcontext_clusters_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_clusters_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_clusters_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_clusters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_clusters_id_seq OWNED BY public.extras_configcontext_clusters.id; + + +-- +-- Name: extras_configcontext_device_redundancy_groups; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_device_redundancy_groups ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + deviceredundancygroup_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_device_redundancy_groups OWNER TO nautobot; + +-- +-- Name: extras_configcontext_device_redundancy_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_device_redundancy_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_device_redundancy_groups_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_device_redundancy_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_device_redundancy_groups_id_seq OWNED BY public.extras_configcontext_device_redundancy_groups.id; + + +-- +-- Name: extras_configcontext_device_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_device_types ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + devicetype_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_device_types OWNER TO nautobot; + +-- +-- Name: extras_configcontext_device_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_device_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_device_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_device_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_device_types_id_seq OWNED BY public.extras_configcontext_device_types.id; + + +-- +-- Name: extras_configcontext_dynamic_groups; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_dynamic_groups ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + dynamicgroup_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_dynamic_groups OWNER TO nautobot; + +-- +-- Name: extras_configcontext_dynamic_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_dynamic_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_dynamic_groups_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_dynamic_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_dynamic_groups_id_seq OWNED BY public.extras_configcontext_dynamic_groups.id; + + +-- +-- Name: extras_configcontext_locations; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_locations ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + location_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_locations OWNER TO nautobot; + +-- +-- Name: extras_configcontext_locations_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_locations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_locations_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_locations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_locations_id_seq OWNED BY public.extras_configcontext_locations.id; + + +-- +-- Name: extras_configcontext_platforms; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_platforms ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + platform_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_platforms OWNER TO nautobot; + +-- +-- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_platforms_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_platforms_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_platforms_id_seq OWNED BY public.extras_configcontext_platforms.id; + + +-- +-- Name: extras_configcontext_regions; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_regions ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + region_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_regions OWNER TO nautobot; + +-- +-- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_regions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_regions_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_regions_id_seq OWNED BY public.extras_configcontext_regions.id; + + +-- +-- Name: extras_configcontext_roles; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_roles ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + devicerole_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_roles OWNER TO nautobot; + +-- +-- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_roles_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_roles_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_roles_id_seq OWNED BY public.extras_configcontext_roles.id; + + +-- +-- Name: extras_configcontext_sites; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_sites ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + site_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_sites OWNER TO nautobot; + +-- +-- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_sites_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_sites_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_sites_id_seq OWNED BY public.extras_configcontext_sites.id; + + +-- +-- Name: extras_configcontext_tags; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_tags ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + tag_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_tags OWNER TO nautobot; + +-- +-- Name: extras_configcontext_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_tags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_tags_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_tags_id_seq OWNED BY public.extras_configcontext_tags.id; + + +-- +-- Name: extras_configcontext_tenant_groups; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_tenant_groups ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + tenantgroup_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_tenant_groups OWNER TO nautobot; + +-- +-- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_tenant_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_tenant_groups_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_tenant_groups_id_seq OWNED BY public.extras_configcontext_tenant_groups.id; + + +-- +-- Name: extras_configcontext_tenants; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontext_tenants ( + id bigint NOT NULL, + configcontext_id uuid NOT NULL, + tenant_id uuid NOT NULL +); + + +ALTER TABLE public.extras_configcontext_tenants OWNER TO nautobot; + +-- +-- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_configcontext_tenants_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_configcontext_tenants_id_seq OWNER TO nautobot; + +-- +-- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_configcontext_tenants_id_seq OWNED BY public.extras_configcontext_tenants.id; + + +-- +-- Name: extras_configcontextschema; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_configcontextschema ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(200) NOT NULL, + description character varying(200) NOT NULL, + slug character varying(200) NOT NULL, + data_schema jsonb NOT NULL, + owner_object_id uuid, + owner_content_type_id integer +); + + +ALTER TABLE public.extras_configcontextschema OWNER TO nautobot; + +-- +-- Name: extras_customfield; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_customfield ( + id uuid NOT NULL, + type character varying(50) NOT NULL, + name character varying(50) NOT NULL, + label character varying(50) NOT NULL, + description character varying(200) NOT NULL, + required boolean NOT NULL, + filter_logic character varying(50) NOT NULL, + "default" jsonb, + weight smallint NOT NULL, + validation_minimum bigint, + validation_maximum bigint, + validation_regex character varying(500) NOT NULL, + created date, + last_updated timestamp with time zone, + advanced_ui boolean NOT NULL, + slug character varying(100) NOT NULL, + "grouping" character varying(255) NOT NULL, + CONSTRAINT extras_customfield_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_customfield OWNER TO nautobot; + +-- +-- Name: extras_customfield_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_customfield_content_types ( + id bigint NOT NULL, + customfield_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.extras_customfield_content_types OWNER TO nautobot; + +-- +-- Name: extras_customfield_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_customfield_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_customfield_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_customfield_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_customfield_content_types_id_seq OWNED BY public.extras_customfield_content_types.id; + + +-- +-- Name: extras_customfieldchoice; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_customfieldchoice ( + id uuid NOT NULL, + value character varying(100) NOT NULL, + weight smallint NOT NULL, + field_id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + CONSTRAINT extras_customfieldchoice_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_customfieldchoice OWNER TO nautobot; + +-- +-- Name: extras_customlink; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_customlink ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + text character varying(500) NOT NULL, + target_url character varying(500) NOT NULL, + weight smallint NOT NULL, + group_name character varying(50) NOT NULL, + button_class character varying(30) NOT NULL, + new_window boolean NOT NULL, + content_type_id integer NOT NULL, + CONSTRAINT extras_customlink_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_customlink OWNER TO nautobot; + +-- +-- Name: extras_dynamicgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_dynamicgroup ( + _custom_field_data jsonb NOT NULL, + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + filter jsonb NOT NULL, + content_type_id integer NOT NULL +); + + +ALTER TABLE public.extras_dynamicgroup OWNER TO nautobot; + +-- +-- Name: extras_dynamicgroupmembership; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_dynamicgroupmembership ( + id uuid NOT NULL, + operator character varying(12) NOT NULL, + weight smallint NOT NULL, + group_id uuid NOT NULL, + parent_group_id uuid NOT NULL, + CONSTRAINT extras_dynamicgroupmembership_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_dynamicgroupmembership OWNER TO nautobot; + +-- +-- Name: extras_exporttemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_exporttemplate ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + owner_object_id uuid, + name character varying(100) NOT NULL, + description character varying(200) NOT NULL, + template_code text NOT NULL, + mime_type character varying(50) NOT NULL, + file_extension character varying(15) NOT NULL, + content_type_id integer NOT NULL, + owner_content_type_id integer +); + + +ALTER TABLE public.extras_exporttemplate OWNER TO nautobot; + +-- +-- Name: extras_fileattachment; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_fileattachment ( + id uuid NOT NULL, + bytes bytea NOT NULL, + filename character varying(255) NOT NULL, + mimetype character varying(255) NOT NULL +); + + +ALTER TABLE public.extras_fileattachment OWNER TO nautobot; + +-- +-- Name: extras_fileproxy; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_fileproxy ( + id uuid NOT NULL, + name character varying(255) NOT NULL, + file character varying(100) NOT NULL, + uploaded_at timestamp with time zone NOT NULL +); + + +ALTER TABLE public.extras_fileproxy OWNER TO nautobot; + +-- +-- Name: extras_gitrepository; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_gitrepository ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + remote_url character varying(255) NOT NULL, + branch character varying(64) NOT NULL, + current_head character varying(48) NOT NULL, + _token bytea NOT NULL, + username character varying(64) NOT NULL, + provided_contents jsonb NOT NULL, + secrets_group_id uuid +); + + +ALTER TABLE public.extras_gitrepository OWNER TO nautobot; + +-- +-- Name: extras_graphqlquery; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_graphqlquery ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + query text NOT NULL, + variables jsonb NOT NULL +); + + +ALTER TABLE public.extras_graphqlquery OWNER TO nautobot; + +-- +-- Name: extras_healthchecktestmodel; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_healthchecktestmodel ( + id uuid NOT NULL, + title character varying(128) NOT NULL +); + + +ALTER TABLE public.extras_healthchecktestmodel OWNER TO nautobot; + +-- +-- Name: extras_imageattachment; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_imageattachment ( + id uuid NOT NULL, + object_id uuid NOT NULL, + image character varying(100) NOT NULL, + image_height smallint NOT NULL, + image_width smallint NOT NULL, + name character varying(50) NOT NULL, + created timestamp with time zone NOT NULL, + content_type_id integer NOT NULL, + CONSTRAINT extras_imageattachment_image_height_check CHECK ((image_height >= 0)), + CONSTRAINT extras_imageattachment_image_width_check CHECK ((image_width >= 0)) +); + + +ALTER TABLE public.extras_imageattachment OWNER TO nautobot; + +-- +-- Name: extras_job; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_job ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + source character varying(16) NOT NULL, + module_name character varying(100) NOT NULL, + job_class_name character varying(100) NOT NULL, + slug character varying(320) NOT NULL, + "grouping" character varying(255) NOT NULL, + name character varying(100) NOT NULL, + description text NOT NULL, + installed boolean NOT NULL, + enabled boolean NOT NULL, + commit_default boolean NOT NULL, + hidden boolean NOT NULL, + read_only boolean NOT NULL, + approval_required boolean NOT NULL, + soft_time_limit double precision NOT NULL, + time_limit double precision NOT NULL, + grouping_override boolean NOT NULL, + name_override boolean NOT NULL, + description_override boolean NOT NULL, + commit_default_override boolean NOT NULL, + hidden_override boolean NOT NULL, + read_only_override boolean NOT NULL, + approval_required_override boolean NOT NULL, + soft_time_limit_override boolean NOT NULL, + time_limit_override boolean NOT NULL, + git_repository_id uuid, + has_sensitive_variables boolean NOT NULL, + has_sensitive_variables_override boolean NOT NULL, + is_job_hook_receiver boolean NOT NULL, + task_queues jsonb NOT NULL, + task_queues_override boolean NOT NULL, + is_job_button_receiver boolean NOT NULL +); + + +ALTER TABLE public.extras_job OWNER TO nautobot; + +-- +-- Name: extras_jobbutton; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_jobbutton ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + text character varying(500) NOT NULL, + weight smallint NOT NULL, + group_name character varying(50) NOT NULL, + button_class character varying(30) NOT NULL, + confirmation boolean NOT NULL, + job_id uuid NOT NULL, + CONSTRAINT extras_jobbutton_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.extras_jobbutton OWNER TO nautobot; + +-- +-- Name: extras_jobbutton_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_jobbutton_content_types ( + id bigint NOT NULL, + jobbutton_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.extras_jobbutton_content_types OWNER TO nautobot; + +-- +-- Name: extras_jobbutton_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_jobbutton_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_jobbutton_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_jobbutton_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_jobbutton_content_types_id_seq OWNED BY public.extras_jobbutton_content_types.id; + + +-- +-- Name: extras_jobhook; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_jobhook ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + enabled boolean NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + type_create boolean NOT NULL, + type_delete boolean NOT NULL, + type_update boolean NOT NULL, + job_id uuid NOT NULL +); + + +ALTER TABLE public.extras_jobhook OWNER TO nautobot; + +-- +-- Name: extras_jobhook_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_jobhook_content_types ( + id bigint NOT NULL, + jobhook_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.extras_jobhook_content_types OWNER TO nautobot; + +-- +-- Name: extras_jobhook_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_jobhook_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_jobhook_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_jobhook_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_jobhook_content_types_id_seq OWNED BY public.extras_jobhook_content_types.id; + + +-- +-- Name: extras_joblogentry; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_joblogentry ( + id uuid NOT NULL, + log_level character varying(32) NOT NULL, + "grouping" character varying(100) NOT NULL, + message text NOT NULL, + created timestamp with time zone NOT NULL, + log_object character varying(200), + absolute_url character varying(255), + job_result_id uuid NOT NULL +); + + +ALTER TABLE public.extras_joblogentry OWNER TO nautobot; + +-- +-- Name: extras_jobresult; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_jobresult ( + id uuid NOT NULL, + name character varying(255) NOT NULL, + created timestamp with time zone NOT NULL, + completed timestamp with time zone, + status character varying(30) NOT NULL, + data jsonb, + job_id uuid NOT NULL, + obj_type_id integer NOT NULL, + user_id uuid, + _custom_field_data jsonb NOT NULL, + schedule_id uuid, + job_model_id uuid, + job_kwargs jsonb +); + + +ALTER TABLE public.extras_jobresult OWNER TO nautobot; + +-- +-- Name: extras_note; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_note ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + assigned_object_id uuid NOT NULL, + user_name character varying(150) NOT NULL, + slug character varying(100) NOT NULL, + note text NOT NULL, + assigned_object_type_id integer NOT NULL, + user_id uuid +); + + +ALTER TABLE public.extras_note OWNER TO nautobot; + +-- +-- Name: extras_objectchange; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_objectchange ( + id uuid NOT NULL, + "time" timestamp with time zone NOT NULL, + user_name character varying(150) NOT NULL, + request_id uuid NOT NULL, + action character varying(50) NOT NULL, + changed_object_id uuid NOT NULL, + related_object_id uuid, + object_repr character varying(200) NOT NULL, + object_data jsonb NOT NULL, + changed_object_type_id integer NOT NULL, + related_object_type_id integer, + user_id uuid, + object_data_v2 jsonb, + change_context character varying(50) NOT NULL, + change_context_detail character varying(400) NOT NULL +); + + +ALTER TABLE public.extras_objectchange OWNER TO nautobot; + +-- +-- Name: extras_relationship; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_relationship ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + type character varying(50) NOT NULL, + source_label character varying(50) NOT NULL, + source_hidden boolean NOT NULL, + source_filter jsonb, + destination_label character varying(50) NOT NULL, + destination_hidden boolean NOT NULL, + destination_filter jsonb, + destination_type_id integer NOT NULL, + source_type_id integer NOT NULL, + advanced_ui boolean NOT NULL, + required_on character varying(12) NOT NULL +); + + +ALTER TABLE public.extras_relationship OWNER TO nautobot; + +-- +-- Name: extras_relationshipassociation; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_relationshipassociation ( + id uuid NOT NULL, + source_id uuid NOT NULL, + destination_id uuid NOT NULL, + destination_type_id integer NOT NULL, + relationship_id uuid NOT NULL, + source_type_id integer NOT NULL +); + + +ALTER TABLE public.extras_relationshipassociation OWNER TO nautobot; + +-- +-- Name: extras_scheduledjob; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_scheduledjob ( + id uuid NOT NULL, + name character varying(200) NOT NULL, + task character varying(200) NOT NULL, + job_class character varying(255) NOT NULL, + "interval" character varying(255) NOT NULL, + args jsonb NOT NULL, + kwargs jsonb NOT NULL, + queue character varying(200), + one_off boolean NOT NULL, + start_time timestamp with time zone NOT NULL, + enabled boolean NOT NULL, + last_run_at timestamp with time zone, + total_run_count integer NOT NULL, + date_changed timestamp with time zone NOT NULL, + description text NOT NULL, + approval_required boolean NOT NULL, + approved_at timestamp with time zone, + approved_by_user_id uuid, + user_id uuid, + job_model_id uuid, + crontab character varying(255) NOT NULL, + CONSTRAINT extras_scheduledjob_total_run_count_check CHECK ((total_run_count >= 0)) +); + + +ALTER TABLE public.extras_scheduledjob OWNER TO nautobot; + +-- +-- Name: extras_scheduledjobs; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_scheduledjobs ( + ident smallint NOT NULL, + last_update timestamp with time zone NOT NULL +); + + +ALTER TABLE public.extras_scheduledjobs OWNER TO nautobot; + +-- +-- Name: extras_secret; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_secret ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + provider character varying(100) NOT NULL, + parameters jsonb NOT NULL +); + + +ALTER TABLE public.extras_secret OWNER TO nautobot; + +-- +-- Name: extras_secretsgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_secretsgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.extras_secretsgroup OWNER TO nautobot; + +-- +-- Name: extras_secretsgroupassociation; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_secretsgroupassociation ( + id uuid NOT NULL, + access_type character varying(32) NOT NULL, + secret_type character varying(32) NOT NULL, + group_id uuid NOT NULL, + secret_id uuid NOT NULL +); + + +ALTER TABLE public.extras_secretsgroupassociation OWNER TO nautobot; + +-- +-- Name: extras_status; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_status ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(50) NOT NULL, + color character varying(6) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.extras_status OWNER TO nautobot; + +-- +-- Name: extras_status_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_status_content_types ( + id bigint NOT NULL, + status_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.extras_status_content_types OWNER TO nautobot; + +-- +-- Name: extras_status_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_status_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_status_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_status_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_status_content_types_id_seq OWNED BY public.extras_status_content_types.id; + + +-- +-- Name: extras_tag; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_tag ( + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + color character varying(6) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.extras_tag OWNER TO nautobot; + +-- +-- Name: extras_tag_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_tag_content_types ( + id bigint NOT NULL, + tag_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.extras_tag_content_types OWNER TO nautobot; + +-- +-- Name: extras_tag_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_tag_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_tag_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_tag_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_tag_content_types_id_seq OWNED BY public.extras_tag_content_types.id; + + +-- +-- Name: extras_taggeditem; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_taggeditem ( + id uuid NOT NULL, + object_id uuid NOT NULL, + content_type_id integer NOT NULL, + tag_id uuid NOT NULL +); + + +ALTER TABLE public.extras_taggeditem OWNER TO nautobot; + +-- +-- Name: extras_webhook; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_webhook ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(150) NOT NULL, + type_create boolean NOT NULL, + type_update boolean NOT NULL, + type_delete boolean NOT NULL, + payload_url character varying(500) NOT NULL, + enabled boolean NOT NULL, + http_method character varying(30) NOT NULL, + http_content_type character varying(100) NOT NULL, + additional_headers text NOT NULL, + body_template text NOT NULL, + secret character varying(255) NOT NULL, + ssl_verification boolean NOT NULL, + ca_file_path character varying(4096) +); + + +ALTER TABLE public.extras_webhook OWNER TO nautobot; + +-- +-- Name: extras_webhook_content_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.extras_webhook_content_types ( + id bigint NOT NULL, + webhook_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.extras_webhook_content_types OWNER TO nautobot; + +-- +-- Name: extras_webhook_content_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.extras_webhook_content_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.extras_webhook_content_types_id_seq OWNER TO nautobot; + +-- +-- Name: extras_webhook_content_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.extras_webhook_content_types_id_seq OWNED BY public.extras_webhook_content_types.id; + + +-- +-- Name: ipam_aggregate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_aggregate ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + network bytea NOT NULL, + broadcast bytea NOT NULL, + prefix_length integer NOT NULL, + date_added date, + description character varying(200) NOT NULL, + rir_id uuid NOT NULL, + tenant_id uuid +); + + +ALTER TABLE public.ipam_aggregate OWNER TO nautobot; + +-- +-- Name: ipam_ipaddress; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_ipaddress ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + host bytea NOT NULL, + broadcast bytea NOT NULL, + prefix_length integer NOT NULL, + role character varying(50) NOT NULL, + assigned_object_id uuid, + dns_name character varying(255) NOT NULL, + description character varying(200) NOT NULL, + assigned_object_type_id integer, + nat_inside_id uuid, + status_id uuid, + tenant_id uuid, + vrf_id uuid +); + + +ALTER TABLE public.ipam_ipaddress OWNER TO nautobot; + +-- +-- Name: ipam_prefix; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_prefix ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + network bytea NOT NULL, + broadcast bytea NOT NULL, + prefix_length integer NOT NULL, + is_pool boolean NOT NULL, + description character varying(200) NOT NULL, + role_id uuid, + site_id uuid, + status_id uuid, + tenant_id uuid, + vlan_id uuid, + vrf_id uuid, + location_id uuid +); + + +ALTER TABLE public.ipam_prefix OWNER TO nautobot; + +-- +-- Name: ipam_rir; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_rir ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + is_private boolean NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.ipam_rir OWNER TO nautobot; + +-- +-- Name: ipam_role; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_role ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + weight smallint NOT NULL, + description character varying(200) NOT NULL, + CONSTRAINT ipam_role_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.ipam_role OWNER TO nautobot; + +-- +-- Name: ipam_routetarget; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_routetarget ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(21) NOT NULL, + description character varying(200) NOT NULL, + tenant_id uuid +); + + +ALTER TABLE public.ipam_routetarget OWNER TO nautobot; + +-- +-- Name: ipam_service; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_service ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + protocol character varying(50) NOT NULL, + ports jsonb NOT NULL, + description character varying(200) NOT NULL, + device_id uuid, + virtual_machine_id uuid +); + + +ALTER TABLE public.ipam_service OWNER TO nautobot; + +-- +-- Name: ipam_service_ipaddresses; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_service_ipaddresses ( + id bigint NOT NULL, + service_id uuid NOT NULL, + ipaddress_id uuid NOT NULL +); + + +ALTER TABLE public.ipam_service_ipaddresses OWNER TO nautobot; + +-- +-- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.ipam_service_ipaddresses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ipam_service_ipaddresses_id_seq OWNER TO nautobot; + +-- +-- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.ipam_service_ipaddresses_id_seq OWNED BY public.ipam_service_ipaddresses.id; + + +-- +-- Name: ipam_vlan; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_vlan ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + vid smallint NOT NULL, + name character varying(255) NOT NULL, + description character varying(200) NOT NULL, + group_id uuid, + role_id uuid, + site_id uuid, + status_id uuid, + tenant_id uuid, + location_id uuid, + CONSTRAINT ipam_vlan_vid_check CHECK ((vid >= 0)) +); + + +ALTER TABLE public.ipam_vlan OWNER TO nautobot; + +-- +-- Name: ipam_vlangroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_vlangroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + site_id uuid, + location_id uuid +); + + +ALTER TABLE public.ipam_vlangroup OWNER TO nautobot; + +-- +-- Name: ipam_vrf; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_vrf ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + rd character varying(21), + enforce_unique boolean NOT NULL, + description character varying(200) NOT NULL, + tenant_id uuid +); + + +ALTER TABLE public.ipam_vrf OWNER TO nautobot; + +-- +-- Name: ipam_vrf_export_targets; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_vrf_export_targets ( + id bigint NOT NULL, + vrf_id uuid NOT NULL, + routetarget_id uuid NOT NULL +); + + +ALTER TABLE public.ipam_vrf_export_targets OWNER TO nautobot; + +-- +-- Name: ipam_vrf_export_targets_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.ipam_vrf_export_targets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ipam_vrf_export_targets_id_seq OWNER TO nautobot; + +-- +-- Name: ipam_vrf_export_targets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.ipam_vrf_export_targets_id_seq OWNED BY public.ipam_vrf_export_targets.id; + + +-- +-- Name: ipam_vrf_import_targets; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.ipam_vrf_import_targets ( + id bigint NOT NULL, + vrf_id uuid NOT NULL, + routetarget_id uuid NOT NULL +); + + +ALTER TABLE public.ipam_vrf_import_targets OWNER TO nautobot; + +-- +-- Name: ipam_vrf_import_targets_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.ipam_vrf_import_targets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.ipam_vrf_import_targets_id_seq OWNER TO nautobot; + +-- +-- Name: ipam_vrf_import_targets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.ipam_vrf_import_targets_id_seq OWNED BY public.ipam_vrf_import_targets.id; + + +-- +-- Name: nautobot_bgp_models_addressfamily; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_addressfamily ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + afi_safi character varying(64) NOT NULL, + import_policy character varying(100) NOT NULL, + export_policy character varying(100) NOT NULL, + multipath boolean, + routing_instance_id uuid NOT NULL, + vrf_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_addressfamily OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_autonomoussystem; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_autonomoussystem ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + asn bigint NOT NULL, + description character varying(200) NOT NULL, + provider_id uuid, + status_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_autonomoussystem OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_bgproutinginstance; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_bgproutinginstance ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + extra_attributes jsonb, + description character varying(200) NOT NULL, + autonomous_system_id uuid NOT NULL, + device_id uuid NOT NULL, + router_id_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_bgproutinginstance OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_peerendpoint; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_peerendpoint ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + extra_attributes jsonb, + description character varying(200) NOT NULL, + enabled boolean NOT NULL, + import_policy character varying(100) NOT NULL, + export_policy character varying(100) NOT NULL, + autonomous_system_id uuid, + peer_id uuid, + peer_group_id uuid, + peering_id uuid NOT NULL, + role_id uuid, + routing_instance_id uuid, + secret_id uuid, + source_interface_id uuid, + source_ip_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_peerendpoint OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_peergroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_peergroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + extra_attributes jsonb, + name character varying(100) NOT NULL, + description character varying(200) NOT NULL, + enabled boolean NOT NULL, + import_policy character varying(100) NOT NULL, + export_policy character varying(100) NOT NULL, + autonomous_system_id uuid, + role_id uuid, + routing_instance_id uuid NOT NULL, + secret_id uuid, + source_interface_id uuid, + source_ip_id uuid, + template_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_peergroup OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_peergrouptemplate; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_peergrouptemplate ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + extra_attributes jsonb, + name character varying(100) NOT NULL, + enabled boolean NOT NULL, + description character varying(200) NOT NULL, + import_policy character varying(100) NOT NULL, + export_policy character varying(100) NOT NULL, + autonomous_system_id uuid, + role_id uuid, + secret_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_peergrouptemplate OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_peering; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_peering ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_bgp_models_peering OWNER TO nautobot; + +-- +-- Name: nautobot_bgp_models_peeringrole; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_bgp_models_peeringrole ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + color character varying(6) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.nautobot_bgp_models_peeringrole OWNER TO nautobot; + +-- +-- Name: nautobot_chatops_accessgrant; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_chatops_accessgrant ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + command character varying(64) NOT NULL, + subcommand character varying(64) NOT NULL, + grant_type character varying(32) NOT NULL, + name character varying(255) NOT NULL, + value character varying(255) NOT NULL +); + + +ALTER TABLE public.nautobot_chatops_accessgrant OWNER TO nautobot; + +-- +-- Name: nautobot_chatops_commandlog; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_chatops_commandlog ( + id uuid NOT NULL, + start_time timestamp with time zone, + runtime interval, + user_name character varying(255) NOT NULL, + user_id character varying(255) NOT NULL, + platform character varying(64) NOT NULL, + platform_color character varying(6) NOT NULL, + command character varying(64) NOT NULL, + subcommand character varying(64) NOT NULL, + status character varying(32) NOT NULL, + details character varying(255) NOT NULL, + params jsonb NOT NULL +); + + +ALTER TABLE public.nautobot_chatops_commandlog OWNER TO nautobot; + +-- +-- Name: nautobot_chatops_commandtoken; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_chatops_commandtoken ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + comment character varying(255) NOT NULL, + platform character varying(32) NOT NULL, + token character varying(255) NOT NULL +); + + +ALTER TABLE public.nautobot_chatops_commandtoken OWNER TO nautobot; + +-- +-- Name: nautobot_data_validation_engine_datacompliance; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_data_validation_engine_datacompliance ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + compliance_class_name character varying(100) NOT NULL, + last_validation_date timestamp with time zone NOT NULL, + object_id character varying(200) NOT NULL, + validated_object_str character varying(200), + validated_attribute character varying(100), + validated_attribute_value character varying(200), + valid boolean NOT NULL, + message text, + content_type_id integer NOT NULL +); + + +ALTER TABLE public.nautobot_data_validation_engine_datacompliance OWNER TO nautobot; + +-- +-- Name: nautobot_data_validation_engine_minmaxvalidationrule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_data_validation_engine_minmaxvalidationrule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + enabled boolean NOT NULL, + error_message character varying(255), + field character varying(50) NOT NULL, + min double precision, + max double precision, + content_type_id integer NOT NULL, + _custom_field_data jsonb NOT NULL +); + + +ALTER TABLE public.nautobot_data_validation_engine_minmaxvalidationrule OWNER TO nautobot; + +-- +-- Name: nautobot_data_validation_engine_regularexpressionvalidationrule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_data_validation_engine_regularexpressionvalidationrule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + enabled boolean NOT NULL, + error_message character varying(255), + field character varying(50) NOT NULL, + regular_expression text NOT NULL, + content_type_id integer NOT NULL, + _custom_field_data jsonb NOT NULL, + context_processing boolean NOT NULL +); + + +ALTER TABLE public.nautobot_data_validation_engine_regularexpressionvalidationrule OWNER TO nautobot; + +-- +-- Name: nautobot_data_validation_engine_requiredvalidationrule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_data_validation_engine_requiredvalidationrule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + enabled boolean NOT NULL, + error_message character varying(255), + field character varying(50) NOT NULL, + content_type_id integer NOT NULL +); + + +ALTER TABLE public.nautobot_data_validation_engine_requiredvalidationrule OWNER TO nautobot; + +-- +-- Name: nautobot_data_validation_engine_uniquevalidationrule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_data_validation_engine_uniquevalidationrule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + enabled boolean NOT NULL, + error_message character varying(255), + field character varying(50) NOT NULL, + max_instances integer NOT NULL, + content_type_id integer NOT NULL, + CONSTRAINT nautobot_data_validation_engine_uniquevalid_max_instances_check CHECK ((max_instances >= 0)) +); + + +ALTER TABLE public.nautobot_data_validation_engine_uniquevalidationrule OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_contactlcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_contactlcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(80), + address character varying(200) NOT NULL, + phone character varying(20) NOT NULL, + email character varying(254) NOT NULL, + comments text NOT NULL, + priority integer NOT NULL, + type character varying(50) NOT NULL, + contract_id uuid, + CONSTRAINT nautobot_device_lifecycle_mgmt_contactlcm_priority_check CHECK ((priority >= 0)) +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_contactlcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_contractlcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_contractlcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + number character varying(100), + start date, + "end" date, + cost numeric(15,2), + support_level character varying(64), + currency character varying(4), + contract_type character varying(32), + comments text NOT NULL, + provider_id uuid +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_contractlcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_cvelcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_cvelcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(16) NOT NULL, + published_date date NOT NULL, + link character varying(200) NOT NULL, + description character varying(255), + severity character varying(50) NOT NULL, + cvss double precision, + cvss_v2 double precision, + cvss_v3 double precision, + fix character varying(255), + comments text NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_cvelcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace ( + id bigint NOT NULL, + devicesoftwarevalidationresult_id uuid NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + is_validated boolean, + last_run timestamp with time zone, + run_type character varying(50) NOT NULL, + device_id uuid NOT NULL, + software_id uuid +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_hardwarelcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_hardwarelcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + inventory_item character varying(255), + release_date date, + end_of_sale date, + end_of_support date, + end_of_sw_releases date, + end_of_security_patches date, + documentation_url character varying(200) NOT NULL, + comments text, + device_type_id uuid, + CONSTRAINT "At least one of InventoryItem or DeviceType specified." CHECK ((((device_type_id IS NOT NULL) AND (inventory_item IS NULL)) OR ((device_type_id IS NULL) AND (inventory_item IS NOT NULL)))), + CONSTRAINT "End of Sale or End of Support must be specified." CHECK (((end_of_sale IS NOT NULL) OR (end_of_support IS NOT NULL))) +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_hardwarelcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 ( + id bigint NOT NULL, + inventoryitemsoftwarevalidationresult_id uuid NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + is_validated boolean, + last_run timestamp with time zone, + run_type character varying(50) NOT NULL, + inventory_item_id uuid NOT NULL, + software_id uuid +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_providerlcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_providerlcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + description character varying(200) NOT NULL, + physical_address character varying(200) NOT NULL, + country character varying(3) NOT NULL, + phone character varying(20) NOT NULL, + email character varying(254) NOT NULL, + portal_url character varying(200) NOT NULL, + comments text NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_providerlcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + image_file_name character varying(100) NOT NULL, + download_url character varying(200) NOT NULL, + image_file_checksum character varying(256) NOT NULL, + default_image boolean NOT NULL, + software_id uuid NOT NULL, + hashing_algorithm character varying(32) NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types ( + id bigint NOT NULL, + softwareimagelcm_id uuid NOT NULL, + devicetype_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items ( + id bigint NOT NULL, + softwareimagelcm_id uuid NOT NULL, + inventoryitem_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags ( + id bigint NOT NULL, + softwareimagelcm_id uuid NOT NULL, + tag_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwarelcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_softwarelcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + version character varying(50) NOT NULL, + alias character varying(50), + release_date date, + end_of_support date, + documentation_url character varying(200) NOT NULL, + long_term_support boolean NOT NULL, + pre_release boolean NOT NULL, + device_platform_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_softwarelcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + start date NOT NULL, + "end" date, + preferred boolean NOT NULL, + software_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc ( + id bigint NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL, + devicetype_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1 OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1 OWNED BY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices ( + id bigint NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL, + device_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2 + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2 OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2 OWNED BY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc ( + id bigint NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL, + devicerole_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b ( + id bigint NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL, + inventoryitem_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags ( + id bigint NOT NULL, + validatedsoftwarelcm_id uuid NOT NULL, + tag_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq OWNER TO nautobot; + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq OWNED BY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags.id; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + cve_id uuid, + device_id uuid, + inventory_item_id uuid, + software_id uuid, + status_id uuid +); + + +ALTER TABLE public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm OWNER TO nautobot; + +-- +-- Name: nautobot_device_onboarding_onboardingdevice; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_onboarding_onboardingdevice ( + id uuid NOT NULL, + enabled boolean NOT NULL, + device_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_device_onboarding_onboardingdevice OWNER TO nautobot; + +-- +-- Name: nautobot_device_onboarding_onboardingtask; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_device_onboarding_onboardingtask ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + ip_address character varying(255), + device_type character varying(255), + status character varying(255) NOT NULL, + failed_reason character varying(255), + message character varying(511) NOT NULL, + port smallint NOT NULL, + timeout smallint NOT NULL, + created_device_id uuid, + platform_id uuid, + role_id uuid, + site_id uuid, + label integer NOT NULL, + CONSTRAINT nautobot_device_onboarding_onboardingtask_label_check CHECK ((label >= 0)), + CONSTRAINT nautobot_device_onboarding_onboardingtask_port_check CHECK ((port >= 0)), + CONSTRAINT nautobot_device_onboarding_onboardingtask_timeout_check CHECK ((timeout >= 0)) +); + + +ALTER TABLE public.nautobot_device_onboarding_onboardingtask OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_addressobject; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_addressobject ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + fqdn_id uuid, + ip_address_id uuid, + ip_range_id uuid, + prefix_id uuid, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_addressobject OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_addressobjectgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_addressobjectgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_addressobjectgroup OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_addressobjectgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_addressobjectgroupm2m ( + id uuid NOT NULL, + address_id uuid NOT NULL, + address_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_addressobjectgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_applicationgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_applicationgroupm2m ( + id uuid NOT NULL, + app_group_id uuid NOT NULL, + pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_applicationgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_applicationm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_applicationm2m ( + id uuid NOT NULL, + app_id uuid NOT NULL, + pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_applicationm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_applicationobject; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_applicationobject ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200), + category character varying(48), + subcategory character varying(48), + technology character varying(48), + risk integer, + default_type character varying(48), + name character varying(100) NOT NULL, + default_ip_protocol character varying(48), + status_id uuid, + CONSTRAINT nautobot_firewall_models_applicationobject_risk_check CHECK ((risk >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_applicationobject OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_applicationobjectgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_applicationobjectgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200), + name character varying(100) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_applicationobjectgroup OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_applicationobjectgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_applicationobjectgroupm2m ( + id uuid NOT NULL, + application_id uuid NOT NULL, + application_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_applicationobjectgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_capircapolicy; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_capircapolicy ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + pol text, + net text, + svc text, + cfg text, + device_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_capircapolicy OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_destaddrgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_destaddrgroupm2m ( + id uuid NOT NULL, + addr_group_id uuid NOT NULL, + pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_destaddrgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_destaddrm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_destaddrm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_destaddrm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_destsvcgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_destsvcgroupm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + svc_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_destsvcgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_destsvcm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_destsvcm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + svc_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_destsvcm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_fqdn; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_fqdn ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(254) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_fqdn OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_fqdnipaddressm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_fqdnipaddressm2m ( + id uuid NOT NULL, + fqdn_id uuid NOT NULL, + ip_address_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_fqdnipaddressm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_iprange; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_iprange ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + start_address bytea NOT NULL, + end_address bytea NOT NULL, + description character varying(200) NOT NULL, + size integer NOT NULL, + status_id uuid, + vrf_id uuid, + CONSTRAINT nautobot_firewall_models_iprange_size_check CHECK ((size >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_iprange OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigdestaddrgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigdestaddrgroupm2m ( + id uuid NOT NULL, + addr_group_id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigdestaddrgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigdestaddrm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigdestaddrm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigdestaddrm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigdestsvcgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigdestsvcgroupm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigdestsvcgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigdestsvcm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigdestsvcm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigdestsvcm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigsrcaddrgroupm2m ( + id uuid NOT NULL, + addr_group_id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigsrcaddrgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigsrcaddrm2m ( + id uuid NOT NULL, + addr_id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigsrcaddrm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigsrcsvcgroupm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigsrcsvcgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natorigsrcsvcm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natorigsrcsvcm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natpolicy; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natpolicy ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid, + tenant_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_natpolicy OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natpolicydevicem2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natpolicydevicem2m ( + id uuid NOT NULL, + weight smallint NOT NULL, + device_id uuid NOT NULL, + nat_policy_id uuid NOT NULL, + CONSTRAINT nautobot_firewall_models_natpolicydevicem2m_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_natpolicydevicem2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natpolicydynamicgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natpolicydynamicgroupm2m ( + id uuid NOT NULL, + weight smallint NOT NULL, + dynamic_group_id uuid NOT NULL, + nat_policy_id uuid NOT NULL, + CONSTRAINT nautobot_firewall_models_natpolicydynamicgroupm2m_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_natpolicydynamicgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natpolicynatrulem2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natpolicynatrulem2m ( + id uuid NOT NULL, + nat_policy_id uuid NOT NULL, + nat_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natpolicynatrulem2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natpolicyrule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natpolicyrule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + remark boolean NOT NULL, + log boolean NOT NULL, + request_id character varying(100), + description character varying(200), + index smallint, + destination_zone_id uuid, + source_zone_id uuid, + status_id uuid, + CONSTRAINT nautobot_firewall_models_natpolicyrule_index_check CHECK ((index >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_natpolicyrule OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natpolicyrulem2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natpolicyrulem2m ( + id uuid NOT NULL, + nat_policy_id uuid NOT NULL, + nat_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natpolicyrulem2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natsrcusergroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natsrcusergroupm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + user_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natsrcusergroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_natsrcuserm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_natsrcuserm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_natsrcuserm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattransdestaddrgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattransdestaddrgroupm2m ( + id uuid NOT NULL, + addr_group_id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattransdestaddrgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattransdestaddrm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattransdestaddrm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattransdestaddrm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattransdestsvcgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattransdestsvcgroupm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattransdestsvcgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattransdestsvcm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattransdestsvcm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattransdestsvcm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattranssrcaddrgroupm2m ( + id uuid NOT NULL, + addr_group_id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattranssrcaddrgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattranssrcaddrm2m ( + id uuid NOT NULL, + addr_id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattranssrcaddrm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattranssrcsvcgroupm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattranssrcsvcgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_nattranssrcsvcm2m ( + id uuid NOT NULL, + nat_pol_rule_id uuid NOT NULL, + svc_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_nattranssrcsvcm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_policy; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_policy ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid, + tenant_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_policy OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_policydevicem2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_policydevicem2m ( + id uuid NOT NULL, + weight smallint NOT NULL, + device_id uuid NOT NULL, + policy_id uuid NOT NULL, + CONSTRAINT nautobot_firewall_models_policydevicem2m_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_policydevicem2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_policydynamicgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_policydynamicgroupm2m ( + id uuid NOT NULL, + weight smallint NOT NULL, + dynamic_group_id uuid NOT NULL, + policy_id uuid NOT NULL, + CONSTRAINT nautobot_firewall_models_policydynamicgroupm2m_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_policydynamicgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_policyrule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_policyrule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + action character varying(20) NOT NULL, + log boolean NOT NULL, + request_id character varying(100), + destination_zone_id uuid, + source_zone_id uuid, + status_id uuid, + description character varying(200), + index smallint, + CONSTRAINT nautobot_firewall_models_policyrule_index_check CHECK ((index >= 0)) +); + + +ALTER TABLE public.nautobot_firewall_models_policyrule OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_policyrulem2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_policyrulem2m ( + id uuid NOT NULL, + policy_id uuid NOT NULL, + rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_policyrulem2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_serviceobject; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_serviceobject ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + port character varying(20), + ip_protocol character varying(20) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_serviceobject OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_serviceobjectgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_serviceobjectgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_serviceobjectgroup OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_serviceobjectgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_serviceobjectgroupm2m ( + id uuid NOT NULL, + service_id uuid NOT NULL, + service_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_serviceobjectgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_srcaddrgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_srcaddrgroupm2m ( + id uuid NOT NULL, + addr_group_id uuid NOT NULL, + pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_srcaddrgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_srcaddrm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_srcaddrm2m ( + id uuid NOT NULL, + addr_id uuid NOT NULL, + pol_rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_srcaddrm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_srcsvcgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_srcsvcgroupm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + svc_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_srcsvcgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_srcsvcm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_srcsvcm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + svc_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_srcsvcm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_srcusergroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_srcusergroupm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + user_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_srcusergroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_srcuserm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_srcuserm2m ( + id uuid NOT NULL, + pol_rule_id uuid NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_srcuserm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_userobject; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_userobject ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + username character varying(100) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_userobject OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_userobjectgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_userobjectgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_userobjectgroup OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_userobjectgroupm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_userobjectgroupm2m ( + id uuid NOT NULL, + user_id uuid NOT NULL, + user_group_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_userobjectgroupm2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_zone; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_zone ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + status_id uuid +); + + +ALTER TABLE public.nautobot_firewall_models_zone OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_zoneinterfacem2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_zoneinterfacem2m ( + id uuid NOT NULL, + interface_id uuid NOT NULL, + zone_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_zoneinterfacem2m OWNER TO nautobot; + +-- +-- Name: nautobot_firewall_models_zonevrfm2m; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_firewall_models_zonevrfm2m ( + id uuid NOT NULL, + vrf_id uuid NOT NULL, + zone_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_firewall_models_zonevrfm2m OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_compliancefeature; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_compliancefeature ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.nautobot_golden_config_compliancefeature OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_compliancerule; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_compliancerule ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + description character varying(200) NOT NULL, + config_ordered boolean NOT NULL, + match_config text, + config_type character varying(20) NOT NULL, + feature_id uuid NOT NULL, + platform_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_golden_config_compliancerule OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_configcompliance; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_configcompliance ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + compliance boolean, + actual jsonb NOT NULL, + intended jsonb NOT NULL, + missing jsonb NOT NULL, + extra jsonb NOT NULL, + ordered boolean NOT NULL, + compliance_int integer, + device_id uuid NOT NULL, + rule_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_golden_config_configcompliance OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_configremove; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_configremove ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(255) NOT NULL, + description character varying(200) NOT NULL, + regex character varying(200) NOT NULL, + platform_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_golden_config_configremove OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_configreplace; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_configreplace ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(255) NOT NULL, + description character varying(200) NOT NULL, + regex character varying(200) NOT NULL, + replace character varying(200) NOT NULL, + platform_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_golden_config_configreplace OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_goldenconfig; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_goldenconfig ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + backup_config text NOT NULL, + backup_last_attempt_date timestamp with time zone, + backup_last_success_date timestamp with time zone, + intended_config text NOT NULL, + intended_last_attempt_date timestamp with time zone, + intended_last_success_date timestamp with time zone, + compliance_config text NOT NULL, + compliance_last_attempt_date timestamp with time zone, + compliance_last_success_date timestamp with time zone, + device_id uuid NOT NULL +); + + +ALTER TABLE public.nautobot_golden_config_goldenconfig OWNER TO nautobot; + +-- +-- Name: nautobot_golden_config_goldenconfigsetting; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_golden_config_goldenconfigsetting ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + backup_path_template character varying(255) NOT NULL, + intended_path_template character varying(255) NOT NULL, + jinja_path_template character varying(255) NOT NULL, + backup_test_connectivity boolean NOT NULL, + jinja_repository_id uuid, + description character varying(200) NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + weight smallint NOT NULL, + backup_repository_id uuid, + intended_repository_id uuid, + sot_agg_query_id uuid, + dynamic_group_id uuid NOT NULL, + CONSTRAINT nautobot_golden_config_goldenconfigsetting_weight_check CHECK ((weight >= 0)) +); + + +ALTER TABLE public.nautobot_golden_config_goldenconfigsetting OWNER TO nautobot; + +-- +-- Name: nautobot_ssot_sync; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_ssot_sync ( + id uuid NOT NULL, + source character varying(64) NOT NULL, + target character varying(64) NOT NULL, + start_time timestamp with time zone, + dry_run boolean NOT NULL, + diff jsonb NOT NULL, + job_result_id uuid, + diff_memory_final bigint, + diff_memory_peak bigint, + diff_time interval, + source_load_memory_final bigint, + source_load_memory_peak bigint, + source_load_time interval, + sync_memory_final bigint, + sync_memory_peak bigint, + sync_time interval, + target_load_memory_final bigint, + target_load_memory_peak bigint, + target_load_time interval, + summary jsonb, + CONSTRAINT nautobot_ssot_sync_diff_memory_final_check CHECK ((diff_memory_final >= 0)), + CONSTRAINT nautobot_ssot_sync_diff_memory_peak_check CHECK ((diff_memory_peak >= 0)), + CONSTRAINT nautobot_ssot_sync_source_load_memory_final_check CHECK ((source_load_memory_final >= 0)), + CONSTRAINT nautobot_ssot_sync_source_load_memory_peak_check CHECK ((source_load_memory_peak >= 0)), + CONSTRAINT nautobot_ssot_sync_sync_memory_final_check CHECK ((sync_memory_final >= 0)), + CONSTRAINT nautobot_ssot_sync_sync_memory_peak_check CHECK ((sync_memory_peak >= 0)), + CONSTRAINT nautobot_ssot_sync_target_load_memory_final_check CHECK ((target_load_memory_final >= 0)), + CONSTRAINT nautobot_ssot_sync_target_load_memory_peak_check CHECK ((target_load_memory_peak >= 0)) +); + + +ALTER TABLE public.nautobot_ssot_sync OWNER TO nautobot; + +-- +-- Name: nautobot_ssot_synclogentry; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.nautobot_ssot_synclogentry ( + id uuid NOT NULL, + "timestamp" timestamp with time zone NOT NULL, + action character varying(32) NOT NULL, + status character varying(32) NOT NULL, + diff jsonb, + synced_object_id uuid, + object_repr text NOT NULL, + message text NOT NULL, + sync_id uuid NOT NULL, + synced_object_type_id integer +); + + +ALTER TABLE public.nautobot_ssot_synclogentry OWNER TO nautobot; + +-- +-- Name: social_auth_association; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.social_auth_association ( + id integer NOT NULL, + server_url character varying(255) NOT NULL, + handle character varying(255) NOT NULL, + secret character varying(255) NOT NULL, + issued integer NOT NULL, + lifetime integer NOT NULL, + assoc_type character varying(64) NOT NULL +); + + +ALTER TABLE public.social_auth_association OWNER TO nautobot; + +-- +-- Name: social_auth_association_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.social_auth_association_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.social_auth_association_id_seq OWNER TO nautobot; + +-- +-- Name: social_auth_association_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.social_auth_association_id_seq OWNED BY public.social_auth_association.id; + + +-- +-- Name: social_auth_code; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.social_auth_code ( + id integer NOT NULL, + email character varying(254) NOT NULL, + code character varying(32) NOT NULL, + verified boolean NOT NULL, + "timestamp" timestamp with time zone NOT NULL +); + + +ALTER TABLE public.social_auth_code OWNER TO nautobot; + +-- +-- Name: social_auth_code_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.social_auth_code_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.social_auth_code_id_seq OWNER TO nautobot; + +-- +-- Name: social_auth_code_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.social_auth_code_id_seq OWNED BY public.social_auth_code.id; + + +-- +-- Name: social_auth_nonce; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.social_auth_nonce ( + id integer NOT NULL, + server_url character varying(255) NOT NULL, + "timestamp" integer NOT NULL, + salt character varying(65) NOT NULL +); + + +ALTER TABLE public.social_auth_nonce OWNER TO nautobot; + +-- +-- Name: social_auth_nonce_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.social_auth_nonce_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.social_auth_nonce_id_seq OWNER TO nautobot; + +-- +-- Name: social_auth_nonce_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.social_auth_nonce_id_seq OWNED BY public.social_auth_nonce.id; + + +-- +-- Name: social_auth_partial; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.social_auth_partial ( + id integer NOT NULL, + token character varying(32) NOT NULL, + next_step smallint NOT NULL, + backend character varying(32) NOT NULL, + data text NOT NULL, + "timestamp" timestamp with time zone NOT NULL, + CONSTRAINT social_auth_partial_next_step_check CHECK ((next_step >= 0)) +); + + +ALTER TABLE public.social_auth_partial OWNER TO nautobot; + +-- +-- Name: social_auth_partial_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.social_auth_partial_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.social_auth_partial_id_seq OWNER TO nautobot; + +-- +-- Name: social_auth_partial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.social_auth_partial_id_seq OWNED BY public.social_auth_partial.id; + + +-- +-- Name: social_auth_usersocialauth; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.social_auth_usersocialauth ( + id integer NOT NULL, + provider character varying(32) NOT NULL, + uid character varying(255) NOT NULL, + extra_data text NOT NULL, + user_id uuid NOT NULL, + created timestamp with time zone NOT NULL, + modified timestamp with time zone NOT NULL +); + + +ALTER TABLE public.social_auth_usersocialauth OWNER TO nautobot; + +-- +-- Name: social_auth_usersocialauth_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.social_auth_usersocialauth_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.social_auth_usersocialauth_id_seq OWNER TO nautobot; + +-- +-- Name: social_auth_usersocialauth_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.social_auth_usersocialauth_id_seq OWNED BY public.social_auth_usersocialauth.id; + + +-- +-- Name: taggit_tag; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.taggit_tag ( + id integer NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL +); + + +ALTER TABLE public.taggit_tag OWNER TO nautobot; + +-- +-- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.taggit_tag_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.taggit_tag_id_seq OWNER TO nautobot; + +-- +-- Name: taggit_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.taggit_tag_id_seq OWNED BY public.taggit_tag.id; + + +-- +-- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.taggit_taggeditem ( + id integer NOT NULL, + object_id integer NOT NULL, + content_type_id integer NOT NULL, + tag_id integer NOT NULL +); + + +ALTER TABLE public.taggit_taggeditem OWNER TO nautobot; + +-- +-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.taggit_taggeditem_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.taggit_taggeditem_id_seq OWNER TO nautobot; + +-- +-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.taggit_taggeditem_id_seq OWNED BY public.taggit_taggeditem.id; + + +-- +-- Name: tenancy_tenant; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.tenancy_tenant ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + comments text NOT NULL, + group_id uuid +); + + +ALTER TABLE public.tenancy_tenant OWNER TO nautobot; + +-- +-- Name: tenancy_tenantgroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.tenancy_tenantgroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL, + lft integer NOT NULL, + rght integer NOT NULL, + tree_id integer NOT NULL, + level integer NOT NULL, + parent_id uuid, + CONSTRAINT tenancy_tenantgroup_level_check CHECK ((level >= 0)), + CONSTRAINT tenancy_tenantgroup_lft_check CHECK ((lft >= 0)), + CONSTRAINT tenancy_tenantgroup_rght_check CHECK ((rght >= 0)), + CONSTRAINT tenancy_tenantgroup_tree_id_check CHECK ((tree_id >= 0)) +); + + +ALTER TABLE public.tenancy_tenantgroup OWNER TO nautobot; + +-- +-- Name: users_objectpermission; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.users_objectpermission ( + id uuid NOT NULL, + name character varying(100) NOT NULL, + description character varying(200) NOT NULL, + enabled boolean NOT NULL, + actions jsonb NOT NULL, + constraints jsonb +); + + +ALTER TABLE public.users_objectpermission OWNER TO nautobot; + +-- +-- Name: users_objectpermission_groups; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.users_objectpermission_groups ( + id bigint NOT NULL, + objectpermission_id uuid NOT NULL, + group_id integer NOT NULL +); + + +ALTER TABLE public.users_objectpermission_groups OWNER TO nautobot; + +-- +-- Name: users_objectpermission_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.users_objectpermission_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.users_objectpermission_groups_id_seq OWNER TO nautobot; + +-- +-- Name: users_objectpermission_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.users_objectpermission_groups_id_seq OWNED BY public.users_objectpermission_groups.id; + + +-- +-- Name: users_objectpermission_object_types; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.users_objectpermission_object_types ( + id bigint NOT NULL, + objectpermission_id uuid NOT NULL, + contenttype_id integer NOT NULL +); + + +ALTER TABLE public.users_objectpermission_object_types OWNER TO nautobot; + +-- +-- Name: users_objectpermission_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.users_objectpermission_object_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.users_objectpermission_object_types_id_seq OWNER TO nautobot; + +-- +-- Name: users_objectpermission_object_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.users_objectpermission_object_types_id_seq OWNED BY public.users_objectpermission_object_types.id; + + +-- +-- Name: users_objectpermission_users; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.users_objectpermission_users ( + id bigint NOT NULL, + objectpermission_id uuid NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.users_objectpermission_users OWNER TO nautobot; + +-- +-- Name: users_objectpermission_users_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.users_objectpermission_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.users_objectpermission_users_id_seq OWNER TO nautobot; + +-- +-- Name: users_objectpermission_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.users_objectpermission_users_id_seq OWNED BY public.users_objectpermission_users.id; + + +-- +-- Name: users_token; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.users_token ( + id uuid NOT NULL, + created timestamp with time zone NOT NULL, + expires timestamp with time zone, + key character varying(40) NOT NULL, + write_enabled boolean NOT NULL, + description character varying(200) NOT NULL, + user_id uuid NOT NULL +); + + +ALTER TABLE public.users_token OWNER TO nautobot; + +-- +-- Name: virtualization_cluster; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.virtualization_cluster ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + comments text NOT NULL, + group_id uuid, + site_id uuid, + tenant_id uuid, + type_id uuid NOT NULL, + location_id uuid +); + + +ALTER TABLE public.virtualization_cluster OWNER TO nautobot; + +-- +-- Name: virtualization_clustergroup; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.virtualization_clustergroup ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.virtualization_clustergroup OWNER TO nautobot; + +-- +-- Name: virtualization_clustertype; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.virtualization_clustertype ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + name character varying(100) NOT NULL, + slug character varying(100) NOT NULL, + description character varying(200) NOT NULL +); + + +ALTER TABLE public.virtualization_clustertype OWNER TO nautobot; + +-- +-- Name: virtualization_virtualmachine; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.virtualization_virtualmachine ( + id uuid NOT NULL, + created date, + last_updated timestamp with time zone, + _custom_field_data jsonb NOT NULL, + local_context_data jsonb, + local_context_data_owner_object_id uuid, + name character varying(64) NOT NULL, + vcpus smallint, + memory integer, + disk integer, + comments text NOT NULL, + cluster_id uuid NOT NULL, + local_context_data_owner_content_type_id integer, + platform_id uuid, + primary_ip4_id uuid, + primary_ip6_id uuid, + role_id uuid, + status_id uuid, + tenant_id uuid, + local_context_schema_id uuid, + CONSTRAINT virtualization_virtualmachine_disk_check CHECK ((disk >= 0)), + CONSTRAINT virtualization_virtualmachine_memory_check CHECK ((memory >= 0)), + CONSTRAINT virtualization_virtualmachine_vcpus_check CHECK ((vcpus >= 0)) +); + + +ALTER TABLE public.virtualization_virtualmachine OWNER TO nautobot; + +-- +-- Name: virtualization_vminterface; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.virtualization_vminterface ( + id uuid NOT NULL, + _custom_field_data jsonb NOT NULL, + enabled boolean NOT NULL, + mac_address character varying(18), + mtu integer, + mode character varying(50) NOT NULL, + name character varying(64) NOT NULL, + _name character varying(100) NOT NULL, + description character varying(200) NOT NULL, + untagged_vlan_id uuid, + virtual_machine_id uuid NOT NULL, + status_id uuid, + parent_interface_id uuid, + bridge_id uuid, + CONSTRAINT virtualization_vminterface_mtu_check CHECK ((mtu >= 0)) +); + + +ALTER TABLE public.virtualization_vminterface OWNER TO nautobot; + +-- +-- Name: virtualization_vminterface_tagged_vlans; Type: TABLE; Schema: public; Owner: nautobot +-- + +CREATE TABLE public.virtualization_vminterface_tagged_vlans ( + id bigint NOT NULL, + vminterface_id uuid NOT NULL, + vlan_id uuid NOT NULL +); + + +ALTER TABLE public.virtualization_vminterface_tagged_vlans OWNER TO nautobot; + +-- +-- Name: virtualization_vminterface_tagged_vlans_id_seq; Type: SEQUENCE; Schema: public; Owner: nautobot +-- + +CREATE SEQUENCE public.virtualization_vminterface_tagged_vlans_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.virtualization_vminterface_tagged_vlans_id_seq OWNER TO nautobot; + +-- +-- Name: virtualization_vminterface_tagged_vlans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: nautobot +-- + +ALTER SEQUENCE public.virtualization_vminterface_tagged_vlans_id_seq OWNED BY public.virtualization_vminterface_tagged_vlans.id; + + +-- +-- Name: auth_group id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group ALTER COLUMN id SET DEFAULT nextval('public.auth_group_id_seq'::regclass); + + +-- +-- Name: auth_group_permissions id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_group_permissions_id_seq'::regclass); + + +-- +-- Name: auth_permission id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_permission ALTER COLUMN id SET DEFAULT nextval('public.auth_permission_id_seq'::regclass); + + +-- +-- Name: auth_user_groups id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_groups ALTER COLUMN id SET DEFAULT nextval('public.auth_user_groups_id_seq'::regclass); + + +-- +-- Name: auth_user_user_permissions id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_user_permissions ALTER COLUMN id SET DEFAULT nextval('public.auth_user_user_permissions_id_seq'::regclass); + + +-- +-- Name: constance_config id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.constance_config ALTER COLUMN id SET DEFAULT nextval('public.constance_config_id_seq'::regclass); + + +-- +-- Name: dcim_interface_tagged_vlans id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface_tagged_vlans ALTER COLUMN id SET DEFAULT nextval('public.dcim_interface_tagged_vlans_id_seq'::regclass); + + +-- +-- Name: dcim_locationtype_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype_content_types ALTER COLUMN id SET DEFAULT nextval('public.dcim_locationtype_content_types_id_seq'::regclass); + + +-- +-- Name: django_admin_log id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_admin_log ALTER COLUMN id SET DEFAULT nextval('public.django_admin_log_id_seq'::regclass); + + +-- +-- Name: django_celery_beat_clockedschedule id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_clockedschedule ALTER COLUMN id SET DEFAULT nextval('public.django_celery_beat_clockedschedule_id_seq'::regclass); + + +-- +-- Name: django_celery_beat_crontabschedule id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_crontabschedule ALTER COLUMN id SET DEFAULT nextval('public.django_celery_beat_crontabschedule_id_seq'::regclass); + + +-- +-- Name: django_celery_beat_intervalschedule id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_intervalschedule ALTER COLUMN id SET DEFAULT nextval('public.django_celery_beat_intervalschedule_id_seq'::regclass); + + +-- +-- Name: django_celery_beat_periodictask id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask ALTER COLUMN id SET DEFAULT nextval('public.django_celery_beat_periodictask_id_seq'::regclass); + + +-- +-- Name: django_celery_beat_solarschedule id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_solarschedule ALTER COLUMN id SET DEFAULT nextval('public.django_celery_beat_solarschedule_id_seq'::regclass); + + +-- +-- Name: django_content_type id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_content_type ALTER COLUMN id SET DEFAULT nextval('public.django_content_type_id_seq'::regclass); + + +-- +-- Name: django_migrations id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_migrations ALTER COLUMN id SET DEFAULT nextval('public.django_migrations_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_cluster_groups id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_cluster_groups ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_cluster_groups_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_clusters id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_clusters ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_clusters_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_device_redundancy_groups id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_redundancy_groups ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_device_redundancy_groups_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_device_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_types ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_device_types_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_dynamic_groups id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_dynamic_groups ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_dynamic_groups_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_locations id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_locations ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_locations_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_platforms id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_platforms ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_platforms_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_regions id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_regions ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_regions_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_roles id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_roles ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_roles_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_sites id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_sites ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_sites_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_tags id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tags ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_tags_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_tenant_groups id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenant_groups ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_tenant_groups_id_seq'::regclass); + + +-- +-- Name: extras_configcontext_tenants id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenants ALTER COLUMN id SET DEFAULT nextval('public.extras_configcontext_tenants_id_seq'::regclass); + + +-- +-- Name: extras_customfield_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield_content_types ALTER COLUMN id SET DEFAULT nextval('public.extras_customfield_content_types_id_seq'::regclass); + + +-- +-- Name: extras_jobbutton_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton_content_types ALTER COLUMN id SET DEFAULT nextval('public.extras_jobbutton_content_types_id_seq'::regclass); + + +-- +-- Name: extras_jobhook_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook_content_types ALTER COLUMN id SET DEFAULT nextval('public.extras_jobhook_content_types_id_seq'::regclass); + + +-- +-- Name: extras_status_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status_content_types ALTER COLUMN id SET DEFAULT nextval('public.extras_status_content_types_id_seq'::regclass); + + +-- +-- Name: extras_tag_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag_content_types ALTER COLUMN id SET DEFAULT nextval('public.extras_tag_content_types_id_seq'::regclass); + + +-- +-- Name: extras_webhook_content_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook_content_types ALTER COLUMN id SET DEFAULT nextval('public.extras_webhook_content_types_id_seq'::regclass); + + +-- +-- Name: ipam_service_ipaddresses id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service_ipaddresses ALTER COLUMN id SET DEFAULT nextval('public.ipam_service_ipaddresses_id_seq'::regclass); + + +-- +-- Name: ipam_vrf_export_targets id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_export_targets ALTER COLUMN id SET DEFAULT nextval('public.ipam_vrf_export_targets_id_seq'::regclass); + + +-- +-- Name: ipam_vrf_import_targets id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_import_targets ALTER COLUMN id SET DEFAULT nextval('public.ipam_vrf_import_targets_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq'::regclass); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags ALTER COLUMN id SET DEFAULT nextval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq'::regclass); + + +-- +-- Name: social_auth_association id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_association ALTER COLUMN id SET DEFAULT nextval('public.social_auth_association_id_seq'::regclass); + + +-- +-- Name: social_auth_code id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_code ALTER COLUMN id SET DEFAULT nextval('public.social_auth_code_id_seq'::regclass); + + +-- +-- Name: social_auth_nonce id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_nonce ALTER COLUMN id SET DEFAULT nextval('public.social_auth_nonce_id_seq'::regclass); + + +-- +-- Name: social_auth_partial id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_partial ALTER COLUMN id SET DEFAULT nextval('public.social_auth_partial_id_seq'::regclass); + + +-- +-- Name: social_auth_usersocialauth id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_usersocialauth ALTER COLUMN id SET DEFAULT nextval('public.social_auth_usersocialauth_id_seq'::regclass); + + +-- +-- Name: taggit_tag id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_tag ALTER COLUMN id SET DEFAULT nextval('public.taggit_tag_id_seq'::regclass); + + +-- +-- Name: taggit_taggeditem id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_taggeditem ALTER COLUMN id SET DEFAULT nextval('public.taggit_taggeditem_id_seq'::regclass); + + +-- +-- Name: users_objectpermission_groups id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_groups ALTER COLUMN id SET DEFAULT nextval('public.users_objectpermission_groups_id_seq'::regclass); + + +-- +-- Name: users_objectpermission_object_types id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_object_types ALTER COLUMN id SET DEFAULT nextval('public.users_objectpermission_object_types_id_seq'::regclass); + + +-- +-- Name: users_objectpermission_users id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_users ALTER COLUMN id SET DEFAULT nextval('public.users_objectpermission_users_id_seq'::regclass); + + +-- +-- Name: virtualization_vminterface_tagged_vlans id; Type: DEFAULT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface_tagged_vlans ALTER COLUMN id SET DEFAULT nextval('public.virtualization_vminterface_tagged_vlans_id_seq'::regclass); + + +-- +-- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.auth_group (id, name) FROM stdin; +1 Group 1 +2 Group 2 +3 demo +4 Group 3 +\. + + +-- +-- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; +\. + + +-- +-- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; +1 Can add permission 74 add_permission +2 Can change permission 74 change_permission +3 Can delete permission 74 delete_permission +4 Can view permission 74 view_permission +5 Can add group 75 add_group +6 Can change group 75 change_group +7 Can delete group 75 delete_group +8 Can view group 75 view_group +11 Can add content type 77 add_contenttype +12 Can change content type 77 change_contenttype +13 Can delete content type 77 delete_contenttype +14 Can view content type 77 view_contenttype +15 Can add session 78 add_session +16 Can change session 78 change_session +17 Can delete session 78 delete_session +18 Can view session 78 view_session +19 Can add association 79 add_association +20 Can change association 79 change_association +21 Can delete association 79 delete_association +22 Can view association 79 view_association +23 Can add code 80 add_code +24 Can change code 80 change_code +25 Can delete code 80 delete_code +26 Can view code 80 view_code +27 Can add nonce 81 add_nonce +28 Can change nonce 81 change_nonce +29 Can delete nonce 81 delete_nonce +30 Can view nonce 81 view_nonce +31 Can add user social auth 82 add_usersocialauth +32 Can change user social auth 82 change_usersocialauth +33 Can delete user social auth 82 delete_usersocialauth +34 Can view user social auth 82 view_usersocialauth +35 Can add partial 83 add_partial +36 Can change partial 83 change_partial +37 Can delete partial 83 delete_partial +38 Can view partial 83 view_partial +39 Can add tag 84 add_tag +40 Can change tag 84 change_tag +41 Can delete tag 84 delete_tag +42 Can view tag 84 view_tag +43 Can add tagged item 85 add_taggeditem +44 Can change tagged item 85 change_taggeditem +45 Can delete tagged item 85 delete_taggeditem +46 Can view tagged item 85 view_taggeditem +47 Can add log entry 90 add_logentry +48 Can change log entry 90 change_logentry +49 Can delete log entry 90 delete_logentry +50 Can view log entry 90 view_logentry +51 Can add crontab 91 add_crontabschedule +52 Can change crontab 91 change_crontabschedule +53 Can delete crontab 91 delete_crontabschedule +54 Can view crontab 91 view_crontabschedule +55 Can add interval 92 add_intervalschedule +56 Can change interval 92 change_intervalschedule +57 Can delete interval 92 delete_intervalschedule +58 Can view interval 92 view_intervalschedule +59 Can add periodic task 93 add_periodictask +60 Can change periodic task 93 change_periodictask +61 Can delete periodic task 93 delete_periodictask +62 Can view periodic task 93 view_periodictask +63 Can add periodic tasks 94 add_periodictasks +64 Can change periodic tasks 94 change_periodictasks +65 Can delete periodic tasks 94 delete_periodictasks +66 Can view periodic tasks 94 view_periodictasks +67 Can add solar event 95 add_solarschedule +68 Can change solar event 95 change_solarschedule +69 Can delete solar event 95 delete_solarschedule +70 Can view solar event 95 view_solarschedule +71 Can add clocked 96 add_clockedschedule +72 Can change clocked 96 change_clockedschedule +73 Can delete clocked 96 delete_clockedschedule +74 Can view clocked 96 view_clockedschedule +75 Can add circuit 1 add_circuit +76 Can change circuit 1 change_circuit +77 Can delete circuit 1 delete_circuit +78 Can view circuit 1 view_circuit +79 Can add circuit termination 97 add_circuittermination +80 Can change circuit termination 97 change_circuittermination +81 Can delete circuit termination 97 delete_circuittermination +82 Can view circuit termination 97 view_circuittermination +83 Can add circuit type 98 add_circuittype +84 Can change circuit type 98 change_circuittype +85 Can delete circuit type 98 delete_circuittype +86 Can view circuit type 98 view_circuittype +87 Can add provider 99 add_provider +88 Can change provider 99 change_provider +89 Can delete provider 99 delete_provider +90 Can view provider 99 view_provider +91 Can add provider network 100 add_providernetwork +92 Can change provider network 100 change_providernetwork +93 Can delete provider network 100 delete_providernetwork +94 Can view provider network 100 view_providernetwork +95 Can add cable 2 add_cable +96 Can change cable 2 change_cable +97 Can delete cable 2 delete_cable +98 Can view cable 2 view_cable +99 Can add cable path 101 add_cablepath +100 Can change cable path 101 change_cablepath +101 Can delete cable path 101 delete_cablepath +102 Can view cable path 101 view_cablepath +103 Can add console port 102 add_consoleport +104 Can change console port 102 change_consoleport +105 Can delete console port 102 delete_consoleport +106 Can view console port 102 view_consoleport +107 Can add console port template 103 add_consoleporttemplate +108 Can change console port template 103 change_consoleporttemplate +109 Can delete console port template 103 delete_consoleporttemplate +110 Can view console port template 103 view_consoleporttemplate +111 Can add console server port 104 add_consoleserverport +112 Can change console server port 104 change_consoleserverport +113 Can delete console server port 104 delete_consoleserverport +114 Can view console server port 104 view_consoleserverport +115 Can add console server port template 105 add_consoleserverporttemplate +116 Can change console server port template 105 change_consoleserverporttemplate +117 Can delete console server port template 105 delete_consoleserverporttemplate +118 Can view console server port template 105 view_consoleserverporttemplate +119 Can add device 3 add_device +120 Can change device 3 change_device +121 Can delete device 3 delete_device +122 Can view device 3 view_device +123 Can add device bay 106 add_devicebay +124 Can change device bay 106 change_devicebay +125 Can delete device bay 106 delete_devicebay +126 Can view device bay 106 view_devicebay +127 Can add device bay template 107 add_devicebaytemplate +128 Can change device bay template 107 change_devicebaytemplate +129 Can delete device bay template 107 delete_devicebaytemplate +130 Can view device bay template 107 view_devicebaytemplate +131 Can add device role 108 add_devicerole +132 Can change device role 108 change_devicerole +133 Can delete device role 108 delete_devicerole +134 Can view device role 108 view_devicerole +135 Can add device type 109 add_devicetype +136 Can change device type 109 change_devicetype +137 Can delete device type 109 delete_devicetype +138 Can view device type 109 view_devicetype +139 Can add front port 110 add_frontport +140 Can change front port 110 change_frontport +141 Can delete front port 110 delete_frontport +142 Can view front port 110 view_frontport +143 Can add front port template 111 add_frontporttemplate +144 Can change front port template 111 change_frontporttemplate +145 Can delete front port template 111 delete_frontporttemplate +146 Can view front port template 111 view_frontporttemplate +147 Can add interface 4 add_interface +148 Can change interface 4 change_interface +149 Can delete interface 4 delete_interface +150 Can view interface 4 view_interface +151 Can add interface template 112 add_interfacetemplate +152 Can change interface template 112 change_interfacetemplate +153 Can delete interface template 112 delete_interfacetemplate +154 Can view interface template 112 view_interfacetemplate +155 Can add inventory item 87 add_inventoryitem +156 Can change inventory item 87 change_inventoryitem +157 Can delete inventory item 87 delete_inventoryitem +158 Can view inventory item 87 view_inventoryitem +159 Can add manufacturer 113 add_manufacturer +160 Can change manufacturer 113 change_manufacturer +161 Can delete manufacturer 113 delete_manufacturer +162 Can view manufacturer 113 view_manufacturer +163 Can add platform 114 add_platform +164 Can change platform 114 change_platform +165 Can delete platform 114 delete_platform +166 Can view platform 114 view_platform +167 Can add power feed 6 add_powerfeed +168 Can change power feed 6 change_powerfeed +169 Can delete power feed 6 delete_powerfeed +170 Can view power feed 6 view_powerfeed +171 Can add power outlet 115 add_poweroutlet +172 Can change power outlet 115 change_poweroutlet +173 Can delete power outlet 115 delete_poweroutlet +174 Can view power outlet 115 view_poweroutlet +175 Can add power outlet template 116 add_poweroutlettemplate +176 Can change power outlet template 116 change_poweroutlettemplate +177 Can delete power outlet template 116 delete_poweroutlettemplate +178 Can view power outlet template 116 view_poweroutlettemplate +179 Can add power panel 117 add_powerpanel +180 Can change power panel 117 change_powerpanel +181 Can delete power panel 117 delete_powerpanel +182 Can view power panel 117 view_powerpanel +183 Can add power port 118 add_powerport +184 Can change power port 118 change_powerport +185 Can delete power port 118 delete_powerport +186 Can view power port 118 view_powerport +187 Can add power port template 119 add_powerporttemplate +188 Can change power port template 119 change_powerporttemplate +189 Can delete power port template 119 delete_powerporttemplate +190 Can view power port template 119 view_powerporttemplate +191 Can add rack 7 add_rack +192 Can change rack 7 change_rack +193 Can delete rack 7 delete_rack +194 Can view rack 7 view_rack +195 Can add rack group 120 add_rackgroup +196 Can change rack group 120 change_rackgroup +197 Can delete rack group 120 delete_rackgroup +198 Can view rack group 120 view_rackgroup +199 Can add rack reservation 121 add_rackreservation +200 Can change rack reservation 121 change_rackreservation +201 Can delete rack reservation 121 delete_rackreservation +202 Can view rack reservation 121 view_rackreservation +203 Can add rack role 122 add_rackrole +204 Can change rack role 122 change_rackrole +205 Can delete rack role 122 delete_rackrole +206 Can view rack role 122 view_rackrole +207 Can add rear port 123 add_rearport +208 Can change rear port 123 change_rearport +209 Can delete rear port 123 delete_rearport +210 Can view rear port 123 view_rearport +211 Can add rear port template 124 add_rearporttemplate +212 Can change rear port template 124 change_rearporttemplate +213 Can delete rear port template 124 delete_rearporttemplate +214 Can view rear port template 124 view_rearporttemplate +215 Can add region 125 add_region +216 Can change region 125 change_region +217 Can delete region 125 delete_region +218 Can view region 125 view_region +219 Can add site 9 add_site +220 Can change site 9 change_site +221 Can delete site 9 delete_site +222 Can view site 9 view_site +223 Can add virtual chassis 126 add_virtualchassis +224 Can change virtual chassis 126 change_virtualchassis +225 Can delete virtual chassis 126 delete_virtualchassis +226 Can view virtual chassis 126 view_virtualchassis +227 Can add location type 127 add_locationtype +228 Can change location type 127 change_locationtype +229 Can delete location type 127 delete_locationtype +230 Can view location type 127 view_locationtype +231 Can add location 5 add_location +232 Can change location 5 change_location +233 Can delete location 5 delete_location +234 Can view location 5 view_location +235 Can add device redundancy group 8 add_deviceredundancygroup +236 Can change device redundancy group 8 change_deviceredundancygroup +237 Can delete device redundancy group 8 delete_deviceredundancygroup +238 Can view device redundancy group 8 view_deviceredundancygroup +239 Can add aggregate 128 add_aggregate +240 Can change aggregate 128 change_aggregate +241 Can delete aggregate 128 delete_aggregate +242 Can view aggregate 128 view_aggregate +243 Can add IP address 10 add_ipaddress +244 Can change IP address 10 change_ipaddress +245 Can delete IP address 10 delete_ipaddress +246 Can view IP address 10 view_ipaddress +247 Can add prefix 11 add_prefix +248 Can change prefix 11 change_prefix +249 Can delete prefix 11 delete_prefix +250 Can view prefix 11 view_prefix +251 Can add RIR 129 add_rir +252 Can change RIR 129 change_rir +253 Can delete RIR 129 delete_rir +254 Can view RIR 129 view_rir +255 Can add role 130 add_role +256 Can change role 130 change_role +257 Can delete role 130 delete_role +258 Can view role 130 view_role +259 Can add route target 131 add_routetarget +260 Can change route target 131 change_routetarget +261 Can delete route target 131 delete_routetarget +262 Can view route target 131 view_routetarget +263 Can add VRF 132 add_vrf +264 Can change VRF 132 change_vrf +265 Can delete VRF 132 delete_vrf +266 Can view VRF 132 view_vrf +267 Can add VLAN group 133 add_vlangroup +268 Can change VLAN group 133 change_vlangroup +269 Can delete VLAN group 133 delete_vlangroup +270 Can view VLAN group 133 view_vlangroup +271 Can add VLAN 12 add_vlan +272 Can change VLAN 12 change_vlan +273 Can delete VLAN 12 delete_vlan +274 Can view VLAN 12 view_vlan +275 Can add service 134 add_service +276 Can change service 134 change_service +277 Can delete service 134 delete_service +278 Can view service 134 view_service +279 Can add config context 135 add_configcontext +280 Can change config context 135 change_configcontext +281 Can delete config context 135 delete_configcontext +282 Can view config context 135 view_configcontext +283 Can add custom field 15 add_customfield +284 Can change custom field 15 change_customfield +285 Can delete custom field 15 delete_customfield +286 Can view custom field 15 view_customfield +287 Can add custom field choice 136 add_customfieldchoice +288 Can change custom field choice 136 change_customfieldchoice +289 Can delete custom field choice 136 delete_customfieldchoice +290 Can view custom field choice 136 view_customfieldchoice +291 Can add custom link 137 add_customlink +292 Can change custom link 137 change_customlink +293 Can delete custom link 137 delete_customlink +294 Can view custom link 137 view_customlink +295 Can add export template 138 add_exporttemplate +296 Can change export template 138 change_exporttemplate +297 Can delete export template 138 delete_exporttemplate +298 Can view export template 138 view_exporttemplate +299 Can add Git repository 139 add_gitrepository +300 Can change Git repository 139 change_gitrepository +301 Can delete Git repository 139 delete_gitrepository +302 Can view Git repository 139 view_gitrepository +303 Can add image attachment 140 add_imageattachment +304 Can change image attachment 140 change_imageattachment +305 Can delete image attachment 140 delete_imageattachment +306 Can view image attachment 140 view_imageattachment +307 Can add job result 141 add_jobresult +308 Can change job result 141 change_jobresult +309 Can delete job result 141 delete_jobresult +310 Can view job result 141 view_jobresult +311 Can add relationship 142 add_relationship +312 Can change relationship 142 change_relationship +313 Can delete relationship 142 delete_relationship +314 Can view relationship 142 view_relationship +315 Can add tag 143 add_tag +316 Can change tag 143 change_tag +317 Can delete tag 143 delete_tag +318 Can view tag 143 view_tag +319 Can add webhook 144 add_webhook +320 Can change webhook 144 change_webhook +321 Can delete webhook 144 delete_webhook +322 Can view webhook 144 view_webhook +323 Can add tagged item 145 add_taggeditem +324 Can change tagged item 145 change_taggeditem +325 Can delete tagged item 145 delete_taggeditem +326 Can view tagged item 145 view_taggeditem +327 Can add status 146 add_status +328 Can change status 146 change_status +329 Can delete status 146 delete_status +330 Can view status 146 view_status +331 Can add relationship association 147 add_relationshipassociation +332 Can change relationship association 147 change_relationshipassociation +333 Can delete relationship association 147 delete_relationshipassociation +334 Can view relationship association 147 view_relationshipassociation +335 Can add object change 148 add_objectchange +336 Can change object change 148 change_objectchange +337 Can delete object change 148 delete_objectchange +338 Can view object change 148 view_objectchange +339 Can add GraphQL query 149 add_graphqlquery +340 Can change GraphQL query 149 change_graphqlquery +341 Can delete GraphQL query 149 delete_graphqlquery +342 Can view GraphQL query 149 view_graphqlquery +343 Can add config context schema 150 add_configcontextschema +344 Can change config context schema 150 change_configcontextschema +345 Can delete config context schema 150 delete_configcontextschema +346 Can view config context schema 150 view_configcontextschema +347 Can add computed field 151 add_computedfield +348 Can change computed field 151 change_computedfield +349 Can delete computed field 151 delete_computedfield +350 Can view computed field 151 view_computedfield +351 Can add file attachment 152 add_fileattachment +352 Can change file attachment 152 change_fileattachment +353 Can delete file attachment 152 delete_fileattachment +354 Can view file attachment 152 view_fileattachment +355 Can add file proxy 153 add_fileproxy +356 Can change file proxy 153 change_fileproxy +357 Can delete file proxy 153 delete_fileproxy +358 Can view file proxy 153 view_fileproxy +359 Can add health check test model 154 add_healthchecktestmodel +360 Can change health check test model 154 change_healthchecktestmodel +361 Can delete health check test model 154 delete_healthchecktestmodel +362 Can view health check test model 154 view_healthchecktestmodel +363 Can add scheduled jobs 155 add_scheduledjobs +364 Can change scheduled jobs 155 change_scheduledjobs +365 Can delete scheduled jobs 155 delete_scheduledjobs +366 Can view scheduled jobs 155 view_scheduledjobs +367 Can add scheduled job 156 add_scheduledjob +368 Can change scheduled job 156 change_scheduledjob +369 Can delete scheduled job 156 delete_scheduledjob +370 Can view scheduled job 156 view_scheduledjob +371 Can add secret 157 add_secret +372 Can change secret 157 change_secret +373 Can delete secret 157 delete_secret +374 Can view secret 157 view_secret +375 Can add secrets group 158 add_secretsgroup +376 Can change secrets group 158 change_secretsgroup +377 Can delete secrets group 158 delete_secretsgroup +378 Can view secrets group 158 view_secretsgroup +379 Can add secrets group association 159 add_secretsgroupassociation +380 Can change secrets group association 159 change_secretsgroupassociation +381 Can delete secrets group association 159 delete_secretsgroupassociation +382 Can view secrets group association 159 view_secretsgroupassociation +383 Can add job log entry 160 add_joblogentry +384 Can change job log entry 160 change_joblogentry +385 Can delete job log entry 160 delete_joblogentry +386 Can view job log entry 160 view_joblogentry +387 Can add job 16 add_job +388 Can change job 16 change_job +389 Can delete job 16 delete_job +390 Can view job 16 view_job +391 Can add dynamic group 161 add_dynamicgroup +392 Can change dynamic group 161 change_dynamicgroup +393 Can delete dynamic group 161 delete_dynamicgroup +394 Can view dynamic group 161 view_dynamicgroup +395 Can add dynamic group membership 162 add_dynamicgroupmembership +396 Can change dynamic group membership 162 change_dynamicgroupmembership +397 Can delete dynamic group membership 162 delete_dynamicgroupmembership +398 Can view dynamic group membership 162 view_dynamicgroupmembership +399 Can add note 163 add_note +400 Can change note 163 change_note +401 Can delete note 163 delete_note +402 Can view note 163 view_note +403 Can add job hook 164 add_jobhook +404 Can change job hook 164 change_jobhook +405 Can delete job hook 164 delete_jobhook +406 Can view job hook 164 view_jobhook +407 Can add job button 165 add_jobbutton +408 Can change job button 165 change_jobbutton +409 Can delete job button 165 delete_jobbutton +410 Can view job button 165 view_jobbutton +411 Can add tenant group 166 add_tenantgroup +412 Can change tenant group 166 change_tenantgroup +413 Can delete tenant group 166 delete_tenantgroup +414 Can view tenant group 166 view_tenantgroup +415 Can add tenant 167 add_tenant +416 Can change tenant 167 change_tenant +417 Can delete tenant 167 delete_tenant +418 Can view tenant 167 view_tenant +419 Can add user 168 add_user +420 Can change user 168 change_user +421 Can delete user 168 delete_user +422 Can view user 168 view_user +423 Can add Group 169 add_admingroup +424 Can change Group 169 change_admingroup +425 Can delete Group 169 delete_admingroup +426 Can view Group 169 view_admingroup +427 Can add token 170 add_token +428 Can change token 170 change_token +429 Can delete token 170 delete_token +430 Can view token 170 view_token +431 Can add permission 171 add_objectpermission +432 Can change permission 171 change_objectpermission +433 Can delete permission 171 delete_objectpermission +434 Can view permission 171 view_objectpermission +435 Can add cluster 172 add_cluster +436 Can change cluster 172 change_cluster +437 Can delete cluster 172 delete_cluster +438 Can view cluster 172 view_cluster +439 Can add cluster group 173 add_clustergroup +440 Can change cluster group 173 change_clustergroup +441 Can delete cluster group 173 delete_clustergroup +442 Can view cluster group 173 view_clustergroup +443 Can add cluster type 174 add_clustertype +444 Can change cluster type 174 change_clustertype +445 Can delete cluster type 174 delete_clustertype +446 Can view cluster type 174 view_clustertype +447 Can add virtual machine 13 add_virtualmachine +448 Can change virtual machine 13 change_virtualmachine +449 Can delete virtual machine 13 delete_virtualmachine +450 Can view virtual machine 13 view_virtualmachine +451 Can add VM interface 14 add_vminterface +452 Can change VM interface 14 change_vminterface +453 Can delete VM interface 14 delete_vminterface +454 Can view VM interface 14 view_vminterface +455 Access admin page 175 view +456 Can add constance 176 add_constance +457 Can change constance 176 change_constance +458 Can delete constance 176 delete_constance +459 Can view constance 176 view_constance +460 Can add access grant 177 add_accessgrant +461 Can change access grant 177 change_accessgrant +462 Can delete access grant 177 delete_accessgrant +463 Can view access grant 177 view_accessgrant +464 Can add command log 178 add_commandlog +465 Can change command log 178 change_commandlog +466 Can delete command log 178 delete_commandlog +467 Can view command log 178 view_commandlog +468 Can add command token 179 add_commandtoken +469 Can change command token 179 change_commandtoken +470 Can delete command token 179 delete_commandtoken +471 Can view command token 179 view_commandtoken +472 Can add regular expression validation rule 180 add_regularexpressionvalidationrule +473 Can change regular expression validation rule 180 change_regularexpressionvalidationrule +474 Can delete regular expression validation rule 180 delete_regularexpressionvalidationrule +475 Can view regular expression validation rule 180 view_regularexpressionvalidationrule +476 Can add min max validation rule 181 add_minmaxvalidationrule +477 Can change min max validation rule 181 change_minmaxvalidationrule +478 Can delete min max validation rule 181 delete_minmaxvalidationrule +479 Can view min max validation rule 181 view_minmaxvalidationrule +480 Can add unique validation rule 182 add_uniquevalidationrule +481 Can change unique validation rule 182 change_uniquevalidationrule +482 Can delete unique validation rule 182 delete_uniquevalidationrule +483 Can view unique validation rule 182 view_uniquevalidationrule +484 Can add required validation rule 183 add_requiredvalidationrule +485 Can change required validation rule 183 change_requiredvalidationrule +486 Can delete required validation rule 183 delete_requiredvalidationrule +487 Can view required validation rule 183 view_requiredvalidationrule +488 Can add data compliance 184 add_datacompliance +489 Can change data compliance 184 change_datacompliance +490 Can delete data compliance 184 delete_datacompliance +491 Can view data compliance 184 view_datacompliance +492 Can add onboarding task 185 add_onboardingtask +493 Can change onboarding task 185 change_onboardingtask +494 Can delete onboarding task 185 delete_onboardingtask +495 Can view onboarding task 185 view_onboardingtask +496 Can add onboarding device 186 add_onboardingdevice +497 Can change onboarding device 186 change_onboardingdevice +498 Can delete onboarding device 186 delete_onboardingdevice +499 Can view onboarding device 186 view_onboardingdevice +500 Can add address object 17 add_addressobject +501 Can change address object 17 change_addressobject +502 Can delete address object 17 delete_addressobject +503 Can view address object 17 view_addressobject +504 Can add address object group 18 add_addressobjectgroup +505 Can change address object group 18 change_addressobjectgroup +506 Can delete address object group 18 delete_addressobjectgroup +507 Can view address object group 18 view_addressobjectgroup +508 Can add dest addr group m2m 30 add_destaddrgroupm2m +509 Can change dest addr group m2m 30 change_destaddrgroupm2m +510 Can delete dest addr group m2m 30 delete_destaddrgroupm2m +511 Can view dest addr group m2m 30 view_destaddrgroupm2m +512 Can add dest addr m2m 31 add_destaddrm2m +513 Can change dest addr m2m 31 change_destaddrm2m +514 Can delete dest addr m2m 31 delete_destaddrm2m +515 Can view dest addr m2m 31 view_destaddrm2m +516 Can add FQDN 19 add_fqdn +517 Can change FQDN 19 change_fqdn +518 Can delete FQDN 19 delete_fqdn +519 Can view FQDN 19 view_fqdn +520 Can add policy 20 add_policy +521 Can change policy 20 change_policy +522 Can delete policy 20 delete_policy +523 Can view policy 20 view_policy +524 Can add policy rule 21 add_policyrule +525 Can change policy rule 21 change_policyrule +526 Can delete policy rule 21 delete_policyrule +527 Can view policy rule 21 view_policyrule +528 Can add service object 22 add_serviceobject +529 Can change service object 22 change_serviceobject +530 Can delete service object 22 delete_serviceobject +531 Can view service object 22 view_serviceobject +532 Can add service object group 23 add_serviceobjectgroup +533 Can change service object group 23 change_serviceobjectgroup +534 Can delete service object group 23 delete_serviceobjectgroup +535 Can view service object group 23 view_serviceobjectgroup +536 Can add user object 24 add_userobject +537 Can change user object 24 change_userobject +538 Can delete user object 24 delete_userobject +539 Can view user object 24 view_userobject +540 Can add user object group 25 add_userobjectgroup +541 Can change user object group 25 change_userobjectgroup +542 Can delete user object group 25 delete_userobjectgroup +543 Can view user object group 25 view_userobjectgroup +544 Can add zone 26 add_zone +545 Can change zone 26 change_zone +546 Can delete zone 26 delete_zone +547 Can view zone 26 view_zone +548 Can add zone vrf m2m 32 add_zonevrfm2m +549 Can change zone vrf m2m 32 change_zonevrfm2m +550 Can delete zone vrf m2m 32 delete_zonevrfm2m +551 Can view zone vrf m2m 32 view_zonevrfm2m +552 Can add zone interface m2m 33 add_zoneinterfacem2m +553 Can change zone interface m2m 33 change_zoneinterfacem2m +554 Can delete zone interface m2m 33 delete_zoneinterfacem2m +555 Can view zone interface m2m 33 view_zoneinterfacem2m +556 Can add user object group m2m 34 add_userobjectgroupm2m +557 Can change user object group m2m 34 change_userobjectgroupm2m +558 Can delete user object group m2m 34 delete_userobjectgroupm2m +559 Can view user object group m2m 34 view_userobjectgroupm2m +560 Can add src user m2m 35 add_srcuserm2m +561 Can change src user m2m 35 change_srcuserm2m +562 Can delete src user m2m 35 delete_srcuserm2m +563 Can view src user m2m 35 view_srcuserm2m +564 Can add src user group m2m 36 add_srcusergroupm2m +565 Can change src user group m2m 36 change_srcusergroupm2m +566 Can delete src user group m2m 36 delete_srcusergroupm2m +567 Can view src user group m2m 36 view_srcusergroupm2m +568 Can add src addr m2m 37 add_srcaddrm2m +569 Can change src addr m2m 37 change_srcaddrm2m +570 Can delete src addr m2m 37 delete_srcaddrm2m +571 Can view src addr m2m 37 view_srcaddrm2m +572 Can add src addr group m2m 38 add_srcaddrgroupm2m +573 Can change src addr group m2m 38 change_srcaddrgroupm2m +574 Can delete src addr group m2m 38 delete_srcaddrgroupm2m +575 Can view src addr group m2m 38 view_srcaddrgroupm2m +576 Can add service object group m2m 39 add_serviceobjectgroupm2m +577 Can change service object group m2m 39 change_serviceobjectgroupm2m +578 Can delete service object group m2m 39 delete_serviceobjectgroupm2m +579 Can view service object group m2m 39 view_serviceobjectgroupm2m +580 Can add policy rule m2m 40 add_policyrulem2m +581 Can change policy rule m2m 40 change_policyrulem2m +582 Can delete policy rule m2m 40 delete_policyrulem2m +583 Can view policy rule m2m 40 view_policyrulem2m +584 Can add policy dynamic group m2m 41 add_policydynamicgroupm2m +585 Can change policy dynamic group m2m 41 change_policydynamicgroupm2m +586 Can delete policy dynamic group m2m 41 delete_policydynamicgroupm2m +587 Can view policy dynamic group m2m 41 view_policydynamicgroupm2m +588 Can add policy device m2m 42 add_policydevicem2m +589 Can change policy device m2m 42 change_policydevicem2m +590 Can delete policy device m2m 42 delete_policydevicem2m +591 Can view policy device m2m 42 view_policydevicem2m +592 Can add IP Range 27 add_iprange +593 Can change IP Range 27 change_iprange +594 Can delete IP Range 27 delete_iprange +595 Can view IP Range 27 view_iprange +596 Can add fqdnip address m2m 43 add_fqdnipaddressm2m +597 Can change fqdnip address m2m 43 change_fqdnipaddressm2m +598 Can delete fqdnip address m2m 43 delete_fqdnipaddressm2m +599 Can view fqdnip address m2m 43 view_fqdnipaddressm2m +600 Can add address object group m2m 44 add_addressobjectgroupm2m +601 Can change address object group m2m 44 change_addressobjectgroupm2m +602 Can delete address object group m2m 44 delete_addressobjectgroupm2m +603 Can view address object group m2m 44 view_addressobjectgroupm2m +604 Can add capirca policy 45 add_capircapolicy +605 Can change capirca policy 45 change_capircapolicy +606 Can delete capirca policy 45 delete_capircapolicy +607 Can view capirca policy 45 view_capircapolicy +608 Can add dest svc group m2m 46 add_destsvcgroupm2m +609 Can change dest svc group m2m 46 change_destsvcgroupm2m +610 Can delete dest svc group m2m 46 delete_destsvcgroupm2m +611 Can view dest svc group m2m 46 view_destsvcgroupm2m +612 Can add dest svc m2m 47 add_destsvcm2m +613 Can change dest svc m2m 47 change_destsvcm2m +614 Can delete dest svc m2m 47 delete_destsvcm2m +615 Can view dest svc m2m 47 view_destsvcm2m +616 Can add src svc m2m 48 add_srcsvcm2m +617 Can change src svc m2m 48 change_srcsvcm2m +618 Can delete src svc m2m 48 delete_srcsvcm2m +619 Can view src svc m2m 48 view_srcsvcm2m +620 Can add src svc group m2m 49 add_srcsvcgroupm2m +621 Can change src svc group m2m 49 change_srcsvcgroupm2m +622 Can delete src svc group m2m 49 delete_srcsvcgroupm2m +623 Can view src svc group m2m 49 view_srcsvcgroupm2m +624 Can add nat orig dest addr group m2m 50 add_natorigdestaddrgroupm2m +625 Can change nat orig dest addr group m2m 50 change_natorigdestaddrgroupm2m +626 Can delete nat orig dest addr group m2m 50 delete_natorigdestaddrgroupm2m +627 Can view nat orig dest addr group m2m 50 view_natorigdestaddrgroupm2m +628 Can add nat orig dest addr m2m 51 add_natorigdestaddrm2m +629 Can change nat orig dest addr m2m 51 change_natorigdestaddrm2m +630 Can delete nat orig dest addr m2m 51 delete_natorigdestaddrm2m +631 Can view nat orig dest addr m2m 51 view_natorigdestaddrm2m +632 Can add nat orig dest svc group m2m 52 add_natorigdestsvcgroupm2m +633 Can change nat orig dest svc group m2m 52 change_natorigdestsvcgroupm2m +634 Can delete nat orig dest svc group m2m 52 delete_natorigdestsvcgroupm2m +635 Can view nat orig dest svc group m2m 52 view_natorigdestsvcgroupm2m +636 Can add nat orig dest svc m2m 53 add_natorigdestsvcm2m +637 Can change nat orig dest svc m2m 53 change_natorigdestsvcm2m +638 Can delete nat orig dest svc m2m 53 delete_natorigdestsvcm2m +639 Can view nat orig dest svc m2m 53 view_natorigdestsvcm2m +640 Can add nat orig src addr group m2m 54 add_natorigsrcaddrgroupm2m +641 Can change nat orig src addr group m2m 54 change_natorigsrcaddrgroupm2m +642 Can delete nat orig src addr group m2m 54 delete_natorigsrcaddrgroupm2m +643 Can view nat orig src addr group m2m 54 view_natorigsrcaddrgroupm2m +644 Can add nat orig src addr m2m 55 add_natorigsrcaddrm2m +645 Can change nat orig src addr m2m 55 change_natorigsrcaddrm2m +646 Can delete nat orig src addr m2m 55 delete_natorigsrcaddrm2m +647 Can view nat orig src addr m2m 55 view_natorigsrcaddrm2m +648 Can add nat orig src svc group m2m 56 add_natorigsrcsvcgroupm2m +649 Can change nat orig src svc group m2m 56 change_natorigsrcsvcgroupm2m +650 Can delete nat orig src svc group m2m 56 delete_natorigsrcsvcgroupm2m +651 Can view nat orig src svc group m2m 56 view_natorigsrcsvcgroupm2m +652 Can add nat orig src svc m2m 57 add_natorigsrcsvcm2m +653 Can change nat orig src svc m2m 57 change_natorigsrcsvcm2m +654 Can delete nat orig src svc m2m 57 delete_natorigsrcsvcm2m +655 Can view nat orig src svc m2m 57 view_natorigsrcsvcm2m +656 Can add NAT Policy 28 add_natpolicy +657 Can change NAT Policy 28 change_natpolicy +658 Can delete NAT Policy 28 delete_natpolicy +659 Can view NAT Policy 28 view_natpolicy +660 Can add NAT Policy Rule 29 add_natpolicyrule +661 Can change NAT Policy Rule 29 change_natpolicyrule +662 Can delete NAT Policy Rule 29 delete_natpolicyrule +663 Can view NAT Policy Rule 29 view_natpolicyrule +664 Can add nat trans src svc m2m 58 add_nattranssrcsvcm2m +665 Can change nat trans src svc m2m 58 change_nattranssrcsvcm2m +666 Can delete nat trans src svc m2m 58 delete_nattranssrcsvcm2m +667 Can view nat trans src svc m2m 58 view_nattranssrcsvcm2m +668 Can add nat trans src svc group m2m 59 add_nattranssrcsvcgroupm2m +669 Can change nat trans src svc group m2m 59 change_nattranssrcsvcgroupm2m +670 Can delete nat trans src svc group m2m 59 delete_nattranssrcsvcgroupm2m +671 Can view nat trans src svc group m2m 59 view_nattranssrcsvcgroupm2m +672 Can add nat trans src addr m2m 60 add_nattranssrcaddrm2m +673 Can change nat trans src addr m2m 60 change_nattranssrcaddrm2m +674 Can delete nat trans src addr m2m 60 delete_nattranssrcaddrm2m +675 Can view nat trans src addr m2m 60 view_nattranssrcaddrm2m +676 Can add nat trans src addr group m2m 61 add_nattranssrcaddrgroupm2m +677 Can change nat trans src addr group m2m 61 change_nattranssrcaddrgroupm2m +678 Can delete nat trans src addr group m2m 61 delete_nattranssrcaddrgroupm2m +679 Can view nat trans src addr group m2m 61 view_nattranssrcaddrgroupm2m +680 Can add nat trans dest svc m2m 62 add_nattransdestsvcm2m +681 Can change nat trans dest svc m2m 62 change_nattransdestsvcm2m +682 Can delete nat trans dest svc m2m 62 delete_nattransdestsvcm2m +683 Can view nat trans dest svc m2m 62 view_nattransdestsvcm2m +684 Can add nat trans dest svc group m2m 63 add_nattransdestsvcgroupm2m +685 Can change nat trans dest svc group m2m 63 change_nattransdestsvcgroupm2m +686 Can delete nat trans dest svc group m2m 63 delete_nattransdestsvcgroupm2m +687 Can view nat trans dest svc group m2m 63 view_nattransdestsvcgroupm2m +688 Can add nat trans dest addr m2m 64 add_nattransdestaddrm2m +689 Can change nat trans dest addr m2m 64 change_nattransdestaddrm2m +690 Can delete nat trans dest addr m2m 64 delete_nattransdestaddrm2m +691 Can view nat trans dest addr m2m 64 view_nattransdestaddrm2m +692 Can add nat trans dest addr group m2m 65 add_nattransdestaddrgroupm2m +693 Can change nat trans dest addr group m2m 65 change_nattransdestaddrgroupm2m +694 Can delete nat trans dest addr group m2m 65 delete_nattransdestaddrgroupm2m +695 Can view nat trans dest addr group m2m 65 view_nattransdestaddrgroupm2m +696 Can add nat src user m2m 66 add_natsrcuserm2m +697 Can change nat src user m2m 66 change_natsrcuserm2m +698 Can delete nat src user m2m 66 delete_natsrcuserm2m +699 Can view nat src user m2m 66 view_natsrcuserm2m +700 Can add nat src user group m2m 67 add_natsrcusergroupm2m +701 Can change nat src user group m2m 67 change_natsrcusergroupm2m +702 Can delete nat src user group m2m 67 delete_natsrcusergroupm2m +703 Can view nat src user group m2m 67 view_natsrcusergroupm2m +704 Can add nat policy rule m2m 68 add_natpolicyrulem2m +705 Can change nat policy rule m2m 68 change_natpolicyrulem2m +706 Can delete nat policy rule m2m 68 delete_natpolicyrulem2m +707 Can view nat policy rule m2m 68 view_natpolicyrulem2m +708 Can add nat policy nat rule m2m 69 add_natpolicynatrulem2m +709 Can change nat policy nat rule m2m 69 change_natpolicynatrulem2m +710 Can delete nat policy nat rule m2m 69 delete_natpolicynatrulem2m +711 Can view nat policy nat rule m2m 69 view_natpolicynatrulem2m +712 Can add nat policy dynamic group m2m 70 add_natpolicydynamicgroupm2m +713 Can change nat policy dynamic group m2m 70 change_natpolicydynamicgroupm2m +714 Can delete nat policy dynamic group m2m 70 delete_natpolicydynamicgroupm2m +715 Can view nat policy dynamic group m2m 70 view_natpolicydynamicgroupm2m +716 Can add nat policy device m2m 71 add_natpolicydevicem2m +717 Can change nat policy device m2m 71 change_natpolicydevicem2m +718 Can delete nat policy device m2m 71 delete_natpolicydevicem2m +719 Can view nat policy device m2m 71 view_natpolicydevicem2m +720 Can add application object 72 add_applicationobject +721 Can change application object 72 change_applicationobject +722 Can delete application object 72 delete_applicationobject +723 Can view application object 72 view_applicationobject +724 Can add application object group 73 add_applicationobjectgroup +725 Can change application object group 73 change_applicationobjectgroup +726 Can delete application object group 73 delete_applicationobjectgroup +727 Can view application object group 73 view_applicationobjectgroup +728 Can add application object group m2m 187 add_applicationobjectgroupm2m +729 Can change application object group m2m 187 change_applicationobjectgroupm2m +730 Can delete application object group m2m 187 delete_applicationobjectgroupm2m +731 Can view application object group m2m 187 view_applicationobjectgroupm2m +732 Can add application m2m 188 add_applicationm2m +733 Can change application m2m 188 change_applicationm2m +734 Can delete application m2m 188 delete_applicationm2m +735 Can view application m2m 188 view_applicationm2m +736 Can add application group m2m 189 add_applicationgroupm2m +737 Can change application group m2m 189 change_applicationgroupm2m +738 Can delete application group m2m 189 delete_applicationgroupm2m +739 Can view application group m2m 189 view_applicationgroupm2m +740 Can add compliance feature 190 add_compliancefeature +741 Can change compliance feature 190 change_compliancefeature +742 Can delete compliance feature 190 delete_compliancefeature +743 Can view compliance feature 190 view_compliancefeature +744 Can add compliance rule 191 add_compliancerule +745 Can change compliance rule 191 change_compliancerule +746 Can delete compliance rule 191 delete_compliancerule +747 Can view compliance rule 191 view_compliancerule +748 Can add Golden Config Setting 192 add_goldenconfigsetting +749 Can change Golden Config Setting 192 change_goldenconfigsetting +750 Can delete Golden Config Setting 192 delete_goldenconfigsetting +751 Can view Golden Config Setting 192 view_goldenconfigsetting +752 Can add golden config 193 add_goldenconfig +753 Can change golden config 193 change_goldenconfig +754 Can delete golden config 193 delete_goldenconfig +755 Can view golden config 193 view_goldenconfig +756 Can add config replace 194 add_configreplace +757 Can change config replace 194 change_configreplace +758 Can delete config replace 194 delete_configreplace +759 Can view config replace 194 view_configreplace +760 Can add config remove 195 add_configremove +761 Can change config remove 195 change_configremove +762 Can delete config remove 195 delete_configremove +763 Can view config remove 195 view_configremove +764 Can add config compliance 196 add_configcompliance +765 Can change config compliance 196 change_configcompliance +766 Can delete config compliance 196 delete_configcompliance +767 Can view config compliance 196 view_configcompliance +768 Can add sync 197 add_sync +769 Can change sync 197 change_sync +770 Can delete sync 197 delete_sync +771 Can view sync 197 view_sync +772 Can add sync log entry 198 add_synclogentry +773 Can change sync log entry 198 change_synclogentry +774 Can delete sync log entry 198 delete_synclogentry +775 Can view sync log entry 198 view_synclogentry +776 Can add Autonomous system 199 add_autonomoussystem +777 Can change Autonomous system 199 change_autonomoussystem +778 Can delete Autonomous system 199 delete_autonomoussystem +779 Can view Autonomous system 199 view_autonomoussystem +780 Can add BGP Routing Instance 200 add_bgproutinginstance +781 Can change BGP Routing Instance 200 change_bgproutinginstance +782 Can delete BGP Routing Instance 200 delete_bgproutinginstance +783 Can view BGP Routing Instance 200 view_bgproutinginstance +784 Can add BGP Peering Role 201 add_peeringrole +785 Can change BGP Peering Role 201 change_peeringrole +786 Can delete BGP Peering Role 201 delete_peeringrole +787 Can view BGP Peering Role 201 view_peeringrole +788 Can add BGP Peering 202 add_peering +789 Can change BGP Peering 202 change_peering +790 Can delete BGP Peering 202 delete_peering +791 Can view BGP Peering 202 view_peering +792 Can add BGP Peer Group Template 203 add_peergrouptemplate +793 Can change BGP Peer Group Template 203 change_peergrouptemplate +794 Can delete BGP Peer Group Template 203 delete_peergrouptemplate +795 Can view BGP Peer Group Template 203 view_peergrouptemplate +796 Can add BGP Peer Group 204 add_peergroup +797 Can change BGP Peer Group 204 change_peergroup +798 Can delete BGP Peer Group 204 delete_peergroup +799 Can view BGP Peer Group 204 view_peergroup +800 Can add peer endpoint 205 add_peerendpoint +801 Can change peer endpoint 205 change_peerendpoint +802 Can delete peer endpoint 205 delete_peerendpoint +803 Can view peer endpoint 205 view_peerendpoint +804 Can add BGP address family 206 add_addressfamily +805 Can change BGP address family 206 change_addressfamily +806 Can delete BGP address family 206 delete_addressfamily +807 Can view BGP address family 206 view_addressfamily +808 Can add Hardware Notice 207 add_hardwarelcm +809 Can change Hardware Notice 207 change_hardwarelcm +810 Can delete Hardware Notice 207 delete_hardwarelcm +811 Can view Hardware Notice 207 view_hardwarelcm +812 Can add Software 86 add_softwarelcm +813 Can change Software 86 change_softwarelcm +814 Can delete Software 86 delete_softwarelcm +815 Can view Software 86 view_softwarelcm +816 Can add Validated Software 208 add_validatedsoftwarelcm +817 Can change Validated Software 208 change_validatedsoftwarelcm +818 Can delete Validated Software 208 delete_validatedsoftwarelcm +819 Can view Validated Software 208 view_validatedsoftwarelcm +820 Can add Vendor 209 add_providerlcm +821 Can change Vendor 209 change_providerlcm +822 Can delete Vendor 209 delete_providerlcm +823 Can view Vendor 209 view_providerlcm +824 Can add Contract 88 add_contractlcm +825 Can change Contract 88 change_contractlcm +826 Can delete Contract 88 delete_contractlcm +827 Can view Contract 88 view_contractlcm +828 Can add Contract POC 210 add_contactlcm +829 Can change Contract POC 210 change_contactlcm +830 Can delete Contract POC 210 delete_contactlcm +831 Can view Contract POC 210 view_contactlcm +832 Can add Inventory Item Software Validation Report 211 add_inventoryitemsoftwarevalidationresult +833 Can change Inventory Item Software Validation Report 211 change_inventoryitemsoftwarevalidationresult +834 Can delete Inventory Item Software Validation Report 211 delete_inventoryitemsoftwarevalidationresult +835 Can view Inventory Item Software Validation Report 211 view_inventoryitemsoftwarevalidationresult +836 Can add Device Software Validation Report 212 add_devicesoftwarevalidationresult +837 Can change Device Software Validation Report 212 change_devicesoftwarevalidationresult +838 Can delete Device Software Validation Report 212 delete_devicesoftwarevalidationresult +839 Can view Device Software Validation Report 212 view_devicesoftwarevalidationresult +840 Can add CVE 89 add_cvelcm +841 Can change CVE 89 change_cvelcm +842 Can delete CVE 89 delete_cvelcm +843 Can view CVE 89 view_cvelcm +844 Can add Vulnerability 213 add_vulnerabilitylcm +845 Can change Vulnerability 213 change_vulnerabilitylcm +846 Can delete Vulnerability 213 delete_vulnerabilitylcm +847 Can view Vulnerability 213 view_vulnerabilitylcm +848 Can add Software Image 214 add_softwareimagelcm +849 Can change Software Image 214 change_softwareimagelcm +850 Can delete Software Image 214 delete_softwareimagelcm +851 Can view Software Image 214 view_softwareimagelcm +\. + + +-- +-- Data for Name: auth_user; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.auth_user (password, last_login, is_superuser, username, first_name, last_name, email, is_staff, is_active, date_joined, id, config_data) FROM stdin; +pbkdf2_sha256$260000$IQv5widKbHmx3NpVA9rWjS$NJjrEUYKAaYRuH3MGch9G8FCKbLUmSo5tGTB5LcLZqc= \N f user1 f t 2023-09-19 08:09:40.185878+00 7c0ac3fc-6e6e-4991-8d89-9b69bf33a32a {} +pbkdf2_sha256$260000$D8tS2KvAQTxPsXZubl5Bxq$uzMz5UVTf6jwxPsMxykU5rANh0dLQe56mkmc5/PgjLw= \N f user2 f t 2023-09-19 08:09:40.44391+00 b413e569-2560-423c-b5da-9aa9818d7429 {} +pbkdf2_sha256$260000$oh3AOtU3KbjqFTnixTTpgo$N+/wii8aIoW0sD1zQ74AHH9kP+E7KbJKywoXSsFAVkY= \N f demo f t 2023-09-19 08:09:40.694+00 8e34712e-2fef-47a4-b207-532f655a71b5 {} +pbkdf2_sha256$260000$sIWMu7UldZRV2OLf31cP6p$7pG/a80rXyNxqT4Gk+JUSPrfZGQwvevgwK0tWfcbWh4= \N t ntc t t 2023-09-19 08:09:40.9207+00 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} +pbkdf2_sha256$260000$oq5xqEqJTbdcoMqpIBB38F$px36AppDfL9v1z3hPPcyyAPnsHoXRA57qHmkeOigofQ= \N t admin admin@example.com t t 2023-09-19 08:10:04.394418+00 ba9e3e28-d0eb-46f6-875c-2e6b96f0a122 {} +\. + + +-- +-- Data for Name: auth_user_groups; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.auth_user_groups (id, user_id, group_id) FROM stdin; +1 7c0ac3fc-6e6e-4991-8d89-9b69bf33a32a 1 +2 b413e569-2560-423c-b5da-9aa9818d7429 2 +3 8e34712e-2fef-47a4-b207-532f655a71b5 3 +\. + + +-- +-- Data for Name: auth_user_user_permissions; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.auth_user_user_permissions (id, user_id, permission_id) FROM stdin; +\. + + +-- +-- Data for Name: circuits_circuit; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.circuits_circuit (id, created, last_updated, _custom_field_data, cid, install_date, commit_rate, description, comments, provider_id, status_id, tenant_id, type_id, termination_a_id, termination_z_id) FROM stdin; +b63967a8-29da-42a2-9e6f-c3407cd5b386 2023-09-19 2023-09-19 08:10:07.378594+00 {} cog-39566069475427333 \N \N 16556a0e-9dcd-4225-a40c-319fb16784b1 fb4ab99d-6d3d-4763-8422-9941089237b0 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 a978f8bc-36b6-4390-ac29-95ff16fd6a6e \N +b6af66c2-3ed1-417d-b51f-88a9ce79ba1a 2023-09-19 2023-09-19 08:10:07.422858+00 {} cog-39566069475427369 \N \N 16556a0e-9dcd-4225-a40c-319fb16784b1 fb4ab99d-6d3d-4763-8422-9941089237b0 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 196e507e-c007-408e-b0a1-1524ab5681ec \N +c6d8b1e0-7f69-4a1c-8793-f4a29652dba7 2023-09-19 2023-09-19 08:10:07.465945+00 {} ver-39566069475473989 \N \N 6b268df7-c6ba-4783-ae89-0840dd690e49 fb4ab99d-6d3d-4763-8422-9941089237b0 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 202e5f20-018a-4266-a5b3-ff13b4cca1e8 \N +8b1e401d-2071-42a0-b643-f7d8168f29c5 2023-09-19 2023-09-19 08:10:07.509809+00 {} tel-39566069475474025 \N \N 1a61127c-09c1-44e9-bfee-e84215fa168c fb4ab99d-6d3d-4763-8422-9941089237b0 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 10bc9bcd-962b-4560-bfe5-86f3d792f098 \N +a8e8e14c-0a9e-40f5-bf9c-6a231a9bb09f 2023-09-19 2023-09-19 08:10:15.763391+00 {} ntt-92882225616438277 \N \N c39947f0-8564-4c82-be16-eb5bad9fc335 7f380257-6839-4ba4-91ee-348732d95056 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 3d3f20f0-cd5e-4684-9c08-27c724dac132 \N +a759a45a-5db5-4f1d-b322-f8df348902b1 2023-09-19 2023-09-19 08:10:15.806424+00 {} tel-92882225616438313 \N \N 1a61127c-09c1-44e9-bfee-e84215fa168c 7f380257-6839-4ba4-91ee-348732d95056 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 9990294d-6dd0-4deb-8818-e19c7ad35d4f \N +54da6afa-058e-4367-aeb6-883729a8ad8e 2023-09-19 2023-09-19 08:10:15.849255+00 {} cog-92882225616484933 \N \N 16556a0e-9dcd-4225-a40c-319fb16784b1 7f380257-6839-4ba4-91ee-348732d95056 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 edaac17c-fee8-47b4-9438-75fc8255f879 \N +0ca0aabc-bc4e-49d6-b6ab-85a4ad578447 2023-09-19 2023-09-19 08:10:15.891977+00 {} cog-92882225616484969 \N \N 16556a0e-9dcd-4225-a40c-319fb16784b1 7f380257-6839-4ba4-91ee-348732d95056 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a3407f76-0481-48e6-9ad5-13d166013895 0f62ba4e-13dc-465b-b363-6f630347f047 \N +6868c1af-8d4a-4524-9bdc-8edd7c904b59 2023-09-19 2023-09-19 08:10:28.198685+00 {} ver-42999360232801285 \N \N 6b268df7-c6ba-4783-ae89-0840dd690e49 7f380257-6839-4ba4-91ee-348732d95056 6d31d164-645b-47af-91c2-8815ac6c077e a3407f76-0481-48e6-9ad5-13d166013895 92152ff0-7eff-4ed1-8488-2010632e4954 \N +97294f3c-f6bd-4128-826a-8d5233c1270d 2023-09-19 2023-09-19 08:10:28.240924+00 {} ver-42999360232801321 \N \N 6b268df7-c6ba-4783-ae89-0840dd690e49 7f380257-6839-4ba4-91ee-348732d95056 6d31d164-645b-47af-91c2-8815ac6c077e a3407f76-0481-48e6-9ad5-13d166013895 1fad126f-3456-426d-99be-a129522c0afc \N +ee4d2904-f91e-4968-8b3a-44686ec768f6 2023-09-19 2023-09-19 08:10:28.280971+00 {} ver-42999360232847941 \N \N 6b268df7-c6ba-4783-ae89-0840dd690e49 7f380257-6839-4ba4-91ee-348732d95056 6d31d164-645b-47af-91c2-8815ac6c077e a3407f76-0481-48e6-9ad5-13d166013895 519dcb44-f181-4dfa-adc2-caf8b8ab39a7 \N +2954a9c3-8d08-44db-b93c-2e000314b31a 2023-09-19 2023-09-19 08:10:28.32154+00 {} cog-42999360232847977 \N \N 16556a0e-9dcd-4225-a40c-319fb16784b1 7f380257-6839-4ba4-91ee-348732d95056 6d31d164-645b-47af-91c2-8815ac6c077e a3407f76-0481-48e6-9ad5-13d166013895 a57b40b0-42ac-458b-a474-f09ddfb4fd6b \N +\. + + +-- +-- Data for Name: circuits_circuittermination; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.circuits_circuittermination (id, _cable_peer_id, term_side, port_speed, upstream_speed, xconnect_id, pp_info, description, _cable_peer_type_id, _path_id, cable_id, circuit_id, site_id, provider_network_id, _custom_field_data, created, last_updated, location_id) FROM stdin; +a978f8bc-36b6-4390-ac29-95ff16fd6a6e f75fa9dd-597a-4985-82dc-7dcd428e9ef1 A \N \N 4 d798f256-6b26-443d-ac90-97de2d212c15 eda55c48-538c-45e6-82b2-dcd75ec06741 b63967a8-29da-42a2-9e6f-c3407cd5b386 b909f1f1-c702-4adc-80f1-ec5018737592 \N {} 2023-09-19 2023-09-19 08:10:07.37713+00 \N +196e507e-c007-408e-b0a1-1524ab5681ec 02783645-57c4-459d-b43d-5b8ccabd8026 A \N \N 4 37d151df-5661-492d-b73a-60a19262b900 8389046b-ced9-4c0b-9c30-5466b7763ebf b6af66c2-3ed1-417d-b51f-88a9ce79ba1a b909f1f1-c702-4adc-80f1-ec5018737592 \N {} 2023-09-19 2023-09-19 08:10:07.421577+00 \N +202e5f20-018a-4266-a5b3-ff13b4cca1e8 5f2654c9-81d2-4862-bab1-ffb897829334 A \N \N 4 a2e8e5a2-ade3-49df-9964-181d5c738a1f e76145bc-897d-493b-aefa-5a5ba4aaf8dc c6d8b1e0-7f69-4a1c-8793-f4a29652dba7 b909f1f1-c702-4adc-80f1-ec5018737592 \N {} 2023-09-19 2023-09-19 08:10:07.464713+00 \N +10bc9bcd-962b-4560-bfe5-86f3d792f098 aed29452-c3bf-4a6c-9e9e-de9f83608e88 A \N \N 4 b1d83fca-60ee-4f03-a1d3-d71335dffa68 53f165dc-f216-423c-90f6-082e7085f7aa 8b1e401d-2071-42a0-b643-f7d8168f29c5 b909f1f1-c702-4adc-80f1-ec5018737592 \N {} 2023-09-19 2023-09-19 08:10:07.508455+00 \N +3d3f20f0-cd5e-4684-9c08-27c724dac132 4cb24a05-363c-4cba-80d1-8e97bce198d3 A \N \N 4 eec86477-59dc-4bb6-823c-6a74330b9c89 70a617dd-03c8-4def-ac6a-ac1c0198e9b5 a8e8e14c-0a9e-40f5-bf9c-6a231a9bb09f ee6928a6-7b7d-451b-b4c3-ac4b8b987286 \N {} 2023-09-19 2023-09-19 08:10:15.762087+00 \N +9990294d-6dd0-4deb-8818-e19c7ad35d4f c8f831c0-f008-45ba-a789-20c2626e6921 A \N \N 4 2f510034-b088-465f-b575-d2ecf51b9484 4c32db91-5a3d-4e3e-b62e-2b12e453d631 a759a45a-5db5-4f1d-b322-f8df348902b1 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 \N {} 2023-09-19 2023-09-19 08:10:15.805048+00 \N +edaac17c-fee8-47b4-9438-75fc8255f879 edbdc7f1-9209-4710-a219-c325d0c918e0 A \N \N 4 f0988a92-26c1-4b93-a70f-887272322726 d985e1a1-763b-4581-9c34-d93b0a70a2af 54da6afa-058e-4367-aeb6-883729a8ad8e ee6928a6-7b7d-451b-b4c3-ac4b8b987286 \N {} 2023-09-19 2023-09-19 08:10:15.847975+00 \N +0f62ba4e-13dc-465b-b363-6f630347f047 c682cb76-aff2-4612-ac09-06c9479f51b9 A \N \N 4 33b3f4b8-a308-46b9-ad89-ecd9f248388c 7df60531-e97a-493b-9deb-4272a835a34f 0ca0aabc-bc4e-49d6-b6ab-85a4ad578447 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 \N {} 2023-09-19 2023-09-19 08:10:15.890783+00 \N +92152ff0-7eff-4ed1-8488-2010632e4954 305b8153-e80c-42e5-b40b-988dbbacadf6 A \N \N 4 18904166-1173-4714-be4a-2af3d2192972 383493de-5e77-41ff-8b20-a28748644eb7 6868c1af-8d4a-4524-9bdc-8edd7c904b59 fdcd398c-6a1b-4713-89d2-de930637a38b \N {} 2023-09-19 2023-09-19 08:10:28.19719+00 \N +1fad126f-3456-426d-99be-a129522c0afc 14ea3cf8-07a6-4363-a61b-284288cda5c4 A \N \N 4 50e593fe-6f1c-43f2-8d40-299c9778ffeb 76bc6873-315a-429f-be61-14593961749f 97294f3c-f6bd-4128-826a-8d5233c1270d fdcd398c-6a1b-4713-89d2-de930637a38b \N {} 2023-09-19 2023-09-19 08:10:28.239734+00 \N +519dcb44-f181-4dfa-adc2-caf8b8ab39a7 a6a98b4b-5214-4cdd-be68-0f567c56f509 A \N \N 4 0a42b104-2f20-4fa0-9f92-7d38d5f7181a 372db88d-08ba-4fdd-b3c3-0ece833519be ee4d2904-f91e-4968-8b3a-44686ec768f6 fdcd398c-6a1b-4713-89d2-de930637a38b \N {} 2023-09-19 2023-09-19 08:10:28.279833+00 \N +a57b40b0-42ac-458b-a474-f09ddfb4fd6b db6b2d90-7792-4ad1-b8d7-d84b3dbed0ac A \N \N 4 83a95adf-d17a-4d01-b1f0-9b3f2ca81864 ae77c6bb-1db5-4c78-92c8-cfa09b03d6a9 2954a9c3-8d08-44db-b93c-2e000314b31a fdcd398c-6a1b-4713-89d2-de930637a38b \N {} 2023-09-19 2023-09-19 08:10:28.320298+00 \N +\. + + +-- +-- Data for Name: circuits_circuittype; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.circuits_circuittype (id, created, last_updated, _custom_field_data, name, slug, description) FROM stdin; +f4fad91a-193d-4dd7-a942-3dd954847b28 2023-09-19 2023-09-19 08:09:43.502291+00 {} Private Peering private-peering +ccc7e5ce-ac14-465d-9280-564e93a785ad 2023-09-19 2023-09-19 08:09:43.506191+00 {} IX ix +a3407f76-0481-48e6-9ad5-13d166013895 2023-09-19 2023-09-19 08:09:43.509584+00 {} Transit transit +67608f79-68c5-4cff-bad1-71c11f00a5fc 2023-09-19 2023-09-19 08:09:43.51305+00 {} MPLS mpls +be16d575-f878-42b8-b5cd-ab3ba34e4a6c 2023-09-19 2023-09-19 08:09:43.516599+00 {} Dark Fiber dark-fiber +\. + + +-- +-- Data for Name: circuits_provider; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.circuits_provider (id, created, last_updated, _custom_field_data, name, slug, asn, account, portal_url, noc_contact, admin_contact, comments) FROM stdin; +3ba3f410-7fd3-45f5-aa2c-db5070bb8196 2023-09-19 2023-09-19 08:09:43.443146+00 {} AT&T att 7018 +16556a0e-9dcd-4225-a40c-319fb16784b1 2023-09-19 2023-09-19 08:09:43.447221+00 {} Cogent cogent 174 +ff28f942-1a24-4279-a502-c45e938f7589 2023-09-19 2023-09-19 08:09:43.450883+00 {} Deutsche Telekom deutsche-telekom 3320 +85db4e38-cd9b-4b79-b7fd-f404cf63bdf0 2023-09-19 2023-09-19 08:09:43.454494+00 {} GTT gtt 3257 +5c242241-6e11-45d6-acd1-1045ecd8fe88 2023-09-19 2023-09-19 08:09:43.458288+00 {} Liberty Global liberty-global 6830 +61abdc78-8c73-4a3f-8839-85abc3a0f11e 2023-09-19 2023-09-19 08:09:43.461755+00 {} Lumen Technologies lumen-technologies 3356 +c39947f0-8564-4c82-be16-eb5bad9fc335 2023-09-19 2023-09-19 08:09:43.465917+00 {} NTT ntt 2914 +dfd42b50-659c-48a3-8da9-ad46c3f1307c 2023-09-19 2023-09-19 08:09:43.469552+00 {} Orange orange 5511 +1fd548b9-ff01-4349-a290-229db15af630 2023-09-19 2023-09-19 08:09:43.473102+00 {} PCCW Global pccw-global 3491 +722e375a-f153-4335-8fed-6740f9ea1ba4 2023-09-19 2023-09-19 08:09:43.476632+00 {} Sprint sprint 1239 +60e5e9cf-7675-473c-992d-1d31233fd250 2023-09-19 2023-09-19 08:09:43.480195+00 {} Tata Communications tata-communications 6453 +66c19682-b520-4c23-8d5e-72775e7f9bce 2023-09-19 2023-09-19 08:09:43.483726+00 {} Telecom Italia telecom-italia 6762 +1a61127c-09c1-44e9-bfee-e84215fa168c 2023-09-19 2023-09-19 08:09:43.48731+00 {} Telia Carrier telia-carrier 1299 +ac6c0b53-2411-41a1-aeef-8c7c0bd198da 2023-09-19 2023-09-19 08:09:43.490825+00 {} Telxius telxius 12956 +6b268df7-c6ba-4783-ae89-0840dd690e49 2023-09-19 2023-09-19 08:09:43.494437+00 {} Verizon verizon 701 +dfe5f192-30de-40b4-8cf8-5049e87afb54 2023-09-19 2023-09-19 08:09:43.497935+00 {} Zayo zayo 6461 +\. + + +-- +-- Data for Name: circuits_providernetwork; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.circuits_providernetwork (id, created, last_updated, _custom_field_data, name, slug, description, comments, provider_id) FROM stdin; +\. + + +-- +-- Data for Name: constance_config; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.constance_config (id, key, value) FROM stdin; +1 constance:nautobot:CHANGELOG_RETENTION gAJLWi4= +2 constance:nautobot:PREFER_IPV4 gAKJLg== +\. + + +-- +-- Data for Name: dcim_cable; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_cable (id, created, last_updated, _custom_field_data, termination_a_id, termination_b_id, type, label, color, length, length_unit, _abs_length, _termination_a_device_id, _termination_b_device_id, status_id, termination_a_type_id, termination_b_type_id) FROM stdin; +4a141b71-2d29-4524-bb30-a872889d182c 2023-09-19 2023-09-19 08:10:04.946563+00 {} 7320f8e3-2d6d-4e79-aecb-ca1cb982a11c 1e0f6ad8-62f2-400a-8f2c-1bfeb7e84519 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b bed003a4-068f-493c-8519-b7ff3ab94f63 d816709d-3338-4522-868e-f86c19522ffb 4 4 +1db060af-3203-4e02-b63e-3d31b131432d 2023-09-19 2023-09-19 08:10:05.381177+00 {} 1b1b6868-e3f8-44ba-9c3a-cfbc0a69b800 d5b8a4e1-7043-41e9-8d1e-e110ade7973c \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b bed003a4-068f-493c-8519-b7ff3ab94f63 d816709d-3338-4522-868e-f86c19522ffb 4 4 +01f68cee-9bab-49db-b16d-d207376e436a 2023-09-19 2023-09-19 08:10:05.558731+00 {} 4528f8bf-75ef-4f8f-867a-5e1634b893cf 69b084a1-d987-44e2-991f-f500acfd0d60 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b a6751a1a-e274-445d-ab2f-06ead1cb6d3c d816709d-3338-4522-868e-f86c19522ffb 4 4 +c1e99fd4-fe13-4020-8650-d724be3354a0 2023-09-19 2023-09-19 08:10:05.735017+00 {} 48757a3d-13f0-408e-9863-3af97189ff2d 9ab0df39-4525-473c-b134-d903f406aeab \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 a6751a1a-e274-445d-ab2f-06ead1cb6d3c d816709d-3338-4522-868e-f86c19522ffb 4 4 +6412c2c9-f51f-4d7b-b064-4e9edb6c555c 2023-09-19 2023-09-19 08:10:05.9093+00 {} b292811f-370b-4a74-b584-779facc0bb68 bf4b250b-fc2b-4905-8476-32b56bb66958 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 6be296b5-5db3-407b-915b-ebcfa5d73aa3 d816709d-3338-4522-868e-f86c19522ffb 4 4 +f3fdae41-9b74-4cbf-88bc-94e4e282fa6c 2023-09-19 2023-09-19 08:10:06.09912+00 {} ef8ad9c2-3d78-4434-b898-bc230b9f7c79 6d95cdbb-0df4-47d7-95b4-009273c74611 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 6be296b5-5db3-407b-915b-ebcfa5d73aa3 d816709d-3338-4522-868e-f86c19522ffb 4 4 +c5393878-1472-4920-b3d5-046b19f34d4a 2023-09-19 2023-09-19 08:10:06.280062+00 {} 0e4d86be-e92a-4b26-b2c7-1961d3668344 3d9f069c-734b-4fc9-9eb7-34b7d34e5441 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 5aa04755-8fbe-4378-97ed-b23f0ac0e928 d816709d-3338-4522-868e-f86c19522ffb 4 4 +a8634add-2b72-41c7-84e2-37e03828d2ad 2023-09-19 2023-09-19 08:10:06.422033+00 {} 92c887ed-b2a5-4a63-9a97-6756b9258842 bd23378a-dbc4-4dc0-be7b-ce989834d3fd \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 5aa04755-8fbe-4378-97ed-b23f0ac0e928 d816709d-3338-4522-868e-f86c19522ffb 4 4 +cc244b6c-fe94-406f-ba52-64daf93f47a2 2023-09-19 2023-09-19 08:10:06.542407+00 {} 328436af-6df3-41aa-9839-36fca96a1771 39c12269-1ccc-4b47-8788-9830e3b6ee53 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 17fa82e4-d0ad-4092-b3c0-1f597bc84883 d816709d-3338-4522-868e-f86c19522ffb 4 4 +2dca496e-7f78-43d5-ad27-2f753208311f 2023-09-19 2023-09-19 08:10:06.622806+00 {} cb47baba-9476-4dfc-a334-7d244d2e2be1 92ad1c81-fc83-49c0-bf9b-bb727f5df8a4 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 17fa82e4-d0ad-4092-b3c0-1f597bc84883 d816709d-3338-4522-868e-f86c19522ffb 4 4 +604ee9e4-6852-4c9a-8ba1-2ffa61623544 2023-09-19 2023-09-19 08:10:06.705831+00 {} 27ce4598-c7a6-4307-aa86-524149200ec1 adbb105c-ef41-4c56-83f9-3decf72fa469 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 684ba856-7ace-4a36-9c56-e646e71ebb6a d816709d-3338-4522-868e-f86c19522ffb 4 4 +c6652864-d187-492d-8c9f-84f754d58080 2023-09-19 2023-09-19 08:10:06.786858+00 {} c885b7d6-df35-41c6-89d3-7d570a01b37f f25fd314-9571-404f-ba61-5e33d4808523 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 684ba856-7ace-4a36-9c56-e646e71ebb6a d816709d-3338-4522-868e-f86c19522ffb 4 4 +b7a57d39-0e67-4882-a9e7-895d102ca961 2023-09-19 2023-09-19 08:10:06.869186+00 {} b0fab83c-27f0-4789-9a1a-153dbbc5674f 15ee8663-a4c9-4e13-88c9-2ad2533f8a58 \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b bb5af4d5-3007-4d6a-8965-10db2ec91b76 d816709d-3338-4522-868e-f86c19522ffb 4 4 +2d2027c5-fbdb-410d-81b5-56127e77d859 2023-09-19 2023-09-19 08:10:06.949877+00 {} b20ab714-a9bb-4d57-bf1b-29e93cbcce0f b8ae6d6f-920c-437f-9610-3c67eea45262 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 bb5af4d5-3007-4d6a-8965-10db2ec91b76 d816709d-3338-4522-868e-f86c19522ffb 4 4 +4278d357-0d23-4c8d-9827-29e3164b34a9 2023-09-19 2023-09-19 08:10:07.032925+00 {} ccd2f499-a160-443b-9795-f8d35acdc6cc d53f715c-c93b-4aaf-88a4-c4b95407326f \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 d816709d-3338-4522-868e-f86c19522ffb 4 4 +381a0e8a-f1fb-430b-84e2-c7bcd91b8920 2023-09-19 2023-09-19 08:10:07.113868+00 {} b39b674d-df06-4813-a0bd-eefec8fae300 f1cf411b-411e-4bde-95a3-e2ec64ac1ff1 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 d816709d-3338-4522-868e-f86c19522ffb 4 4 +e7688daa-e5c7-42e9-b036-f8429a639a51 2023-09-19 2023-09-19 08:10:07.196947+00 {} fb0e845d-5cd1-4e23-8021-69d3b84b8a9c babf2eca-c221-4feb-a649-b469302fbf0b \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b c2fe5345-d2c7-4214-8406-31b2b2b87aa2 d816709d-3338-4522-868e-f86c19522ffb 4 4 +8e511f70-1553-4561-a4f3-afd30dd671c6 2023-09-19 2023-09-19 08:10:07.27807+00 {} 80a51250-4175-49a6-984e-276be502fdb5 f96de7a0-c907-4600-8ef6-fbacdbfce491 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 c2fe5345-d2c7-4214-8406-31b2b2b87aa2 d816709d-3338-4522-868e-f86c19522ffb 4 4 +eda55c48-538c-45e6-82b2-dcd75ec06741 2023-09-19 2023-09-19 08:10:07.371336+00 {} f75fa9dd-597a-4985-82dc-7dcd428e9ef1 a978f8bc-36b6-4390-ac29-95ff16fd6a6e \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +8389046b-ced9-4c0b-9c30-5466b7763ebf 2023-09-19 2023-09-19 08:10:07.415986+00 {} 02783645-57c4-459d-b43d-5b8ccabd8026 196e507e-c007-408e-b0a1-1524ab5681ec \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +e76145bc-897d-493b-aefa-5a5ba4aaf8dc 2023-09-19 2023-09-19 08:10:07.459425+00 {} 5f2654c9-81d2-4862-bab1-ffb897829334 202e5f20-018a-4266-a5b3-ff13b4cca1e8 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +53f165dc-f216-423c-90f6-082e7085f7aa 2023-09-19 2023-09-19 08:10:07.502842+00 {} aed29452-c3bf-4a6c-9e9e-de9f83608e88 10bc9bcd-962b-4560-bfe5-86f3d792f098 \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +7f675601-42da-444b-b994-88f229350ab4 2023-09-19 2023-09-19 08:10:14.089441+00 {} 06d20bba-949b-4273-9463-01dba8f644cf 1c95cc4d-eab8-4041-985c-77614056005a \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc b1d1e038-acb3-468f-810b-5d0f549a66cc d816709d-3338-4522-868e-f86c19522ffb 4 4 +3635f5ca-b1ef-4fa5-bdc6-0e6a59539985 2023-09-19 2023-09-19 08:10:14.267385+00 {} d758f08c-2994-4638-b0b4-41099f599981 af41be32-c31e-4550-862a-2e80956ca407 \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc b1d1e038-acb3-468f-810b-5d0f549a66cc d816709d-3338-4522-868e-f86c19522ffb 4 4 +0f21ae3c-bc79-4183-a852-56fef4d18258 2023-09-19 2023-09-19 08:10:14.355305+00 {} 0fd015fb-4384-4e98-a83d-700c601678da 99f4be16-7595-47c3-b701-c4d3222418e4 \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc c2bb0304-fcac-4397-9d63-e7503688aae6 d816709d-3338-4522-868e-f86c19522ffb 4 4 +c58bc2ba-b05d-4b33-8d1b-fb105b77ab24 2023-09-19 2023-09-19 08:10:14.43767+00 {} ed0e4858-e34a-4f20-8f18-9257bb4e36e5 1825310b-6b1f-46e0-a9b1-55c830206d68 \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc c2bb0304-fcac-4397-9d63-e7503688aae6 d816709d-3338-4522-868e-f86c19522ffb 4 4 +78fce191-9cf3-43dd-bc54-d2ac0fb7466a 2023-09-19 2023-09-19 08:10:14.546959+00 {} a275628b-47b8-43c7-9c2a-33c6e49362f6 8cc336a6-e575-4c50-8ad4-cbec52ad0526 \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae d816709d-3338-4522-868e-f86c19522ffb 4 4 +b1e9efac-ea9d-4b3e-b259-4b29bb074bde 2023-09-19 2023-09-19 08:10:14.627881+00 {} 1fd56ad1-a795-4302-9b28-ca6655d87956 291e676f-26a9-4589-aaeb-a12f3c8a1bba \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae d816709d-3338-4522-868e-f86c19522ffb 4 4 +26be4ae7-8b6f-4a35-a737-fdd87b45dab9 2023-09-19 2023-09-19 08:10:14.711724+00 {} 6bee7896-71cd-4864-b0f5-0fc5836d4e07 47b26f21-668a-4c86-b37b-54d65373427c \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc dbf9eba6-2713-48f9-94df-7fa36fd3880a d816709d-3338-4522-868e-f86c19522ffb 4 4 +e1cda597-2fd3-4a39-b813-d42d238f9a9a 2023-09-19 2023-09-19 08:10:14.793724+00 {} 7f1b1ee2-cca8-4ce7-83e7-ddfc1488a932 a14f8127-92c5-41dc-a210-330c36287814 \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc dbf9eba6-2713-48f9-94df-7fa36fd3880a d816709d-3338-4522-868e-f86c19522ffb 4 4 +df3b998b-0ca5-4f00-98d0-75a1f5afc6a9 2023-09-19 2023-09-19 08:10:14.881547+00 {} bca969b1-264d-482a-9986-0e155e2c0d01 50e63731-21ff-4bc1-a900-ed71f1c25b1f \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc bf032a0f-20ad-4ae4-a37b-a4971292c8b3 d816709d-3338-4522-868e-f86c19522ffb 4 4 +854cf3a8-ab85-4da2-88e2-42cd95a26f61 2023-09-19 2023-09-19 08:10:14.962928+00 {} 0ea49852-bcf2-4221-9413-9587b2f501e8 7c98085d-64fc-4353-af04-7502363414cd \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc bf032a0f-20ad-4ae4-a37b-a4971292c8b3 d816709d-3338-4522-868e-f86c19522ffb 4 4 +ebf81336-ebd6-407b-89cf-badd389d78d6 2023-09-19 2023-09-19 08:10:15.04446+00 {} 658a8717-44a3-4770-ad5a-0aa3a1e9edcb 4e7e06ba-0a67-40db-a13a-b7a1d0ff429d \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 06fa92a5-cddc-47aa-9a02-22b140d16be6 d816709d-3338-4522-868e-f86c19522ffb 4 4 +94704017-dd01-474d-8e73-3244c649fdeb 2023-09-19 2023-09-19 08:10:15.12447+00 {} a88d0ca0-81d6-4c64-838c-83668983f923 893bac86-8f1b-4539-ad0d-f135002a1547 \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc 06fa92a5-cddc-47aa-9a02-22b140d16be6 d816709d-3338-4522-868e-f86c19522ffb 4 4 +881e98e4-154d-496f-855f-592377f54f4a 2023-09-19 2023-09-19 08:10:15.22554+00 {} d8dff6c9-6185-4d8b-8327-a99ce574b62f 16a2a324-4396-4672-aeef-29f47c359a60 \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc ebe97465-935f-4bf8-b29a-d0e1100d5528 d816709d-3338-4522-868e-f86c19522ffb 4 4 +04b8b8d3-bd38-4355-9b2c-9b455b3ce7af 2023-09-19 2023-09-19 08:10:15.319315+00 {} 72c992f5-62da-489d-abee-c14f62f52097 b8de16c3-d047-4665-9c47-4620be7b187c \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc ebe97465-935f-4bf8-b29a-d0e1100d5528 d816709d-3338-4522-868e-f86c19522ffb 4 4 +fbf5979c-3bbb-4b9f-b121-da5609b87deb 2023-09-19 2023-09-19 08:10:15.404708+00 {} 1912fee0-5a5b-4f49-ba2a-7fa99715976d 91a64db3-f588-4ccd-aa3e-94159e16d098 \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 1724a7eb-1663-47da-abaa-00b6271c9754 d816709d-3338-4522-868e-f86c19522ffb 4 4 +79dab99f-4df3-46ca-93c4-aa47c128cb1c 2023-09-19 2023-09-19 08:10:15.498672+00 {} b177c282-969a-409d-ba36-2d6594e21550 e250cb5b-4a82-4dbb-8e9e-18ab8798cfec \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc 1724a7eb-1663-47da-abaa-00b6271c9754 d816709d-3338-4522-868e-f86c19522ffb 4 4 +f17bdbbc-e4e9-453a-ae35-2262453e989a 2023-09-19 2023-09-19 08:10:15.585349+00 {} ce01a4bd-4ea9-4f29-af12-9270857547f6 146e02be-a8b6-488a-a197-9f197ecb100c \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc bf4037a6-1802-48e9-8e95-3fd2326f4bdf d816709d-3338-4522-868e-f86c19522ffb 4 4 +c2508fbc-2280-423e-a524-012caabd1541 2023-09-19 2023-09-19 08:10:15.669378+00 {} 7b9a34be-0f8e-4a42-a9f2-925cc836a623 f6f159b2-79c8-4091-9573-35a6f9b4754c \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc bf4037a6-1802-48e9-8e95-3fd2326f4bdf d816709d-3338-4522-868e-f86c19522ffb 4 4 +70a617dd-03c8-4def-ac6a-ac1c0198e9b5 2023-09-19 2023-09-19 08:10:15.756311+00 {} 4cb24a05-363c-4cba-80d1-8e97bce198d3 3d3f20f0-cd5e-4684-9c08-27c724dac132 \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +4c32db91-5a3d-4e3e-b62e-2b12e453d631 2023-09-19 2023-09-19 08:10:15.79965+00 {} c8f831c0-f008-45ba-a789-20c2626e6921 9990294d-6dd0-4deb-8818-e19c7ad35d4f \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +d985e1a1-763b-4581-9c34-d93b0a70a2af 2023-09-19 2023-09-19 08:10:15.842621+00 {} edbdc7f1-9209-4710-a219-c325d0c918e0 edaac17c-fee8-47b4-9438-75fc8255f879 \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +7df60531-e97a-493b-9deb-4272a835a34f 2023-09-19 2023-09-19 08:10:15.885403+00 {} c682cb76-aff2-4612-ac09-06c9479f51b9 0f62ba4e-13dc-465b-b363-6f630347f047 \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +a7240ec2-73f8-43d9-a0c6-297e24d40893 2023-09-19 2023-09-19 08:10:27.277194+00 {} db739229-5dcd-4d05-94f5-52bd234647b9 a1e88275-4a5c-4b89-8017-4ad695ff14f8 \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 16745b0e-5964-4f3e-99e3-aa1646f275f5 d816709d-3338-4522-868e-f86c19522ffb 4 4 +c66391d2-fce2-4b81-adf9-03a1649f8d7e 2023-09-19 2023-09-19 08:10:27.463876+00 {} 2aa91dab-b223-48ff-96de-03e1a71ffa56 24d7e176-9284-4e90-ae96-383a2133cb1c \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 16745b0e-5964-4f3e-99e3-aa1646f275f5 d816709d-3338-4522-868e-f86c19522ffb 4 4 +c4f8906a-1d14-4ab2-8332-a5406c85717d 2023-09-19 2023-09-19 08:10:27.547961+00 {} aec8c705-f321-4d0c-9a66-29ca6e23995b 2829d904-99cf-4100-9b89-ca40bdafd284 \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e ec08f4ed-e461-4aac-8015-9a1daa49fae6 d816709d-3338-4522-868e-f86c19522ffb 4 4 +defbde0a-546c-48a0-9f50-5638ae51e3f3 2023-09-19 2023-09-19 08:10:27.630678+00 {} b572e507-1492-4722-be8a-d1668ff1011c 269811e4-2d04-4396-8eab-3bffb1556a60 \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 ec08f4ed-e461-4aac-8015-9a1daa49fae6 d816709d-3338-4522-868e-f86c19522ffb 4 4 +9c1846a0-7565-47a6-b0c6-9502384c8582 2023-09-19 2023-09-19 08:10:27.71745+00 {} 8cd7bfcf-9a6f-4605-843a-418736ad7c5e 06b11a10-9918-4d96-9194-ccc202f9aa5d \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 0d12dbec-16f5-414f-ab68-cd3eda8edb9b d816709d-3338-4522-868e-f86c19522ffb 4 4 +7ee21d7a-27d6-4bd0-ae2f-a21c08afeea8 2023-09-19 2023-09-19 08:10:27.798042+00 {} d9f730a2-ce98-4c34-9db9-56be5abba079 a6d24885-2024-48ca-ba60-727802474b2d \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 0d12dbec-16f5-414f-ab68-cd3eda8edb9b d816709d-3338-4522-868e-f86c19522ffb 4 4 +6f30cd42-bf5f-447b-b7fe-b04a09513aa1 2023-09-19 2023-09-19 08:10:27.876388+00 {} 2e43df0e-86aa-498b-bf73-e22af4baa0f0 6f96fac1-0bbc-4544-9292-fb437ed9e73e \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 1642541a-a832-42b8-b80b-c661b9fdd9dc d816709d-3338-4522-868e-f86c19522ffb 4 4 +041a53b4-aec2-4c30-8df2-0df21ae14547 2023-09-19 2023-09-19 08:10:27.953508+00 {} be42d85a-b6b5-4126-b6e2-dfcd99117a31 93913062-d728-494d-b5bf-61f55e4302c0 \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 1642541a-a832-42b8-b80b-c661b9fdd9dc d816709d-3338-4522-868e-f86c19522ffb 4 4 +0d6832a5-71ff-412b-991c-58392176c200 2023-09-19 2023-09-19 08:10:28.030905+00 {} 571a071c-a01c-4ba8-b749-415d9c95665b 6ee18771-590a-4da9-8e06-f42a0c1346ea \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e f23f0755-7e34-4610-a5af-d21f4d669186 d816709d-3338-4522-868e-f86c19522ffb 4 4 +5df3deee-42e3-4a74-a6d5-eba60f1a3816 2023-09-19 2023-09-19 08:10:28.105973+00 {} aa11d7f2-7d54-41c5-8693-69d32ef6e5b0 9188b1c9-d827-437d-ac75-59561877b64c \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 f23f0755-7e34-4610-a5af-d21f4d669186 d816709d-3338-4522-868e-f86c19522ffb 4 4 +383493de-5e77-41ff-8b20-a28748644eb7 2023-09-19 2023-09-19 08:10:28.192153+00 {} 305b8153-e80c-42e5-b40b-988dbbacadf6 92152ff0-7eff-4ed1-8488-2010632e4954 \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +76bc6873-315a-429f-be61-14593961749f 2023-09-19 2023-09-19 08:10:28.234485+00 {} 14ea3cf8-07a6-4363-a61b-284288cda5c4 1fad126f-3456-426d-99be-a129522c0afc \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +372db88d-08ba-4fdd-b3c3-0ece833519be 2023-09-19 2023-09-19 08:10:28.274859+00 {} a6a98b4b-5214-4cdd-be68-0f567c56f509 519dcb44-f181-4dfa-adc2-caf8b8ab39a7 \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +ae77c6bb-1db5-4c78-92c8-cfa09b03d6a9 2023-09-19 2023-09-19 08:10:28.315333+00 {} db6b2d90-7792-4ad1-b8d7-d84b3dbed0ac a57b40b0-42ac-458b-a474-f09ddfb4fd6b \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N d816709d-3338-4522-868e-f86c19522ffb 4 97 +5b93c95b-605a-47c9-9b44-99eab39e6b2a 2023-09-19 2023-09-19 08:10:38.9908+00 {} e0d150e4-dbb6-4414-aa1d-f9f9fadecb1e 79a58def-4c93-43ce-b021-cfb07171f3ac \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd 80f9eb01-db6d-4939-9f2e-ef2c222cedee d816709d-3338-4522-868e-f86c19522ffb 4 4 +796c8da4-7137-4542-9a65-30c5b7274fdc 2023-09-19 2023-09-19 08:10:39.064948+00 {} 77173f36-7b17-4914-882c-5f8b66e6b6a7 114e1107-cad6-49a4-90f8-64510c3d2fb3 \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd 720ef39b-a75e-4681-ac70-4237598974d0 d816709d-3338-4522-868e-f86c19522ffb 4 4 +07100c5d-7537-4bf8-a6a8-e143fbf9479d 2023-09-19 2023-09-19 08:10:39.134108+00 {} 6b8ad446-36ca-4d35-b290-d21e2f0c760b 9ee067f2-f3c9-4eb2-aab0-30c6c39b3ff0 \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd 4f1092db-761d-4ae6-9d20-275e186b67ea d816709d-3338-4522-868e-f86c19522ffb 4 4 +789cc44e-2d91-4213-bdbf-167df0d60f3e 2023-09-19 2023-09-19 08:10:39.189454+00 {} 84f95280-f48f-46e2-b348-d9b31c087f8c e51dbb12-9e60-4c4c-adc4-60d9b1bf7cee \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee 720ef39b-a75e-4681-ac70-4237598974d0 d816709d-3338-4522-868e-f86c19522ffb 4 4 +71f0373d-6a67-48d3-bacc-f37e9f27d023 2023-09-19 2023-09-19 08:10:39.229763+00 {} d860a3b4-5224-420b-8797-0dde34bd2eea 229d6f26-00cb-4804-b2bc-3c40ea130d75 \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee 6442be3b-16d7-4788-ad3f-fb88282ea42d d816709d-3338-4522-868e-f86c19522ffb 4 4 +31f5e143-de2e-4c4c-b23a-9efd6c2fa7da 2023-09-19 2023-09-19 08:10:39.276927+00 {} 1142060d-5488-460e-87dc-c1fbc14126b1 991b9031-d92e-49d1-8189-cee52fa067a4 \N \N 720ef39b-a75e-4681-ac70-4237598974d0 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af d816709d-3338-4522-868e-f86c19522ffb 4 4 +f485f7d5-fefa-4f62-be92-d8140be6b46a 2023-09-19 2023-09-19 08:10:39.318862+00 {} c12205bc-0d17-4d6a-849c-1229fc0dc1f5 a6fea30f-2e31-4a7d-b682-ea677d622049 \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d b79eb1e8-3a2c-4d13-b130-92eb82f6b8af d816709d-3338-4522-868e-f86c19522ffb 4 4 +f85c3b0e-ba05-4375-83c7-a041e5771c8c 2023-09-19 2023-09-19 08:10:39.358624+00 {} 517037e4-24f6-489c-ac66-0d1ee6cd80d4 88ea6b24-e63d-4b89-9303-84630ff66d3c \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d b79eb1e8-3a2c-4d13-b130-92eb82f6b8af d816709d-3338-4522-868e-f86c19522ffb 4 4 +375ee435-5091-40f9-80da-21ddb108b0a1 2023-09-19 2023-09-19 08:10:39.398766+00 {} ab9f7e9b-3693-4094-8bea-1e5696ce24b3 10bae2f5-a05b-4841-85b9-861e625a6d94 \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d b79eb1e8-3a2c-4d13-b130-92eb82f6b8af d816709d-3338-4522-868e-f86c19522ffb 4 4 +8c81a77f-bf97-4203-b64d-92220d582d74 2023-09-19 2023-09-19 08:10:39.439126+00 {} 3166b8f9-3e49-440a-83a9-4fefbf9625c7 d8f23dbd-968f-4d0f-b6cf-1b6e01f35e55 \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d b79eb1e8-3a2c-4d13-b130-92eb82f6b8af d816709d-3338-4522-868e-f86c19522ffb 4 4 +7d7d36b3-b6af-40bb-b5c2-0a5216ca47b5 2023-09-19 2023-09-19 08:10:39.496106+00 {} 5908461e-4480-4d43-bde7-9b1777584f5d 17950897-4131-4efa-9a43-ea97f75fe2a5 \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea 919660c6-0654-4904-9cf5-61a03cc069c3 d816709d-3338-4522-868e-f86c19522ffb 4 4 +829cf7c3-9b01-41df-8651-cddb39dc4f5b 2023-09-19 2023-09-19 08:10:39.542232+00 {} b4ccac56-b9e1-4574-a4fe-0d1bf75698c5 0bf737da-80af-438c-add6-12914a8d6889 \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea c8fef37f-699a-4f5a-b228-495cb5702a43 d816709d-3338-4522-868e-f86c19522ffb 4 4 +0a5e3a07-e9aa-47a2-96ab-11dffa276852 2023-09-19 2023-09-19 08:10:39.586904+00 {} c60ff405-f8f1-4b95-9c0b-f157e1c659b5 9892d575-8d82-4d82-91e0-02b958d125e7 \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 be8b5ac0-0df7-4eff-90f1-4c86f16c362e d816709d-3338-4522-868e-f86c19522ffb 4 4 +e5e15050-9db8-4846-85fa-07092e55f421 2023-09-19 2023-09-19 08:10:39.627682+00 {} b5f22608-97ba-42ad-8a43-93cc0912cc87 e1d27cd6-5924-45a5-b5b4-6c90e24e6fc5 \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 182b57af-ef9e-428d-916d-7f18e14357d1 d816709d-3338-4522-868e-f86c19522ffb 4 4 +39859f50-d8a1-43af-b769-fde17ea7a0d8 2023-09-19 2023-09-19 08:10:39.693293+00 {} c425ea6a-27ff-4fb7-bffc-41ba6e7fc770 7e577d0b-d751-4d2c-9262-15ebb00ea960 \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e d816709d-3338-4522-868e-f86c19522ffb 4 4 +a5fc9592-5d20-4bb8-abdf-9e4079ff5d28 2023-09-19 2023-09-19 08:10:39.756557+00 {} e504f8d0-08ba-4d9b-9ee5-762ffb9aea51 d6683aa3-cc33-43e7-b64e-47f6bc0b45d9 \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 182b57af-ef9e-428d-916d-7f18e14357d1 d816709d-3338-4522-868e-f86c19522ffb 4 4 +ccedb93a-0944-49e0-9bed-95582653d036 2023-09-19 2023-09-19 08:10:39.813995+00 {} 6ea6d11f-1d2a-45a2-9cd1-40a43afc6efa f9d892b5-2c42-420d-882a-39bbf8205dff \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 c8fef37f-699a-4f5a-b228-495cb5702a43 d816709d-3338-4522-868e-f86c19522ffb 4 4 +6e3ec838-86b8-4a93-a715-8e25acb18586 2023-09-19 2023-09-19 08:10:39.855+00 {} a02b21d1-4e1a-448f-9292-255de05644c1 350f4cfe-1a31-473d-be9f-2950de48ce82 \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 be8b5ac0-0df7-4eff-90f1-4c86f16c362e d816709d-3338-4522-868e-f86c19522ffb 4 4 +179ef5a6-2210-4668-a2a0-a43ee6ebd036 2023-09-19 2023-09-19 08:10:39.901505+00 {} 80bbc8c8-7408-4ac4-9a68-2a9b17be4e23 f697b84b-5d6e-45a5-985f-d6acad3ccdb1 \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 182b57af-ef9e-428d-916d-7f18e14357d1 d816709d-3338-4522-868e-f86c19522ffb 4 4 +\. + + +-- +-- Data for Name: dcim_cablepath; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_cablepath (id, origin_id, destination_id, path, is_active, is_split, destination_type_id, origin_type_id) FROM stdin; +9d932f34-78cb-498a-ad15-981d766afa29 e0d150e4-dbb6-4414-aa1d-f9f9fadecb1e 79a58def-4c93-43ce-b021-cfb07171f3ac ["2:5b93c95b-605a-47c9-9b44-99eab39e6b2a"] t f 4 4 +19f3943c-0a50-46ea-b34d-4e4f6a9eebce 79a58def-4c93-43ce-b021-cfb07171f3ac e0d150e4-dbb6-4414-aa1d-f9f9fadecb1e ["2:5b93c95b-605a-47c9-9b44-99eab39e6b2a"] t f 4 4 +794e6bac-023b-4733-8a94-09e18fb0605b 7320f8e3-2d6d-4e79-aecb-ca1cb982a11c 1e0f6ad8-62f2-400a-8f2c-1bfeb7e84519 ["2:4a141b71-2d29-4524-bb30-a872889d182c"] t f 4 4 +b76d7898-fcd4-4dff-b638-f50cc0cf82bc 1e0f6ad8-62f2-400a-8f2c-1bfeb7e84519 7320f8e3-2d6d-4e79-aecb-ca1cb982a11c ["2:4a141b71-2d29-4524-bb30-a872889d182c"] t f 4 4 +bc7af761-ce21-4118-8666-a71afef45e14 1b1b6868-e3f8-44ba-9c3a-cfbc0a69b800 d5b8a4e1-7043-41e9-8d1e-e110ade7973c ["2:1db060af-3203-4e02-b63e-3d31b131432d"] t f 4 4 +44b8be05-4055-463b-9c2c-8f96b9860b20 d5b8a4e1-7043-41e9-8d1e-e110ade7973c 1b1b6868-e3f8-44ba-9c3a-cfbc0a69b800 ["2:1db060af-3203-4e02-b63e-3d31b131432d"] t f 4 4 +9c655a83-fb2e-4b18-9473-a9f20b964251 4528f8bf-75ef-4f8f-867a-5e1634b893cf 69b084a1-d987-44e2-991f-f500acfd0d60 ["2:01f68cee-9bab-49db-b16d-d207376e436a"] t f 4 4 +1677de7d-222a-4512-9da4-f4bd07a75bfd 69b084a1-d987-44e2-991f-f500acfd0d60 4528f8bf-75ef-4f8f-867a-5e1634b893cf ["2:01f68cee-9bab-49db-b16d-d207376e436a"] t f 4 4 +3926e2ea-6902-408b-a2c2-f024260091e8 48757a3d-13f0-408e-9863-3af97189ff2d 9ab0df39-4525-473c-b134-d903f406aeab ["2:c1e99fd4-fe13-4020-8650-d724be3354a0"] t f 4 4 +38c77349-6c9b-41d0-ba4a-ad6331b7fc2a 9ab0df39-4525-473c-b134-d903f406aeab 48757a3d-13f0-408e-9863-3af97189ff2d ["2:c1e99fd4-fe13-4020-8650-d724be3354a0"] t f 4 4 +f43d47e1-2c92-4af6-862e-0afe09ad2021 b292811f-370b-4a74-b584-779facc0bb68 bf4b250b-fc2b-4905-8476-32b56bb66958 ["2:6412c2c9-f51f-4d7b-b064-4e9edb6c555c"] t f 4 4 +9c4de705-693c-456d-9b6c-b5774cd55d2f bf4b250b-fc2b-4905-8476-32b56bb66958 b292811f-370b-4a74-b584-779facc0bb68 ["2:6412c2c9-f51f-4d7b-b064-4e9edb6c555c"] t f 4 4 +306eb04f-6645-4346-a803-6d9e29f9fcc3 ef8ad9c2-3d78-4434-b898-bc230b9f7c79 6d95cdbb-0df4-47d7-95b4-009273c74611 ["2:f3fdae41-9b74-4cbf-88bc-94e4e282fa6c"] t f 4 4 +761c3ee4-2211-4886-93ae-eb247a104053 6d95cdbb-0df4-47d7-95b4-009273c74611 ef8ad9c2-3d78-4434-b898-bc230b9f7c79 ["2:f3fdae41-9b74-4cbf-88bc-94e4e282fa6c"] t f 4 4 +7581852a-58ee-4980-9eb1-f673b52c87ef 0e4d86be-e92a-4b26-b2c7-1961d3668344 3d9f069c-734b-4fc9-9eb7-34b7d34e5441 ["2:c5393878-1472-4920-b3d5-046b19f34d4a"] t f 4 4 +4f640add-d05f-49c3-8ada-fb3e5ae6a190 3d9f069c-734b-4fc9-9eb7-34b7d34e5441 0e4d86be-e92a-4b26-b2c7-1961d3668344 ["2:c5393878-1472-4920-b3d5-046b19f34d4a"] t f 4 4 +07499e99-fd00-48a8-98e2-1b2ccb37c5eb 92c887ed-b2a5-4a63-9a97-6756b9258842 bd23378a-dbc4-4dc0-be7b-ce989834d3fd ["2:a8634add-2b72-41c7-84e2-37e03828d2ad"] t f 4 4 +962d84d5-cc17-4666-9da5-e079b94a7310 bd23378a-dbc4-4dc0-be7b-ce989834d3fd 92c887ed-b2a5-4a63-9a97-6756b9258842 ["2:a8634add-2b72-41c7-84e2-37e03828d2ad"] t f 4 4 +bb2bfea7-471f-43e6-a222-cbdae4c1a11f 328436af-6df3-41aa-9839-36fca96a1771 39c12269-1ccc-4b47-8788-9830e3b6ee53 ["2:cc244b6c-fe94-406f-ba52-64daf93f47a2"] t f 4 4 +57c4a7c1-de93-4d63-bcf5-661e44ba3bda 39c12269-1ccc-4b47-8788-9830e3b6ee53 328436af-6df3-41aa-9839-36fca96a1771 ["2:cc244b6c-fe94-406f-ba52-64daf93f47a2"] t f 4 4 +0624c163-cd09-40f8-a694-09d4657c9c2e cb47baba-9476-4dfc-a334-7d244d2e2be1 92ad1c81-fc83-49c0-bf9b-bb727f5df8a4 ["2:2dca496e-7f78-43d5-ad27-2f753208311f"] t f 4 4 +5d097715-33a5-4b32-a903-fba13791d1d9 92ad1c81-fc83-49c0-bf9b-bb727f5df8a4 cb47baba-9476-4dfc-a334-7d244d2e2be1 ["2:2dca496e-7f78-43d5-ad27-2f753208311f"] t f 4 4 +0b5e397c-d6e3-47bb-bc02-76017bf44b7f 27ce4598-c7a6-4307-aa86-524149200ec1 adbb105c-ef41-4c56-83f9-3decf72fa469 ["2:604ee9e4-6852-4c9a-8ba1-2ffa61623544"] t f 4 4 +1f56a293-bce5-4334-9ec2-97ada0d8d296 adbb105c-ef41-4c56-83f9-3decf72fa469 27ce4598-c7a6-4307-aa86-524149200ec1 ["2:604ee9e4-6852-4c9a-8ba1-2ffa61623544"] t f 4 4 +bc9b4c3f-a854-4d4a-9021-73e73495fb13 c885b7d6-df35-41c6-89d3-7d570a01b37f f25fd314-9571-404f-ba61-5e33d4808523 ["2:c6652864-d187-492d-8c9f-84f754d58080"] t f 4 4 +1167c8aa-067d-4bf1-950e-d804a1a27008 f25fd314-9571-404f-ba61-5e33d4808523 c885b7d6-df35-41c6-89d3-7d570a01b37f ["2:c6652864-d187-492d-8c9f-84f754d58080"] t f 4 4 +6dbe18e6-2d7f-4572-80d3-530467106c33 b0fab83c-27f0-4789-9a1a-153dbbc5674f 15ee8663-a4c9-4e13-88c9-2ad2533f8a58 ["2:b7a57d39-0e67-4882-a9e7-895d102ca961"] t f 4 4 +e3440063-edc5-4dfa-8724-6ebf69a7d126 15ee8663-a4c9-4e13-88c9-2ad2533f8a58 b0fab83c-27f0-4789-9a1a-153dbbc5674f ["2:b7a57d39-0e67-4882-a9e7-895d102ca961"] t f 4 4 +8f61932d-f7be-48fd-bc25-97d027b5f5f7 b20ab714-a9bb-4d57-bf1b-29e93cbcce0f b8ae6d6f-920c-437f-9610-3c67eea45262 ["2:2d2027c5-fbdb-410d-81b5-56127e77d859"] t f 4 4 +aa5e1c6f-8e94-40d9-a8b9-47de24b06c83 b8ae6d6f-920c-437f-9610-3c67eea45262 b20ab714-a9bb-4d57-bf1b-29e93cbcce0f ["2:2d2027c5-fbdb-410d-81b5-56127e77d859"] t f 4 4 +d391fc86-4aa3-4046-8e67-e0a09a55a56d ccd2f499-a160-443b-9795-f8d35acdc6cc d53f715c-c93b-4aaf-88a4-c4b95407326f ["2:4278d357-0d23-4c8d-9827-29e3164b34a9"] t f 4 4 +534101f3-9a0c-4e02-b4a4-af29ca66231a d53f715c-c93b-4aaf-88a4-c4b95407326f ccd2f499-a160-443b-9795-f8d35acdc6cc ["2:4278d357-0d23-4c8d-9827-29e3164b34a9"] t f 4 4 +31c5b599-7f59-4dde-a05b-44e32b7ab1dc b39b674d-df06-4813-a0bd-eefec8fae300 f1cf411b-411e-4bde-95a3-e2ec64ac1ff1 ["2:381a0e8a-f1fb-430b-84e2-c7bcd91b8920"] t f 4 4 +104c3670-7383-4742-b5c3-666178ff034c f1cf411b-411e-4bde-95a3-e2ec64ac1ff1 b39b674d-df06-4813-a0bd-eefec8fae300 ["2:381a0e8a-f1fb-430b-84e2-c7bcd91b8920"] t f 4 4 +ae85d740-72ae-47ef-8ce8-cf9f5b22b9ca fb0e845d-5cd1-4e23-8021-69d3b84b8a9c babf2eca-c221-4feb-a649-b469302fbf0b ["2:e7688daa-e5c7-42e9-b036-f8429a639a51"] t f 4 4 +a9ac0e31-9dd1-4605-893b-95542de32ab0 babf2eca-c221-4feb-a649-b469302fbf0b fb0e845d-5cd1-4e23-8021-69d3b84b8a9c ["2:e7688daa-e5c7-42e9-b036-f8429a639a51"] t f 4 4 +d0232db1-98a1-426a-a0ce-7395d92cb708 80a51250-4175-49a6-984e-276be502fdb5 f96de7a0-c907-4600-8ef6-fbacdbfce491 ["2:8e511f70-1553-4561-a4f3-afd30dd671c6"] t f 4 4 +cdb577ce-ef9f-4eba-8b24-3b634e480fe5 f96de7a0-c907-4600-8ef6-fbacdbfce491 80a51250-4175-49a6-984e-276be502fdb5 ["2:8e511f70-1553-4561-a4f3-afd30dd671c6"] t f 4 4 +4704a072-10bc-4890-b844-77f421d8b105 f75fa9dd-597a-4985-82dc-7dcd428e9ef1 a978f8bc-36b6-4390-ac29-95ff16fd6a6e ["2:eda55c48-538c-45e6-82b2-dcd75ec06741"] t f 97 4 +d798f256-6b26-443d-ac90-97de2d212c15 a978f8bc-36b6-4390-ac29-95ff16fd6a6e f75fa9dd-597a-4985-82dc-7dcd428e9ef1 ["2:eda55c48-538c-45e6-82b2-dcd75ec06741"] t f 4 97 +8495ad04-ad65-4930-a92c-912001ac8be5 02783645-57c4-459d-b43d-5b8ccabd8026 196e507e-c007-408e-b0a1-1524ab5681ec ["2:8389046b-ced9-4c0b-9c30-5466b7763ebf"] t f 97 4 +37d151df-5661-492d-b73a-60a19262b900 196e507e-c007-408e-b0a1-1524ab5681ec 02783645-57c4-459d-b43d-5b8ccabd8026 ["2:8389046b-ced9-4c0b-9c30-5466b7763ebf"] t f 4 97 +94d54939-480e-4380-b1a4-d7aef5405a9f 5f2654c9-81d2-4862-bab1-ffb897829334 202e5f20-018a-4266-a5b3-ff13b4cca1e8 ["2:e76145bc-897d-493b-aefa-5a5ba4aaf8dc"] t f 97 4 +a2e8e5a2-ade3-49df-9964-181d5c738a1f 202e5f20-018a-4266-a5b3-ff13b4cca1e8 5f2654c9-81d2-4862-bab1-ffb897829334 ["2:e76145bc-897d-493b-aefa-5a5ba4aaf8dc"] t f 4 97 +b6fb78f9-289f-4bd0-9ef1-91ffdf61cf00 aed29452-c3bf-4a6c-9e9e-de9f83608e88 10bc9bcd-962b-4560-bfe5-86f3d792f098 ["2:53f165dc-f216-423c-90f6-082e7085f7aa"] t f 97 4 +b1d83fca-60ee-4f03-a1d3-d71335dffa68 10bc9bcd-962b-4560-bfe5-86f3d792f098 aed29452-c3bf-4a6c-9e9e-de9f83608e88 ["2:53f165dc-f216-423c-90f6-082e7085f7aa"] t f 4 97 +2ecfce5c-8c01-403d-b05f-9e9e68396888 06d20bba-949b-4273-9463-01dba8f644cf 1c95cc4d-eab8-4041-985c-77614056005a ["2:7f675601-42da-444b-b994-88f229350ab4"] t f 4 4 +abbfa2b3-24de-4473-9dfd-91fd2b1f8af4 1c95cc4d-eab8-4041-985c-77614056005a 06d20bba-949b-4273-9463-01dba8f644cf ["2:7f675601-42da-444b-b994-88f229350ab4"] t f 4 4 +3bd78f6a-ea59-4d95-af2a-800b51a42731 d758f08c-2994-4638-b0b4-41099f599981 af41be32-c31e-4550-862a-2e80956ca407 ["2:3635f5ca-b1ef-4fa5-bdc6-0e6a59539985"] t f 4 4 +cdabcc8a-8f3f-4e9d-8530-d88b93151f0b af41be32-c31e-4550-862a-2e80956ca407 d758f08c-2994-4638-b0b4-41099f599981 ["2:3635f5ca-b1ef-4fa5-bdc6-0e6a59539985"] t f 4 4 +bdd46564-1645-49e3-9299-93dc8725c32e 0fd015fb-4384-4e98-a83d-700c601678da 99f4be16-7595-47c3-b701-c4d3222418e4 ["2:0f21ae3c-bc79-4183-a852-56fef4d18258"] t f 4 4 +f4715076-0bcb-4b2c-9f8f-6b7762a99fd4 99f4be16-7595-47c3-b701-c4d3222418e4 0fd015fb-4384-4e98-a83d-700c601678da ["2:0f21ae3c-bc79-4183-a852-56fef4d18258"] t f 4 4 +2819521d-f56d-4d24-8a13-944995ce837c ed0e4858-e34a-4f20-8f18-9257bb4e36e5 1825310b-6b1f-46e0-a9b1-55c830206d68 ["2:c58bc2ba-b05d-4b33-8d1b-fb105b77ab24"] t f 4 4 +b2772d92-c9c1-47b4-bd59-32830e1be8db 1825310b-6b1f-46e0-a9b1-55c830206d68 ed0e4858-e34a-4f20-8f18-9257bb4e36e5 ["2:c58bc2ba-b05d-4b33-8d1b-fb105b77ab24"] t f 4 4 +91c30d46-79b9-49b6-8a9c-b730d903fd90 a275628b-47b8-43c7-9c2a-33c6e49362f6 8cc336a6-e575-4c50-8ad4-cbec52ad0526 ["2:78fce191-9cf3-43dd-bc54-d2ac0fb7466a"] t f 4 4 +af41db32-2ea3-46ea-9b30-9fd03cb4bfd7 8cc336a6-e575-4c50-8ad4-cbec52ad0526 a275628b-47b8-43c7-9c2a-33c6e49362f6 ["2:78fce191-9cf3-43dd-bc54-d2ac0fb7466a"] t f 4 4 +815721a9-9ebb-4c2f-a8a4-28ce617a9545 1fd56ad1-a795-4302-9b28-ca6655d87956 291e676f-26a9-4589-aaeb-a12f3c8a1bba ["2:b1e9efac-ea9d-4b3e-b259-4b29bb074bde"] t f 4 4 +56b547e7-6a13-4eed-8138-61853dddf6cb 291e676f-26a9-4589-aaeb-a12f3c8a1bba 1fd56ad1-a795-4302-9b28-ca6655d87956 ["2:b1e9efac-ea9d-4b3e-b259-4b29bb074bde"] t f 4 4 +7c813b4f-b60e-4f33-82a5-ba049fbd97e4 6bee7896-71cd-4864-b0f5-0fc5836d4e07 47b26f21-668a-4c86-b37b-54d65373427c ["2:26be4ae7-8b6f-4a35-a737-fdd87b45dab9"] t f 4 4 +797334f3-9aaa-422c-abb2-ceacb79ce3b1 47b26f21-668a-4c86-b37b-54d65373427c 6bee7896-71cd-4864-b0f5-0fc5836d4e07 ["2:26be4ae7-8b6f-4a35-a737-fdd87b45dab9"] t f 4 4 +1c26510a-13b1-47cd-b389-5d7621d0098e 7f1b1ee2-cca8-4ce7-83e7-ddfc1488a932 a14f8127-92c5-41dc-a210-330c36287814 ["2:e1cda597-2fd3-4a39-b813-d42d238f9a9a"] t f 4 4 +4088385b-9981-41bf-8c61-5dfad1a3052a a14f8127-92c5-41dc-a210-330c36287814 7f1b1ee2-cca8-4ce7-83e7-ddfc1488a932 ["2:e1cda597-2fd3-4a39-b813-d42d238f9a9a"] t f 4 4 +0caf83ed-fd1d-4b4e-a55d-95ed7081120e bca969b1-264d-482a-9986-0e155e2c0d01 50e63731-21ff-4bc1-a900-ed71f1c25b1f ["2:df3b998b-0ca5-4f00-98d0-75a1f5afc6a9"] t f 4 4 +b1b22219-7f8f-4c89-bac8-ce2be428dede 50e63731-21ff-4bc1-a900-ed71f1c25b1f bca969b1-264d-482a-9986-0e155e2c0d01 ["2:df3b998b-0ca5-4f00-98d0-75a1f5afc6a9"] t f 4 4 +de632da7-1885-42c1-8838-1adc23d8f2cf 0ea49852-bcf2-4221-9413-9587b2f501e8 7c98085d-64fc-4353-af04-7502363414cd ["2:854cf3a8-ab85-4da2-88e2-42cd95a26f61"] t f 4 4 +de269326-a6d6-4a99-90a5-b54ea73ce673 7c98085d-64fc-4353-af04-7502363414cd 0ea49852-bcf2-4221-9413-9587b2f501e8 ["2:854cf3a8-ab85-4da2-88e2-42cd95a26f61"] t f 4 4 +4a26c409-4312-4bfe-b78b-9945ca919adc 658a8717-44a3-4770-ad5a-0aa3a1e9edcb 4e7e06ba-0a67-40db-a13a-b7a1d0ff429d ["2:ebf81336-ebd6-407b-89cf-badd389d78d6"] t f 4 4 +b02e9315-60fc-44f0-bcf1-82d285a2a8b6 4e7e06ba-0a67-40db-a13a-b7a1d0ff429d 658a8717-44a3-4770-ad5a-0aa3a1e9edcb ["2:ebf81336-ebd6-407b-89cf-badd389d78d6"] t f 4 4 +d7e9ac10-efb5-4948-a4a1-ac32ba4f2b58 a88d0ca0-81d6-4c64-838c-83668983f923 893bac86-8f1b-4539-ad0d-f135002a1547 ["2:94704017-dd01-474d-8e73-3244c649fdeb"] t f 4 4 +ab3edab2-8b0a-4a79-ac94-3f559daec3f3 893bac86-8f1b-4539-ad0d-f135002a1547 a88d0ca0-81d6-4c64-838c-83668983f923 ["2:94704017-dd01-474d-8e73-3244c649fdeb"] t f 4 4 +24374707-5870-4fcc-a3c8-461d80acfa73 d8dff6c9-6185-4d8b-8327-a99ce574b62f 16a2a324-4396-4672-aeef-29f47c359a60 ["2:881e98e4-154d-496f-855f-592377f54f4a"] t f 4 4 +55851003-f32b-4948-bba9-9e078d41d6f5 16a2a324-4396-4672-aeef-29f47c359a60 d8dff6c9-6185-4d8b-8327-a99ce574b62f ["2:881e98e4-154d-496f-855f-592377f54f4a"] t f 4 4 +69531ebd-ab59-404a-96be-0dfaf97537f1 72c992f5-62da-489d-abee-c14f62f52097 b8de16c3-d047-4665-9c47-4620be7b187c ["2:04b8b8d3-bd38-4355-9b2c-9b455b3ce7af"] t f 4 4 +1aa5d188-31b0-42d4-b3c6-d924835d2628 b8de16c3-d047-4665-9c47-4620be7b187c 72c992f5-62da-489d-abee-c14f62f52097 ["2:04b8b8d3-bd38-4355-9b2c-9b455b3ce7af"] t f 4 4 +86dcd31e-9205-4ddf-941f-0fe7cc7d2698 1912fee0-5a5b-4f49-ba2a-7fa99715976d 91a64db3-f588-4ccd-aa3e-94159e16d098 ["2:fbf5979c-3bbb-4b9f-b121-da5609b87deb"] t f 4 4 +9d6fbde0-9502-4dd0-98db-e9f5cf7f2c44 91a64db3-f588-4ccd-aa3e-94159e16d098 1912fee0-5a5b-4f49-ba2a-7fa99715976d ["2:fbf5979c-3bbb-4b9f-b121-da5609b87deb"] t f 4 4 +a9559595-f020-4f09-ace5-7fde73b8f17e b177c282-969a-409d-ba36-2d6594e21550 e250cb5b-4a82-4dbb-8e9e-18ab8798cfec ["2:79dab99f-4df3-46ca-93c4-aa47c128cb1c"] t f 4 4 +b36f1f1e-35c5-45d9-8e57-261d2f7fd278 e250cb5b-4a82-4dbb-8e9e-18ab8798cfec b177c282-969a-409d-ba36-2d6594e21550 ["2:79dab99f-4df3-46ca-93c4-aa47c128cb1c"] t f 4 4 +3ed62041-fab5-4331-bbfd-f487f6378e77 ce01a4bd-4ea9-4f29-af12-9270857547f6 146e02be-a8b6-488a-a197-9f197ecb100c ["2:f17bdbbc-e4e9-453a-ae35-2262453e989a"] t f 4 4 +0243331f-9273-40ce-9dc2-f6602ceda184 146e02be-a8b6-488a-a197-9f197ecb100c ce01a4bd-4ea9-4f29-af12-9270857547f6 ["2:f17bdbbc-e4e9-453a-ae35-2262453e989a"] t f 4 4 +b473f425-0fe0-4ad5-9124-749ff7c4dba7 7b9a34be-0f8e-4a42-a9f2-925cc836a623 f6f159b2-79c8-4091-9573-35a6f9b4754c ["2:c2508fbc-2280-423e-a524-012caabd1541"] t f 4 4 +6355459a-b9fc-4481-9b2d-3904d521e748 f6f159b2-79c8-4091-9573-35a6f9b4754c 7b9a34be-0f8e-4a42-a9f2-925cc836a623 ["2:c2508fbc-2280-423e-a524-012caabd1541"] t f 4 4 +b95257eb-37c5-4625-b353-bd305d177cfa 4cb24a05-363c-4cba-80d1-8e97bce198d3 3d3f20f0-cd5e-4684-9c08-27c724dac132 ["2:70a617dd-03c8-4def-ac6a-ac1c0198e9b5"] t f 97 4 +eec86477-59dc-4bb6-823c-6a74330b9c89 3d3f20f0-cd5e-4684-9c08-27c724dac132 4cb24a05-363c-4cba-80d1-8e97bce198d3 ["2:70a617dd-03c8-4def-ac6a-ac1c0198e9b5"] t f 4 97 +4f94431f-1a17-4384-b1c5-c21afc6919dd c8f831c0-f008-45ba-a789-20c2626e6921 9990294d-6dd0-4deb-8818-e19c7ad35d4f ["2:4c32db91-5a3d-4e3e-b62e-2b12e453d631"] t f 97 4 +2f510034-b088-465f-b575-d2ecf51b9484 9990294d-6dd0-4deb-8818-e19c7ad35d4f c8f831c0-f008-45ba-a789-20c2626e6921 ["2:4c32db91-5a3d-4e3e-b62e-2b12e453d631"] t f 4 97 +37307e23-435d-4010-840c-00301487bb9d edbdc7f1-9209-4710-a219-c325d0c918e0 edaac17c-fee8-47b4-9438-75fc8255f879 ["2:d985e1a1-763b-4581-9c34-d93b0a70a2af"] t f 97 4 +f0988a92-26c1-4b93-a70f-887272322726 edaac17c-fee8-47b4-9438-75fc8255f879 edbdc7f1-9209-4710-a219-c325d0c918e0 ["2:d985e1a1-763b-4581-9c34-d93b0a70a2af"] t f 4 97 +041a217b-436d-4953-aab5-704722fbe685 c682cb76-aff2-4612-ac09-06c9479f51b9 0f62ba4e-13dc-465b-b363-6f630347f047 ["2:7df60531-e97a-493b-9deb-4272a835a34f"] t f 97 4 +33b3f4b8-a308-46b9-ad89-ecd9f248388c 0f62ba4e-13dc-465b-b363-6f630347f047 c682cb76-aff2-4612-ac09-06c9479f51b9 ["2:7df60531-e97a-493b-9deb-4272a835a34f"] t f 4 97 +7eb57763-39df-4ea8-92b0-d603c539d5c0 db739229-5dcd-4d05-94f5-52bd234647b9 a1e88275-4a5c-4b89-8017-4ad695ff14f8 ["2:a7240ec2-73f8-43d9-a0c6-297e24d40893"] t f 4 4 +70715842-f396-4d57-af22-4df7ad3146ee a1e88275-4a5c-4b89-8017-4ad695ff14f8 db739229-5dcd-4d05-94f5-52bd234647b9 ["2:a7240ec2-73f8-43d9-a0c6-297e24d40893"] t f 4 4 +37552a36-059b-4a40-a733-4df93c096c58 2aa91dab-b223-48ff-96de-03e1a71ffa56 24d7e176-9284-4e90-ae96-383a2133cb1c ["2:c66391d2-fce2-4b81-adf9-03a1649f8d7e"] t f 4 4 +8c54f80e-7dbc-4d09-8ccc-ca12d1d6aad5 24d7e176-9284-4e90-ae96-383a2133cb1c 2aa91dab-b223-48ff-96de-03e1a71ffa56 ["2:c66391d2-fce2-4b81-adf9-03a1649f8d7e"] t f 4 4 +2626aebc-441c-4a30-8e5d-8d5dc231cc03 aec8c705-f321-4d0c-9a66-29ca6e23995b 2829d904-99cf-4100-9b89-ca40bdafd284 ["2:c4f8906a-1d14-4ab2-8332-a5406c85717d"] t f 4 4 +7e3e8467-fe1a-4b20-8ee3-e8e6b65a799d 2829d904-99cf-4100-9b89-ca40bdafd284 aec8c705-f321-4d0c-9a66-29ca6e23995b ["2:c4f8906a-1d14-4ab2-8332-a5406c85717d"] t f 4 4 +10e3cc64-e468-43fb-b754-992f4698fa94 b572e507-1492-4722-be8a-d1668ff1011c 269811e4-2d04-4396-8eab-3bffb1556a60 ["2:defbde0a-546c-48a0-9f50-5638ae51e3f3"] t f 4 4 +b5d649c1-2970-4c05-8a98-6b736969dfec 269811e4-2d04-4396-8eab-3bffb1556a60 b572e507-1492-4722-be8a-d1668ff1011c ["2:defbde0a-546c-48a0-9f50-5638ae51e3f3"] t f 4 4 +583491c3-9b25-4497-920f-b16347d7dd38 8cd7bfcf-9a6f-4605-843a-418736ad7c5e 06b11a10-9918-4d96-9194-ccc202f9aa5d ["2:9c1846a0-7565-47a6-b0c6-9502384c8582"] t f 4 4 +0d494c9d-809d-4d27-9008-04c3fc882215 06b11a10-9918-4d96-9194-ccc202f9aa5d 8cd7bfcf-9a6f-4605-843a-418736ad7c5e ["2:9c1846a0-7565-47a6-b0c6-9502384c8582"] t f 4 4 +144026a1-fc97-4501-b0db-d2096de6b97e d9f730a2-ce98-4c34-9db9-56be5abba079 a6d24885-2024-48ca-ba60-727802474b2d ["2:7ee21d7a-27d6-4bd0-ae2f-a21c08afeea8"] t f 4 4 +4443ff8d-44f0-4cd3-b358-983aa247e543 a6d24885-2024-48ca-ba60-727802474b2d d9f730a2-ce98-4c34-9db9-56be5abba079 ["2:7ee21d7a-27d6-4bd0-ae2f-a21c08afeea8"] t f 4 4 +6f4b127d-6f20-4e95-b7c4-279cf62b1d5c 2e43df0e-86aa-498b-bf73-e22af4baa0f0 6f96fac1-0bbc-4544-9292-fb437ed9e73e ["2:6f30cd42-bf5f-447b-b7fe-b04a09513aa1"] t f 4 4 +3932d6c9-91d9-4720-b58f-93eeded5139a 6f96fac1-0bbc-4544-9292-fb437ed9e73e 2e43df0e-86aa-498b-bf73-e22af4baa0f0 ["2:6f30cd42-bf5f-447b-b7fe-b04a09513aa1"] t f 4 4 +0c9c727e-4e43-43cf-92e1-c31cc32a91c2 be42d85a-b6b5-4126-b6e2-dfcd99117a31 93913062-d728-494d-b5bf-61f55e4302c0 ["2:041a53b4-aec2-4c30-8df2-0df21ae14547"] t f 4 4 +8951ff1f-90fa-4d01-8355-ab22253b48a2 93913062-d728-494d-b5bf-61f55e4302c0 be42d85a-b6b5-4126-b6e2-dfcd99117a31 ["2:041a53b4-aec2-4c30-8df2-0df21ae14547"] t f 4 4 +ef55a466-93e5-4996-861a-223bf02dc4d2 571a071c-a01c-4ba8-b749-415d9c95665b 6ee18771-590a-4da9-8e06-f42a0c1346ea ["2:0d6832a5-71ff-412b-991c-58392176c200"] t f 4 4 +75d64a14-b525-4626-bc2d-efb5214bb043 6ee18771-590a-4da9-8e06-f42a0c1346ea 571a071c-a01c-4ba8-b749-415d9c95665b ["2:0d6832a5-71ff-412b-991c-58392176c200"] t f 4 4 +2b62e0fb-def6-4741-92df-ea23c5fceffb aa11d7f2-7d54-41c5-8693-69d32ef6e5b0 9188b1c9-d827-437d-ac75-59561877b64c ["2:5df3deee-42e3-4a74-a6d5-eba60f1a3816"] t f 4 4 +76ddbe61-341c-444a-9ef6-0e8b01dda31e 9188b1c9-d827-437d-ac75-59561877b64c aa11d7f2-7d54-41c5-8693-69d32ef6e5b0 ["2:5df3deee-42e3-4a74-a6d5-eba60f1a3816"] t f 4 4 +a9d469c5-79da-4bd8-aea8-989ad277a096 305b8153-e80c-42e5-b40b-988dbbacadf6 92152ff0-7eff-4ed1-8488-2010632e4954 ["2:383493de-5e77-41ff-8b20-a28748644eb7"] t f 97 4 +18904166-1173-4714-be4a-2af3d2192972 92152ff0-7eff-4ed1-8488-2010632e4954 305b8153-e80c-42e5-b40b-988dbbacadf6 ["2:383493de-5e77-41ff-8b20-a28748644eb7"] t f 4 97 +21871fbd-9151-4870-bc10-8502e857894d 14ea3cf8-07a6-4363-a61b-284288cda5c4 1fad126f-3456-426d-99be-a129522c0afc ["2:76bc6873-315a-429f-be61-14593961749f"] t f 97 4 +50e593fe-6f1c-43f2-8d40-299c9778ffeb 1fad126f-3456-426d-99be-a129522c0afc 14ea3cf8-07a6-4363-a61b-284288cda5c4 ["2:76bc6873-315a-429f-be61-14593961749f"] t f 4 97 +63f49870-8541-4734-9afd-8fb33340bb9f a6a98b4b-5214-4cdd-be68-0f567c56f509 519dcb44-f181-4dfa-adc2-caf8b8ab39a7 ["2:372db88d-08ba-4fdd-b3c3-0ece833519be"] t f 97 4 +0a42b104-2f20-4fa0-9f92-7d38d5f7181a 519dcb44-f181-4dfa-adc2-caf8b8ab39a7 a6a98b4b-5214-4cdd-be68-0f567c56f509 ["2:372db88d-08ba-4fdd-b3c3-0ece833519be"] t f 4 97 +52e07d80-bf0a-4648-84a4-fc87513a27c3 db6b2d90-7792-4ad1-b8d7-d84b3dbed0ac a57b40b0-42ac-458b-a474-f09ddfb4fd6b ["2:ae77c6bb-1db5-4c78-92c8-cfa09b03d6a9"] t f 97 4 +83a95adf-d17a-4d01-b1f0-9b3f2ca81864 a57b40b0-42ac-458b-a474-f09ddfb4fd6b db6b2d90-7792-4ad1-b8d7-d84b3dbed0ac ["2:ae77c6bb-1db5-4c78-92c8-cfa09b03d6a9"] t f 4 97 +f16b531e-230a-4dab-b66b-5b6c96125c6a 77173f36-7b17-4914-882c-5f8b66e6b6a7 114e1107-cad6-49a4-90f8-64510c3d2fb3 ["2:796c8da4-7137-4542-9a65-30c5b7274fdc"] t f 4 4 +2dd0bf2e-24ce-48f0-9e34-6ed224c5497c 114e1107-cad6-49a4-90f8-64510c3d2fb3 77173f36-7b17-4914-882c-5f8b66e6b6a7 ["2:796c8da4-7137-4542-9a65-30c5b7274fdc"] t f 4 4 +341e6cf6-3d4b-4a7d-9792-da9618ba3545 6b8ad446-36ca-4d35-b290-d21e2f0c760b 9ee067f2-f3c9-4eb2-aab0-30c6c39b3ff0 ["2:07100c5d-7537-4bf8-a6a8-e143fbf9479d"] t f 4 4 +e49c53ba-9089-40a4-b966-16862e15cbf4 9ee067f2-f3c9-4eb2-aab0-30c6c39b3ff0 6b8ad446-36ca-4d35-b290-d21e2f0c760b ["2:07100c5d-7537-4bf8-a6a8-e143fbf9479d"] t f 4 4 +a8ffc2f5-49be-4ded-ad63-5f9e79f4d6c6 84f95280-f48f-46e2-b348-d9b31c087f8c e51dbb12-9e60-4c4c-adc4-60d9b1bf7cee ["2:789cc44e-2d91-4213-bdbf-167df0d60f3e"] t f 4 4 +b1af6ae8-ccd3-4bd0-9674-204165d52b41 e51dbb12-9e60-4c4c-adc4-60d9b1bf7cee 84f95280-f48f-46e2-b348-d9b31c087f8c ["2:789cc44e-2d91-4213-bdbf-167df0d60f3e"] t f 4 4 +02f480c6-9d3b-40d4-8c6e-4e1d04ddad44 d860a3b4-5224-420b-8797-0dde34bd2eea 229d6f26-00cb-4804-b2bc-3c40ea130d75 ["2:71f0373d-6a67-48d3-bacc-f37e9f27d023"] t f 4 4 +15081348-9774-4900-ab57-75035a694c83 229d6f26-00cb-4804-b2bc-3c40ea130d75 d860a3b4-5224-420b-8797-0dde34bd2eea ["2:71f0373d-6a67-48d3-bacc-f37e9f27d023"] t f 4 4 +81fe5b82-546e-4f85-9172-89b26382af63 1142060d-5488-460e-87dc-c1fbc14126b1 991b9031-d92e-49d1-8189-cee52fa067a4 ["2:31f5e143-de2e-4c4c-b23a-9efd6c2fa7da"] t f 4 4 +2b5e5630-dbe1-43fd-9cd5-16dfe6eb595d 991b9031-d92e-49d1-8189-cee52fa067a4 1142060d-5488-460e-87dc-c1fbc14126b1 ["2:31f5e143-de2e-4c4c-b23a-9efd6c2fa7da"] t f 4 4 +30dce5fd-94f9-4b9c-8385-af6ea9709b42 c12205bc-0d17-4d6a-849c-1229fc0dc1f5 a6fea30f-2e31-4a7d-b682-ea677d622049 ["2:f485f7d5-fefa-4f62-be92-d8140be6b46a"] t f 4 4 +2015ff74-4795-410a-a20f-9eb1844814a6 a6fea30f-2e31-4a7d-b682-ea677d622049 c12205bc-0d17-4d6a-849c-1229fc0dc1f5 ["2:f485f7d5-fefa-4f62-be92-d8140be6b46a"] t f 4 4 +bc66e395-47f2-4bf9-ae5f-b489851d0e42 517037e4-24f6-489c-ac66-0d1ee6cd80d4 88ea6b24-e63d-4b89-9303-84630ff66d3c ["2:f85c3b0e-ba05-4375-83c7-a041e5771c8c"] t f 4 4 +5336255f-2851-4ca7-bd08-2e22659f73d0 88ea6b24-e63d-4b89-9303-84630ff66d3c 517037e4-24f6-489c-ac66-0d1ee6cd80d4 ["2:f85c3b0e-ba05-4375-83c7-a041e5771c8c"] t f 4 4 +46741658-88e2-4782-8709-16d0df81c036 ab9f7e9b-3693-4094-8bea-1e5696ce24b3 10bae2f5-a05b-4841-85b9-861e625a6d94 ["2:375ee435-5091-40f9-80da-21ddb108b0a1"] t f 4 4 +24189b05-1487-44e8-b51e-197cf33f6f65 10bae2f5-a05b-4841-85b9-861e625a6d94 ab9f7e9b-3693-4094-8bea-1e5696ce24b3 ["2:375ee435-5091-40f9-80da-21ddb108b0a1"] t f 4 4 +66473f94-adf3-46e6-acd6-abbf9e024def 3166b8f9-3e49-440a-83a9-4fefbf9625c7 d8f23dbd-968f-4d0f-b6cf-1b6e01f35e55 ["2:8c81a77f-bf97-4203-b64d-92220d582d74"] t f 4 4 +57bb57ff-cbe0-42d5-b603-3edf832e48e7 d8f23dbd-968f-4d0f-b6cf-1b6e01f35e55 3166b8f9-3e49-440a-83a9-4fefbf9625c7 ["2:8c81a77f-bf97-4203-b64d-92220d582d74"] t f 4 4 +aa2dac7c-7288-4530-9fc2-9180d4a76a46 5908461e-4480-4d43-bde7-9b1777584f5d 17950897-4131-4efa-9a43-ea97f75fe2a5 ["2:7d7d36b3-b6af-40bb-b5c2-0a5216ca47b5"] t f 4 4 +b98a7094-6da4-41d7-b94f-f5329be3fe65 17950897-4131-4efa-9a43-ea97f75fe2a5 5908461e-4480-4d43-bde7-9b1777584f5d ["2:7d7d36b3-b6af-40bb-b5c2-0a5216ca47b5"] t f 4 4 +2efe30e2-5f3f-4014-8b2d-063e3ae4ab63 b4ccac56-b9e1-4574-a4fe-0d1bf75698c5 0bf737da-80af-438c-add6-12914a8d6889 ["2:829cf7c3-9b01-41df-8651-cddb39dc4f5b"] t f 4 4 +6d66d8a8-1e18-4b2d-b76c-1e2eeed59b60 0bf737da-80af-438c-add6-12914a8d6889 b4ccac56-b9e1-4574-a4fe-0d1bf75698c5 ["2:829cf7c3-9b01-41df-8651-cddb39dc4f5b"] t f 4 4 +1dd0caa3-eabb-460f-ab78-ccef99f89ba9 c60ff405-f8f1-4b95-9c0b-f157e1c659b5 9892d575-8d82-4d82-91e0-02b958d125e7 ["2:0a5e3a07-e9aa-47a2-96ab-11dffa276852"] t f 4 4 +3d55e75f-ed2c-4c9b-86e1-2920d085c405 9892d575-8d82-4d82-91e0-02b958d125e7 c60ff405-f8f1-4b95-9c0b-f157e1c659b5 ["2:0a5e3a07-e9aa-47a2-96ab-11dffa276852"] t f 4 4 +cf317da9-2002-4feb-be33-12e93eaf8049 b5f22608-97ba-42ad-8a43-93cc0912cc87 e1d27cd6-5924-45a5-b5b4-6c90e24e6fc5 ["2:e5e15050-9db8-4846-85fa-07092e55f421"] t f 4 4 +89aa7bcb-64ab-4611-8dac-e6f4838b21e0 e1d27cd6-5924-45a5-b5b4-6c90e24e6fc5 b5f22608-97ba-42ad-8a43-93cc0912cc87 ["2:e5e15050-9db8-4846-85fa-07092e55f421"] t f 4 4 +21f7421a-59f3-4f60-bac6-a0d4b780247a c425ea6a-27ff-4fb7-bffc-41ba6e7fc770 7e577d0b-d751-4d2c-9262-15ebb00ea960 ["2:39859f50-d8a1-43af-b769-fde17ea7a0d8"] t f 4 4 +a6dad074-2def-4089-9e4d-07b2c89a742f 7e577d0b-d751-4d2c-9262-15ebb00ea960 c425ea6a-27ff-4fb7-bffc-41ba6e7fc770 ["2:39859f50-d8a1-43af-b769-fde17ea7a0d8"] t f 4 4 +0029d972-297d-4433-8c3c-a034b41fbb3c e504f8d0-08ba-4d9b-9ee5-762ffb9aea51 d6683aa3-cc33-43e7-b64e-47f6bc0b45d9 ["2:a5fc9592-5d20-4bb8-abdf-9e4079ff5d28"] t f 4 4 +f1e9b8d0-2caf-4df1-af3e-6c8388a04105 d6683aa3-cc33-43e7-b64e-47f6bc0b45d9 e504f8d0-08ba-4d9b-9ee5-762ffb9aea51 ["2:a5fc9592-5d20-4bb8-abdf-9e4079ff5d28"] t f 4 4 +4c3269e2-f2d7-4a0f-ad1c-f25ae7f7a9e6 6ea6d11f-1d2a-45a2-9cd1-40a43afc6efa f9d892b5-2c42-420d-882a-39bbf8205dff ["2:ccedb93a-0944-49e0-9bed-95582653d036"] t f 4 4 +8c47384d-f5ff-493e-959c-eab0a3dac5e6 f9d892b5-2c42-420d-882a-39bbf8205dff 6ea6d11f-1d2a-45a2-9cd1-40a43afc6efa ["2:ccedb93a-0944-49e0-9bed-95582653d036"] t f 4 4 +96a1d73e-5ddb-4bae-ac94-afd14ab2a58a a02b21d1-4e1a-448f-9292-255de05644c1 350f4cfe-1a31-473d-be9f-2950de48ce82 ["2:6e3ec838-86b8-4a93-a715-8e25acb18586"] t f 4 4 +5e33c207-bb7e-46bf-be8d-14b72259c57f 350f4cfe-1a31-473d-be9f-2950de48ce82 a02b21d1-4e1a-448f-9292-255de05644c1 ["2:6e3ec838-86b8-4a93-a715-8e25acb18586"] t f 4 4 +2345fae2-d0bb-4f18-8959-434f1a3bac10 80bbc8c8-7408-4ac4-9a68-2a9b17be4e23 f697b84b-5d6e-45a5-985f-d6acad3ccdb1 ["2:179ef5a6-2210-4668-a2a0-a43ee6ebd036"] t f 4 4 +4cf048f0-a418-4feb-babf-36cb735a2431 f697b84b-5d6e-45a5-985f-d6acad3ccdb1 80bbc8c8-7408-4ac4-9a68-2a9b17be4e23 ["2:179ef5a6-2210-4668-a2a0-a43ee6ebd036"] t f 4 4 +\. + + +-- +-- Data for Name: dcim_consoleport; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_consoleport (id, _custom_field_data, name, _name, label, description, _cable_peer_id, type, _cable_peer_type_id, _path_id, cable_id, device_id, created, last_updated) FROM stdin; +03b585dd-73ff-4fb3-9063-7fc9e4e73276 {} Console Console \N rj-45 \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 2023-09-19 2023-09-19 08:09:56.465325+00 +f080cf4a-3a68-4da0-b7aa-a424fc49c56c {} Console Console \N rj-45 \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 2023-09-19 2023-09-19 08:09:57.078567+00 +2ba50bf0-6b51-4960-9328-c662b7ea31af {} Console Console \N rj-45 \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c 2023-09-19 2023-09-19 08:09:57.6666+00 +202947e2-569b-41b3-9bfa-91c7e0c67b20 {} Console Console \N rj-45 \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 2023-09-19 2023-09-19 08:09:58.30899+00 +cb151da7-01dc-41fc-afd6-c319353f038d {} Console Console \N rj-45 \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 2023-09-19 2023-09-19 08:09:58.941409+00 +83d8446b-d758-42ea-8468-bbf09eb30ff6 {} Console Console \N rj-45 \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 2023-09-19 2023-09-19 08:09:59.658971+00 +359346dd-cd66-4c99-8d2d-be9a4d1473b5 {} Console Console \N rj-45 \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a 2023-09-19 2023-09-19 08:10:00.737441+00 +253a5bb9-03e6-4e29-810e-dff2940e1382 {} Console Console \N rj-45 \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 2023-09-19 2023-09-19 08:10:01.856173+00 +d459eb7e-d116-4fe0-8f18-7c517db70a55 {} Console Console \N rj-45 \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 2023-09-19 2023-09-19 08:10:02.922126+00 +2aa766e7-8cd9-43e1-9746-671b80903ee3 {} Console Console \N rj-45 \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 2023-09-19 2023-09-19 08:10:04.046782+00 +7fe833b0-57e4-41b2-8f32-520a396c7b22 {} Console Console \N rj-45 \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 2023-09-19 2023-09-19 08:10:07.66071+00 +543f63ed-6cd4-4b27-88ed-2e4f00094af9 {} Console Console \N rj-45 \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc 2023-09-19 2023-09-19 08:10:08.240332+00 +33be8154-d1b1-4637-8620-7010fb91cf1d {} Console Console \N rj-45 \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 2023-09-19 2023-09-19 08:10:08.822732+00 +54c2b096-49e2-41a3-8b0c-1c197f8632de {} Console Console \N rj-45 \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 2023-09-19 2023-09-19 08:10:09.452847+00 +b04a945c-9822-4f2a-9afb-72e377e546b5 {} Console Console \N rj-45 \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a 2023-09-19 2023-09-19 08:10:10.090441+00 +7b165133-3548-41e1-914a-81e68d81cb5e {} Console Console \N rj-45 \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 2023-09-19 2023-09-19 08:10:10.786411+00 +7f3a6733-73a3-4a52-828f-1223a668d29c {} Console Console \N rj-45 \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 2023-09-19 2023-09-19 08:10:11.406567+00 +38e27d75-289c-49de-b57f-640c3a96920f {} Console Console \N rj-45 \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 2023-09-19 2023-09-19 08:10:12.033117+00 +fcc50521-52c9-4f13-b2af-981dc01e81de {} Console Console \N rj-45 \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 2023-09-19 2023-09-19 08:10:12.824572+00 +ca13b410-1dd3-4ed9-b47e-228744302597 {} Console Console \N rj-45 \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf 2023-09-19 2023-09-19 08:10:13.44973+00 +30c6c57c-56fc-44c7-b03b-2a389b1692f5 {} Console Console \N rj-45 \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 2023-09-19 2023-09-19 08:10:23.792436+00 +da00e715-e203-4948-9708-c57bae33f889 {} Console Console \N rj-45 \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 2023-09-19 2023-09-19 08:10:24.334216+00 +6c607e66-3611-4505-8c59-974d4373de8c {} Console Console \N rj-45 \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 2023-09-19 2023-09-19 08:10:24.872484+00 +00e354c9-8566-4a5c-b97a-ac7ea0759a2a {} Console Console \N rj-45 \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 2023-09-19 2023-09-19 08:10:25.500229+00 +24d2a61e-b385-4bcd-97c9-0803ffebae50 {} Console Console \N rj-45 \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc 2023-09-19 2023-09-19 08:10:26.084167+00 +99b14abf-1b4f-4032-ba41-e6b8d2893936 {} Console Console \N rj-45 \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 2023-09-19 2023-09-19 08:10:26.674504+00 +97d27ad8-8b86-4708-8538-07ec274899b6 {} Console Console \N rj-45 \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 2023-09-19 2023-09-19 08:10:48.599509+00 +710c5043-fc41-4ca5-95d0-d4784debeb70 {} console console \N rj-45 \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 2023-09-19 2023-09-19 08:10:48.920927+00 +55cc482e-d94d-43b9-a74e-bde5b8743238 {} console console \N rj-45 \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 2023-09-19 2023-09-19 08:10:49.229819+00 +\. + + +-- +-- Data for Name: dcim_consoleporttemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_consoleporttemplate (id, _custom_field_data, name, _name, label, description, type, device_type_id, created, last_updated) FROM stdin; +6b32af12-502f-4718-a1f7-12c9747facca {} Console Console rj-45 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.931423+00 +6f8eb101-1c69-4471-9cb0-995acab1449b {} Console Console rj-45 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.156728+00 +502868a9-88d0-4b62-aff6-0d62f4fee116 {} console console rj-45 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.219171+00 +2492ebaf-713f-41ce-a93a-fc907884fd4f {} Console Console rj-45 bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.562339+00 +\. + + +-- +-- Data for Name: dcim_consoleserverport; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_consoleserverport (id, _custom_field_data, name, _name, label, description, _cable_peer_id, type, _cable_peer_type_id, _path_id, cable_id, device_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_consoleserverporttemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_consoleserverporttemplate (id, _custom_field_data, name, _name, label, description, type, device_type_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_device; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_device (id, created, last_updated, _custom_field_data, local_context_data, local_context_data_owner_object_id, name, _name, serial, asset_tag, "position", face, vc_position, vc_priority, comments, cluster_id, device_role_id, device_type_id, local_context_data_owner_content_type_id, platform_id, primary_ip4_id, primary_ip6_id, rack_id, site_id, status_id, tenant_id, virtual_chassis_id, local_context_schema_id, secrets_group_id, location_id, device_redundancy_group_priority, device_redundancy_group_id) FROM stdin; +06fa92a5-cddc-47aa-9a02-22b140d16be6 2023-09-19 2023-09-19 08:10:11.624202+00 {} \N \N pek01-leaf-05 pek00000001-leaf-00000005 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb ff0fa780-be2b-46cf-9e68-d9f8411e8526 \N 71119628-1f47-412c-93c6-6e5d54d14a89 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 2023-09-19 2023-09-19 08:09:56.828233+00 {} \N \N atl01-edge-01 atl00000001-edge-00000001 \N 40 front \N \N \N e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 4102bba0-6355-4099-8dbc-ade709900a05 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 64518eac-39ec-4faf-88ad-2c20b8504e89 \N 4851d57f-400b-45d5-8254-a30968ce665f b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 2023-09-19 2023-09-19 08:10:07.989758+00 {} \N \N pek01-edge-01 pek00000001-edge-00000001 \N 40 front \N \N \N e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 4102bba0-6355-4099-8dbc-ade709900a05 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 8f22c78d-3f82-43d8-beb5-fba7273025c0 \N cfc25d49-505e-4d41-a238-45212229fb5c ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +bed003a4-068f-493c-8519-b7ff3ab94f63 2023-09-19 2023-09-19 08:09:57.414288+00 {} \N \N atl01-edge-02 atl00000001-edge-00000002 \N 40 front \N \N \N e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 4102bba0-6355-4099-8dbc-ade709900a05 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 87bf1742-e06c-4d2a-95d8-42511691d98d \N d2a5a9f0-76dd-4032-a792-f94320744e9c b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +a6751a1a-e274-445d-ab2f-06ead1cb6d3c 2023-09-19 2023-09-19 08:09:57.890881+00 {} \N \N atl01-leaf-01 atl00000001-leaf-00000001 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb fb3bbfdd-f144-4f46-b56e-4adddd78001d \N 4851d57f-400b-45d5-8254-a30968ce665f b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +6be296b5-5db3-407b-915b-ebcfa5d73aa3 2023-09-19 2023-09-19 08:09:58.528986+00 {} \N \N atl01-leaf-02 atl00000001-leaf-00000002 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 1a98af18-01d2-4eb5-bc31-4eceb76ebb45 \N d2a5a9f0-76dd-4032-a792-f94320744e9c b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +b1d1e038-acb3-468f-810b-5d0f549a66cc 2023-09-19 2023-09-19 08:10:08.582811+00 {} \N \N pek01-edge-02 pek00000001-edge-00000002 \N 40 front \N \N \N e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 4102bba0-6355-4099-8dbc-ade709900a05 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 68458e69-78e8-4bf0-ad80-ea994ce47ba0 \N ad31bac2-a109-4cb3-aac7-5b0168201718 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +5aa04755-8fbe-4378-97ed-b23f0ac0e928 2023-09-19 2023-09-19 08:09:59.179118+00 {} \N \N atl01-leaf-03 atl00000001-leaf-00000003 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb df195778-2193-4339-b1e3-4260573c7215 \N f557ec08-708c-4543-b0bb-805ba238bdb5 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +17fa82e4-d0ad-4092-b3c0-1f597bc84883 2023-09-19 2023-09-19 08:10:00.008989+00 {} \N \N atl01-leaf-04 atl00000001-leaf-00000004 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 904db0ae-f100-4dd1-9c5c-a1f79030cc69 \N b8ab72ab-df4c-415d-be75-acf759283693 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +684ba856-7ace-4a36-9c56-e646e71ebb6a 2023-09-19 2023-09-19 08:10:01.119725+00 {} \N \N atl01-leaf-05 atl00000001-leaf-00000005 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 45ffde5e-e266-48b2-b155-552f699d5fc7 \N 7260bc91-417a-4237-8865-b46f12fa71ae b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +c2bb0304-fcac-4397-9d63-e7503688aae6 2023-09-19 2023-09-19 08:10:09.040556+00 {} \N \N pek01-leaf-01 pek00000001-leaf-00000001 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb e112232c-fd9e-4ada-b2d4-77a315cd7669 \N cfc25d49-505e-4d41-a238-45212229fb5c ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +bb5af4d5-3007-4d6a-8965-10db2ec91b76 2023-09-19 2023-09-19 08:10:02.143678+00 {} \N \N atl01-leaf-06 atl00000001-leaf-00000006 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 433128bb-b56c-4372-85cc-cac843662608 \N 477ad3e2-6bc9-4b7f-bbaa-3756bfe7803f b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 2023-09-19 2023-09-19 08:10:03.458388+00 {} \N \N atl01-leaf-07 atl00000001-leaf-00000007 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb e553a141-464b-4a96-887b-6b7ddb4253dc \N 4aa7ed1d-24b6-429a-985c-1f15e48dd55d b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +ebe97465-935f-4bf8-b29a-d0e1100d5528 2023-09-19 2023-09-19 08:10:12.419921+00 {} \N \N pek01-leaf-06 pek00000001-leaf-00000006 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 4dcce844-fc38-48cc-9727-9bf7fb0e197d \N f02932bb-a31d-4063-8a01-2e03135942ea ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +c2fe5345-d2c7-4214-8406-31b2b2b87aa2 2023-09-19 2023-09-19 08:10:04.380448+00 {} \N \N atl01-leaf-08 atl00000001-leaf-00000008 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb af16b55b-d4eb-4004-afb9-03984ec463ac \N 1645f307-4c50-4d94-93cc-1870ddb3a4d5 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 2023-09-19 2023-09-19 08:10:09.669507+00 {} \N \N pek01-leaf-02 pek00000001-leaf-00000002 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 8f5eeac4-47bf-4617-b754-af32b9196014 \N ad31bac2-a109-4cb3-aac7-5b0168201718 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +dbf9eba6-2713-48f9-94df-7fa36fd3880a 2023-09-19 2023-09-19 08:10:10.32736+00 {} \N \N pek01-leaf-03 pek00000001-leaf-00000003 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 6de276b4-b572-4a6b-b314-546b0ce1def1 \N 669ff4b2-3613-4126-8c94-6ec633605908 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +bf032a0f-20ad-4ae4-a37b-a4971292c8b3 2023-09-19 2023-09-19 08:10:11.001322+00 {} \N \N pek01-leaf-04 pek00000001-leaf-00000004 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 173c0d97-7df8-4b1a-8bd2-ddcb22d11f06 \N 6ee94af6-bcc4-4a83-a50c-9f24f280f11e ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +16745b0e-5964-4f3e-99e3-aa1646f275f5 2023-09-19 2023-09-19 08:10:24.652764+00 {} \N \N bre01-edge-02 bre00000001-edge-00000002 \N 40 front \N \N \N e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 4102bba0-6355-4099-8dbc-ade709900a05 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb a9049632-eb83-47e1-8306-7bebce7d55c4 \N 79101516-edd8-4fc4-8ac8-8f03881c14aa fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +1724a7eb-1663-47da-abaa-00b6271c9754 2023-09-19 2023-09-19 08:10:13.042513+00 {} \N \N pek01-leaf-07 pek00000001-leaf-00000007 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb aa93b8c4-6278-4752-9039-a4822ba10574 \N ad48dcdb-4af9-4696-9110-03d203a534ac ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +bf4037a6-1802-48e9-8e95-3fd2326f4bdf 2023-09-19 2023-09-19 08:10:13.666741+00 {} \N \N pek01-leaf-08 pek00000001-leaf-00000008 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 82f1f156-351e-4485-84b1-8276f3853a72 \N c64be28e-8586-47b4-9f83-6d203ac60cd9 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +45eac4b1-0a5a-4146-88b5-d0118ba22a0e 2023-09-19 2023-09-19 08:10:24.114676+00 {} \N \N bre01-edge-01 bre00000001-edge-00000001 \N 40 front \N \N \N e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 4102bba0-6355-4099-8dbc-ade709900a05 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 08438ad8-772b-4701-b495-8b7fc4963f92 \N 714ca75d-083d-4de2-86ec-91462e454f88 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +ec08f4ed-e461-4aac-8015-9a1daa49fae6 2023-09-19 2023-09-19 08:10:25.07488+00 {} \N \N bre01-leaf-01 bre00000001-leaf-00000001 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb e3ea3e10-5ccb-41f4-a6fe-add08f51c6b2 \N 714ca75d-083d-4de2-86ec-91462e454f88 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +1642541a-a832-42b8-b80b-c661b9fdd9dc 2023-09-19 2023-09-19 08:10:26.286804+00 {} \N \N bre01-leaf-03 bre00000001-leaf-00000003 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 9d29c356-1fa7-4cb9-b996-4908fa8a76be \N e6bddf2a-db84-4400-b5f6-fb86ba385f48 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +0d12dbec-16f5-414f-ab68-cd3eda8edb9b 2023-09-19 2023-09-19 08:10:25.71529+00 {} \N \N bre01-leaf-02 bre00000001-leaf-00000002 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 56886de2-c2cb-4ae0-98ee-b0776d2039a3 \N 79101516-edd8-4fc4-8ac8-8f03881c14aa fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +f23f0755-7e34-4610-a5af-d21f4d669186 2023-09-19 2023-09-19 08:10:26.877407+00 {} \N \N bre01-leaf-04 bre00000001-leaf-00000004 \N 44 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 08030f83-dcbe-4351-b98a-d5e735fade66 \N 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 1b7932ae-63ed-4c02-b25a-8ba3b965e3c5 \N 5dddf39b-002a-4561-8596-6e9f9fbdc2c1 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +80f9eb01-db6d-4939-9f2e-ef2c222cedee 2023-09-19 2023-09-19 08:11:05.213199+00 {} {"bgp": {"asn": 65251, "rid": "10.0.10.1", "neighbors": [{"ip": "10.10.0.6", "remote-asn": 65251}, {"ip": "10.10.0.10", "remote-asn": 65251}, {"ip": "10.10.11.6", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0 0.0.0.0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 jcy-rtr-01.infra.ntc.com jcy-rtr-00000001.infra.ntc.com \N 19 front \N \N \N cb6d99e8-8490-435b-8beb-040bbf5dcc01 5e6c528b-fc44-4c84-8432-e29d8dd9e544 139 747f56fb-3012-43e4-923c-aed6195b585c \N \N c6952bd7-9c1b-42fa-affb-918ab3205eb2 a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +b99c3111-0b6d-4a36-8207-45d2d00e7e37 2023-09-19 2023-09-19 08:11:04.011084+00 {} {"bgp": {"asn": 65254, "rid": "10.0.20.6", "neighbors": [{"ip": "10.11.11.13", "remote-asn": 65253}, {"ip": "10.11.11.21", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-leaf-01.infra.ntc.com nyc-leaf-00000001.infra.ntc.com \N 47 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 ad7e3154-b469-4ba1-b111-46c9e82d5746 139 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb \N \N 4e48af22-9aea-42d4-b3f8-d457274fd1d5 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +720ef39b-a75e-4681-ac70-4237598974d0 2023-09-19 2023-09-19 08:11:04.150242+00 {} {"bgp": {"asn": 65251, "rid": "10.0.10.2", "neighbors": [{"ip": "10.10.0.9", "remote-asn": 65251}, {"ip": "10.10.0.14", "remote-asn": 65251}, {"ip": "10.10.11.10", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 jcy-rtr-02.infra.ntc.com jcy-rtr-00000002.infra.ntc.com \N 48 front \N \N \N cb6d99e8-8490-435b-8beb-040bbf5dcc01 5e6c528b-fc44-4c84-8432-e29d8dd9e544 139 747f56fb-3012-43e4-923c-aed6195b585c \N \N 11a03141-2d38-4aff-8c12-ad5d5643949b a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +a420d520-ef19-46a3-90a8-6f47be57b3d6 2023-09-19 2023-09-19 08:11:04.278696+00 {} {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 wee-n9k-01.nautobot.com wee-n00000009k-00000001.nautobot.com \N 42 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 3da7fc03-2e5e-480e-8fcd-68f626c79f08 139 6868b094-e65b-4476-ba1c-2a047ffd5ca0 42664a85-b5d1-4da8-a3da-f22709bbbee3 \N 83872b5c-1a21-44dc-aca6-1995a9c3daa3 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +45cca71d-85a7-42ac-b792-af8b4aef87cd 2023-09-19 2023-09-19 08:11:04.391594+00 {} {"acl": {"interfaces": {"GigabitEthernet2": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65251, "rid": "10.0.10.3", "neighbors": [{"ip": "10.10.0.5", "remote-asn": 65251}, {"ip": "10.10.0.13", "remote-asn": 65251}, {"ip": "10.10.0.18", "remote-asn": 65252}], "redistribute": ["connected"], "log-neighbor-changes": true}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 jcy-bb-01.infra.ntc.com jcy-bb-00000001.infra.ntc.com \N 22 front \N \N \N 3e817255-baaf-4276-b892-f22e658ff06e 5e6c528b-fc44-4c84-8432-e29d8dd9e544 139 747f56fb-3012-43e4-923c-aed6195b585c \N \N c6952bd7-9c1b-42fa-affb-918ab3205eb2 a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +6442be3b-16d7-4788-ad3f-fb88282ea42d 2023-09-19 2023-09-19 08:11:04.418196+00 {} {"bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 jcy-spine-01.infra.ntc.com jcy-spine-00000001.infra.ntc.com \N 17 front \N \N \N 88d95830-16be-46e7-9107-03c74d68d184 fd17743d-d509-44c1-b975-cea0bb46f540 139 6868b094-e65b-4476-ba1c-2a047ffd5ca0 \N \N c6952bd7-9c1b-42fa-affb-918ab3205eb2 a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 2023-09-19 2023-09-19 08:11:04.533267+00 {} {"bgp": {"asn": 65255, "rid": "10.0.20.7", "neighbors": [{"ip": "10.11.11.17", "remote-asn": 65253}, {"ip": "10.11.11.25", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-leaf-02.infra.ntc.com nyc-leaf-00000002.infra.ntc.com \N 48 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 ad7e3154-b469-4ba1-b111-46c9e82d5746 139 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb \N \N 2e016756-1b1c-4f73-80ac-0f4f845815a7 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +919660c6-0654-4904-9cf5-61a03cc069c3 2023-09-19 2023-09-19 08:11:04.637156+00 {} {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.22", "remote-asn": 65252}, {"ip": "10.10.0.26", "remote-asn": 65252}, {"ip": "10.11.11.6", "remote-asn": 65253}]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-rtr-01.infra.ntc.com nyc-rtr-00000001.infra.ntc.com \N 46 front \N \N \N cb6d99e8-8490-435b-8beb-040bbf5dcc01 e202cd25-c9a0-4680-9692-b06523061f75 139 8758fe0f-e52e-43f6-ae17-5b9ebe650914 \N \N 4e48af22-9aea-42d4-b3f8-d457274fd1d5 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +cdece2fc-4010-45d0-9949-3de52bb707c5 2023-09-19 2023-09-19 08:11:04.931577+00 {} {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 wee-eos7k-01.nautobot.com wee-eos00000007k-00000001.nautobot.com \N 42 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 bd0220a8-c7d5-4216-b069-b3d866f11bf0 139 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 3e0e6ef6-fa3f-47f2-99c8-0170fc009950 \N 1ef378ee-b3c0-4ee6-acca-21ed786a8613 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +c8fef37f-699a-4f5a-b228-495cb5702a43 2023-09-19 2023-09-19 08:11:05.051926+00 {} {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.30", "remote-asn": 65252}, {"ip": "10.10.0.25", "remote-asn": 65252}, {"ip": "10.11.11.10", "remote-asn": 65253}]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-rtr-02.infra.ntc.com nyc-rtr-00000002.infra.ntc.com \N 47 front \N \N \N cb6d99e8-8490-435b-8beb-040bbf5dcc01 e202cd25-c9a0-4680-9692-b06523061f75 139 8758fe0f-e52e-43f6-ae17-5b9ebe650914 \N \N 2e016756-1b1c-4f73-80ac-0f4f845815a7 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +4f1092db-761d-4ae6-9d20-275e186b67ea 2023-09-19 2023-09-19 08:11:05.155669+00 {} {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.17", "remote-asn": 65251}, {"ip": "10.10.0.21", "remote-asn": 65252}, {"ip": "10.10.0.29", "remote-asn": 65252}]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-bb-01.infra.ntc.com nyc-bb-00000001.infra.ntc.com \N 48 front \N \N \N 3e817255-baaf-4276-b892-f22e658ff06e e202cd25-c9a0-4680-9692-b06523061f75 139 8758fe0f-e52e-43f6-ae17-5b9ebe650914 \N \N 4e48af22-9aea-42d4-b3f8-d457274fd1d5 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +182b57af-ef9e-428d-916d-7f18e14357d1 2023-09-19 2023-09-19 08:11:05.386509+00 {} {"bgp": {"asn": 65253, "rid": "10.0.20.5", "neighbors": [{"ip": "10.11.11.9", "remote-asn": 65252}, {"ip": "10.11.11.22", "remote-asn": 65254}, {"ip": "10.11.11.26", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-spine-02.infra.ntc.com nyc-spine-00000002.infra.ntc.com \N 46 front \N \N \N 88d95830-16be-46e7-9107-03c74d68d184 ad7e3154-b469-4ba1-b111-46c9e82d5746 139 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb \N \N 2e016756-1b1c-4f73-80ac-0f4f845815a7 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +4620c38c-b222-443c-9e31-98ef97b2e756 2023-09-19 2023-09-19 08:11:04.807439+00 {} {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 wee-n9k-02.nautobot.com wee-n00000009k-00000002.nautobot.com \N 42 front \N \N \N 90fc50d2-3669-41e2-a47a-4c776a053018 3da7fc03-2e5e-480e-8fcd-68f626c79f08 139 6868b094-e65b-4476-ba1c-2a047ffd5ca0 82dedfba-973b-440e-bdd5-2b0d83166dce \N ba225b65-68b4-4724-bcad-cc5715e22666 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +be8b5ac0-0df7-4eff-90f1-4c86f16c362e 2023-09-19 2023-09-19 08:11:05.294572+00 {} {"bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 nyc-spine-01.infra.ntc.com nyc-spine-00000001.infra.ntc.com \N 45 front \N \N \N 88d95830-16be-46e7-9107-03c74d68d184 ad7e3154-b469-4ba1-b111-46c9e82d5746 139 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb \N \N 4e48af22-9aea-42d4-b3f8-d457274fd1d5 ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 2023-09-19 2023-09-19 08:11:05.340812+00 {} {"bgp": {"asn": 65250, "rid": "10.0.10.5", "neighbors": [{"ip": "10.10.10.5", "remote-asn": 65250}, {"ip": "10.10.10.9", "remote-asn": 65250}, {"ip": "10.10.10.13", "remote-asn": 65250}, {"ip": "10.10.10.17", "remote-asn": 65250}, {"ip": "10.10.11.9", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}} de7bcb0e-e532-41a6-a98f-39b46fad33e7 jcy-spine-02.infra.ntc.com jcy-spine-00000002.infra.ntc.com \N 47 front \N \N \N 88d95830-16be-46e7-9107-03c74d68d184 fd17743d-d509-44c1-b975-cea0bb46f540 139 6868b094-e65b-4476-ba1c-2a047ffd5ca0 \N \N 11a03141-2d38-4aff-8c12-ad5d5643949b a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +06448d2a-efc7-46ed-835c-b5dcf8178556 2023-09-19 2023-09-19 08:11:10.461273+00 {} \N \N atl01-dist-01 atl00000001-dist-00000001 \N \N \N \N \N ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 7e57574a-1469-40cc-8b76-f07a72c7173c \N 747f56fb-3012-43e4-923c-aed6195b585c \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +c1ad30ce-4757-4bc7-96f1-77522ca019d4 2023-09-19 2023-09-19 08:11:10.487028+00 {} \N \N bre01-dist-01 bre00000001-dist-00000001 \N \N \N \N \N ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 7e57574a-1469-40cc-8b76-f07a72c7173c \N 747f56fb-3012-43e4-923c-aed6195b585c \N \N \N fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N \N \N \N +b150f1d5-6b4c-46a4-8a0e-e6c79280b63b 2023-09-19 2023-09-19 08:11:10.503302+00 {} \N \N jcy-dist-01 jcy-dist-00000001 \N \N \N \N \N ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 7e57574a-1469-40cc-8b76-f07a72c7173c \N 747f56fb-3012-43e4-923c-aed6195b585c \N \N \N a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +2646bbfd-1134-4b76-af3d-6ae0927d5916 2023-09-19 2023-09-19 08:11:10.519276+00 {} \N \N nyc-dist-01 nyc-dist-00000001 \N \N \N \N \N ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 7e57574a-1469-40cc-8b76-f07a72c7173c \N 747f56fb-3012-43e4-923c-aed6195b585c \N \N \N ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +beabae34-b69a-4aaa-bf44-33ebd7d2e4f9 2023-09-19 2023-09-19 08:11:10.535321+00 {} \N \N pek01-dist-01 pek00000001-dist-00000001 \N \N \N \N \N ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 7e57574a-1469-40cc-8b76-f07a72c7173c \N 747f56fb-3012-43e4-923c-aed6195b585c \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N \N \N \N +fa7f3228-db3e-449a-9e99-c5185b5de9b7 2023-09-19 2023-09-19 08:11:10.551284+00 {} \N \N weehawken-dist-01 weehawken-dist-00000001 \N \N \N \N \N ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 7e57574a-1469-40cc-8b76-f07a72c7173c \N 747f56fb-3012-43e4-923c-aed6195b585c \N \N \N 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N \N \N \N \N \N +\. + + +-- +-- Data for Name: dcim_devicebay; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_devicebay (id, _custom_field_data, name, _name, label, description, device_id, installed_device_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_devicebaytemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_devicebaytemplate (id, _custom_field_data, name, _name, label, description, device_type_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_deviceredundancygroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_deviceredundancygroup (id, created, last_updated, _custom_field_data, name, slug, description, failover_strategy, comments, secrets_group_id, status_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_devicerole; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_devicerole (id, created, last_updated, _custom_field_data, name, slug, color, vm_role, description) FROM stdin; +e38940f1-33e6-4bbf-8dff-2ff8cc185bb0 2023-09-19 2023-09-19 08:09:56.44996+00 {} edge edge ff9800 t +90fc50d2-3669-41e2-a47a-4c776a053018 2023-09-19 2023-09-19 08:09:57.657851+00 {} leaf leaf 3f51b5 t +3e817255-baaf-4276-b892-f22e658ff06e 2023-09-19 2023-09-19 08:10:35.993341+00 {} Backbone backbone 9c27b0 t +cb6d99e8-8490-435b-8beb-040bbf5dcc01 2023-09-19 2023-09-19 08:10:36.15364+00 {} Router router 03a9f4 t +88d95830-16be-46e7-9107-03c74d68d184 2023-09-19 2023-09-19 08:10:36.449937+00 {} spine spine ffeb3b t +ea9ae5f7-9156-4e4e-bbc3-77c5c53afdff 2023-09-19 2023-09-19 08:11:10.452401+00 {} distribution distribution 2196f3 t +\. + + +-- +-- Data for Name: dcim_devicetype; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_devicetype (id, created, last_updated, _custom_field_data, model, slug, part_number, u_height, is_full_depth, subdevice_role, front_image, rear_image, comments, manufacturer_id) FROM stdin; +08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.929459+00 {} DCS-7150S-24 dcs-7150s-24 DCS-7150S-24 1 f 9e60ff6f-17bc-4041-8576-9503cd63cbf0 +4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.155234+00 {} DCS-7280CR2-60 dcs-7280cr2-60 DCS-7280CR2-60 2 t 9e60ff6f-17bc-4041-8576-9503cd63cbf0 +fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.890592+00 {} Nexus 9Kv cisco-nx-osv-chassis 1 t 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.927912+00 {} vEOS veos veos 1 t 9e60ff6f-17bc-4041-8576-9503cd63cbf0 +e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.955494+00 {} vMX vmx 1 t aa792efd-5108-432a-98ff-c8e0d0b27067 +5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.978052+00 {} CSR1000V csr1000v CSR1000V 1 t 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.21757+00 {} Nexus 9372TX n9k-C9372tx N9K-C9372TX 1 f 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.561051+00 {} DCS-7048-T dcs-7048-t 1 t 9e60ff6f-17bc-4041-8576-9503cd63cbf0 +7e57574a-1469-40cc-8b76-f07a72c7173c 2023-09-19 2023-09-19 08:11:10.449146+00 {} Catalyst 6509-E catalyst-6509-e WS-C6509-E 14 t 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +\. + + +-- +-- Data for Name: dcim_frontport; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_frontport (id, _custom_field_data, name, _name, label, description, _cable_peer_id, type, rear_port_position, _cable_peer_type_id, cable_id, device_id, rear_port_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_frontporttemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_frontporttemplate (id, _custom_field_data, name, _name, label, description, type, rear_port_position, device_type_id, rear_port_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_interface; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_interface (id, _custom_field_data, name, label, description, _cable_peer_id, enabled, mac_address, mtu, mode, _name, type, mgmt_only, _cable_peer_type_id, _path_id, cable_id, device_id, lag_id, untagged_vlan_id, status_id, parent_interface_id, bridge_id, created, last_updated) FROM stdin; +e41f5129-c1e5-4fa3-b080-87460e864cbd {"role": null} GigabitEthernet1 \N t \N \N 9999999999999999GigabitEthernet000001............ 1000base-t t \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.03365+00 +c4b26adb-0444-44b0-ae6d-2b58f44584c5 {"role": null} Ethernet17/1 \N t \N \N 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667391+00 +695361cf-93ea-40b3-8e8a-570658611e50 {"role": null} Ethernet18/1 \N t \N \N 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667452+00 +42d1e55a-6e01-489a-b25c-b263f432d5c0 {"role": null} Ethernet19/1 \N t \N \N 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667512+00 +12aca9c1-38ee-4405-8e29-d6472f1e6597 {"role": null} Ethernet20/1 \N t \N \N 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667574+00 +b3326a4a-8217-451a-84bd-e96b675cd759 {"role": null} Ethernet21/1 \N t \N \N 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667635+00 +f10a4a3c-c1dd-4d3d-b728-4f04a4ef60cb {"role": null} Ethernet22/1 \N t \N \N 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667698+00 +3afb6683-33a5-4143-87da-5a88827ef7ae {"role": null} Ethernet23/1 \N t \N \N 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.66776+00 +22a4fa27-2031-4050-965a-badb71b966d2 {"role": null} Ethernet24/1 \N t \N \N 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667822+00 +750ab8b7-2745-40db-924a-e7fef5387d59 {"role": null} Ethernet25/1 \N t \N \N 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667882+00 +a5835330-536c-42e5-9574-19c49c5fc2b2 {"role": null} Ethernet26/1 \N t \N \N 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.667942+00 +55eee9ce-ede4-4160-bd66-c38f098eef7c {"role": null} Ethernet27/1 \N t \N \N 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668002+00 +1e65941f-4281-4545-ae6b-4f2cf81c4c9d {"role": null} Ethernet28/1 \N t \N \N 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668063+00 +12726b20-0883-465a-b83e-ee924ab578e4 {"role": null} Ethernet29/1 \N t \N \N 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668124+00 +5482df9e-947d-4edc-a29c-5ef980277968 {"role": null} Ethernet30/1 \N t \N \N 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668183+00 +f4fb5f1a-663e-41cd-8855-3a1cec71c61e {"role": null} Ethernet31/1 \N t \N \N 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668243+00 +1fc56e21-c08a-4264-9527-e81f2edf33fd {"role": null} Ethernet32/1 \N t \N \N 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668303+00 +f228592b-2693-493c-9eb0-ea5682ecd257 {"role": null} Ethernet33/1 \N t \N \N 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668363+00 +b0c69707-2dd8-4571-b192-ae608c9416ba {"role": null} Ethernet34/1 \N t \N \N 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668426+00 +e6adadd2-34d1-4d0a-86ae-8a1bfda610e8 {"role": null} Ethernet35/1 \N t \N \N 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668485+00 +46010e04-1278-4ae1-924c-d945fbd58e67 {"role": null} Ethernet36/1 \N t \N \N 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668545+00 +93ba8fa7-c685-408b-b268-aa26223d3f35 {"role": null} Ethernet37/1 \N t \N \N 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668604+00 +86a6de2b-0f08-4e6c-890b-36171bfc91fe {"role": null} Ethernet38/1 \N t \N \N 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668663+00 +4e67e9be-4aa1-4f64-beae-2cfb8fe6fce8 {"role": null} Ethernet39/1 \N t \N \N 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668723+00 +a3f504fe-d217-49be-a4de-e6ed4da146df {"role": null} Ethernet40/1 \N t \N \N 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668785+00 +3c87db10-1e57-4c28-b8f3-50f5fd244d17 {"role": null} Ethernet41/1 \N t \N \N 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668844+00 +190bc8f8-6755-4bc3-84c0-af61ff485b7d {"role": "leaf"} Ethernet11/1 \N t \N \N 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.989146+00 +dfeb9d84-09b4-4ae3-ab21-0279196c3505 {"role": "leaf"} Ethernet12/1 \N t \N \N 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.003471+00 +fa765d1b-b408-467e-bd72-5b2680a173ea {"role": "leaf"} Ethernet13/1 \N t \N \N 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.018008+00 +9989ca75-4f5d-4c39-b168-6da00dcd4ca4 {"role": "leaf"} Ethernet14/1 \N t \N \N 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.032334+00 +f75fa9dd-597a-4985-82dc-7dcd428e9ef1 {"role": "external"} Ethernet15/1 a978f8bc-36b6-4390-ac29-95ff16fd6a6e t \N \N 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 4704a072-10bc-4890-b844-77f421d8b105 eda55c48-538c-45e6-82b2-dcd75ec06741 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.375363+00 +02783645-57c4-459d-b43d-5b8ccabd8026 {"role": "external"} Ethernet16/1 196e507e-c007-408e-b0a1-1524ab5681ec t \N \N 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 8495ad04-ad65-4930-a92c-912001ac8be5 8389046b-ced9-4c0b-9c30-5466b7763ebf 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.419968+00 +b292811f-370b-4a74-b584-779facc0bb68 {"role": "leaf"} Ethernet4/1 bf4b250b-fc2b-4905-8476-32b56bb66958 t \N \N 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 f43d47e1-2c92-4af6-862e-0afe09ad2021 6412c2c9-f51f-4d7b-b064-4e9edb6c555c 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.86651+00 +0e4d86be-e92a-4b26-b2c7-1961d3668344 {"role": "leaf"} Ethernet5/1 3d9f069c-734b-4fc9-9eb7-34b7d34e5441 t \N \N 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 7581852a-58ee-4980-9eb1-f673b52c87ef c5393878-1472-4920-b3d5-046b19f34d4a 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.25475+00 +27ce4598-c7a6-4307-aa86-524149200ec1 {"role": "leaf"} Ethernet7/1 adbb105c-ef41-4c56-83f9-3decf72fa469 t \N \N 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 0b5e397c-d6e3-47bb-bc02-76017bf44b7f 604ee9e4-6852-4c9a-8ba1-2ffa61623544 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.69187+00 +b0fab83c-27f0-4789-9a1a-153dbbc5674f {"role": "leaf"} Ethernet8/1 15ee8663-a4c9-4e13-88c9-2ad2533f8a58 t \N \N 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 6dbe18e6-2d7f-4572-80d3-530467106c33 b7a57d39-0e67-4882-a9e7-895d102ca961 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.855054+00 +fb0e845d-5cd1-4e23-8021-69d3b84b8a9c {"role": "leaf"} Ethernet10/1 babf2eca-c221-4feb-a649-b469302fbf0b t \N \N 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 ae85d740-72ae-47ef-8ce8-cf9f5b22b9ca e7688daa-e5c7-42e9-b036-f8429a639a51 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.182845+00 +f5412c01-d794-40f5-9d9e-529b9a5065d6 {"role": null} Ethernet42/1 \N t \N \N 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668904+00 +b6d17d0d-42f8-4aec-aed0-2d12dc81b168 {"role": null} Ethernet43/1 \N t \N \N 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.668963+00 +808207c1-f2d0-48e6-bdcb-bd29e5d57b83 {"role": null} Ethernet44/1 \N t \N \N 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669023+00 +c97d9067-44d4-4f7a-9923-7ea847e28834 {"role": null} Ethernet45/1 \N t \N \N 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669081+00 +65cdc302-473d-45ca-99bb-31ddf320ba0d {"role": null} Ethernet46/1 \N t \N \N 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.66914+00 +0243b75c-9062-4b76-951c-46a9a5d8ae4e {"role": null} Ethernet47/1 \N t \N \N 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669199+00 +57f462eb-7d98-4f76-bb2a-36d7c2b38abf {"role": null} Ethernet48/1 \N t \N \N 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669259+00 +5d92d7ae-fceb-4494-b2c8-9972eb8dba2f {"role": null} Ethernet49/1 \N t \N \N 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669317+00 +78a9718c-e411-4a04-ab4c-6692d003e349 {"role": null} Ethernet50/1 \N t \N \N 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669376+00 +e35caef9-74c7-46e5-b0cd-a5af4092a012 {"role": null} Ethernet51/1 \N t \N \N 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669435+00 +40b4c339-8e11-4999-bf35-33cf85692193 {"role": null} Ethernet52/1 \N t \N \N 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669495+00 +cc6317aa-e020-489e-a158-7cae946b48ec {"role": null} Ethernet53/1 \N t \N \N 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669554+00 +57220c55-65b0-4a8b-99fa-dbaaaef636bb {"role": null} Ethernet54/1 \N t \N \N 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669612+00 +e2810236-2849-43db-9e16-47fe40f401a2 {"role": null} Ethernet55/1 \N t \N \N 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669671+00 +151e4426-f6f8-4bab-8783-d5968ff9993a {"role": null} Ethernet56/1 \N t \N \N 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.66973+00 +7a30b6c9-f95c-455c-889b-5f7d6b86789a {"role": null} Ethernet57/1 \N t \N \N 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669789+00 +5adee946-b419-4beb-9b28-9528d3ef3585 {"role": null} Ethernet58/1 \N t \N \N 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669848+00 +aa609056-e5a0-416d-9a94-0ced36c10c32 {"role": null} Ethernet59/1 \N t \N \N 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.669911+00 +0ab8d4b9-3a72-4b0b-98e8-5d60877d67e2 {"role": null} Ethernet60/1 \N t \N \N 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.66997+00 +b14aaef6-cf04-417b-a2bb-8502b29ea0cc {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.670029+00 +12446c38-8f3a-44f1-86e5-0d284c24c734 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:56.738769+00 +6b8ad446-36ca-4d35-b290-d21e2f0c760b {"role": null} GigabitEthernet4 9ee067f2-f3c9-4eb2-aab0-30c6c39b3ff0 t \N \N 9999999999999999GigabitEthernet000004............ 1000base-t f 4 341e6cf6-3d4b-4a7d-9792-da9618ba3545 07100c5d-7537-4bf8-a6a8-e143fbf9479d 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.143764+00 +889e9429-8f71-476c-889d-0b4a0445f402 {"role": null} Ethernet17/1 \N t \N \N 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.265542+00 +8225b134-9327-434f-8c55-a91c93a958d7 {"role": null} Ethernet18/1 \N t \N \N 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26561+00 +12df84be-c882-4913-8693-908af2be33e0 {"role": null} Ethernet19/1 \N t \N \N 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26567+00 +75659a3f-4bd1-41d9-981f-1eae725d3446 {"role": "leaf"} Ethernet11/1 \N t \N \N 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.577901+00 +231f3527-15b0-41ff-a267-4fa5aeee9378 {"role": "leaf"} Ethernet12/1 \N t \N \N 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.5922+00 +a341e182-df0a-427b-8150-6943151045a8 {"role": "leaf"} Ethernet13/1 \N t \N \N 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.606382+00 +c8cc81c0-068e-4ef0-aff5-a90903f4dacd {"role": "leaf"} Ethernet14/1 \N t \N \N 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.62052+00 +5f2654c9-81d2-4862-bab1-ffb897829334 {"role": "external"} Ethernet15/1 202e5f20-018a-4266-a5b3-ff13b4cca1e8 t \N \N 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 94d54939-480e-4380-b1a4-d7aef5405a9f e76145bc-897d-493b-aefa-5a5ba4aaf8dc bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.463211+00 +aed29452-c3bf-4a6c-9e9e-de9f83608e88 {"role": "external"} Ethernet16/1 10bc9bcd-962b-4560-bfe5-86f3d792f098 t \N \N 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 b6fb78f9-289f-4bd0-9ef1-91ffdf61cf00 53f165dc-f216-423c-90f6-082e7085f7aa bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.506764+00 +48757a3d-13f0-408e-9863-3af97189ff2d {"role": "leaf"} Ethernet3/1 9ab0df39-4525-473c-b134-d903f406aeab t \N \N 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 3926e2ea-6902-408b-a2c2-f024260091e8 c1e99fd4-fe13-4020-8650-d724be3354a0 bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.707425+00 +ef8ad9c2-3d78-4434-b898-bc230b9f7c79 {"role": "leaf"} Ethernet4/1 6d95cdbb-0df4-47d7-95b4-009273c74611 t \N \N 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 306eb04f-6645-4346-a803-6d9e29f9fcc3 f3fdae41-9b74-4cbf-88bc-94e4e282fa6c bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.059033+00 +cb47baba-9476-4dfc-a334-7d244d2e2be1 {"role": "leaf"} Ethernet6/1 92ad1c81-fc83-49c0-bf9b-bb727f5df8a4 t \N \N 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 0624c163-cd09-40f8-a694-09d4657c9c2e 2dca496e-7f78-43d5-ad27-2f753208311f bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.609094+00 +c885b7d6-df35-41c6-89d3-7d570a01b37f {"role": "leaf"} Ethernet7/1 f25fd314-9571-404f-ba61-5e33d4808523 t \N \N 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 bc9b4c3f-a854-4d4a-9021-73e73495fb13 c6652864-d187-492d-8c9f-84f754d58080 bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.772878+00 +b20ab714-a9bb-4d57-bf1b-29e93cbcce0f {"role": "leaf"} Ethernet8/1 b8ae6d6f-920c-437f-9610-3c67eea45262 t \N \N 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 8f61932d-f7be-48fd-bc25-97d027b5f5f7 2d2027c5-fbdb-410d-81b5-56127e77d859 bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.935939+00 +80a51250-4175-49a6-984e-276be502fdb5 {"role": "leaf"} Ethernet10/1 f96de7a0-c907-4600-8ef6-fbacdbfce491 t \N \N 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 d0232db1-98a1-426a-a0ce-7395d92cb708 8e511f70-1553-4561-a4f3-afd30dd671c6 bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.263974+00 +bfe685a9-08a9-4c39-a909-1246ac3aac0d {"role": null} Ethernet20/1 \N t \N \N 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.265731+00 +3521476c-a39c-4fd5-9269-2f9fa7a26546 {"role": null} Ethernet21/1 \N t \N \N 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.265791+00 +2a45b550-76b1-47dd-a377-92fc2464681d {"role": null} Ethernet22/1 \N t \N \N 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26585+00 +d9754e63-e349-476b-a1f1-40cfd49d300e {"role": null} Ethernet23/1 \N t \N \N 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26591+00 +5ce7f38f-844b-43c8-a894-ac7cbebaa605 {"role": null} Ethernet24/1 \N t \N \N 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26597+00 +8b3789ce-00a5-43b2-aecc-f71296283c51 {"role": null} Ethernet25/1 \N t \N \N 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266029+00 +5ed27327-f6de-4ab2-920b-dc52efbe968c {"role": null} Ethernet26/1 \N t \N \N 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266089+00 +22686ab6-5e82-480a-8637-411c698d0b23 {"role": null} Ethernet27/1 \N t \N \N 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266148+00 +f0ce8200-42ab-49da-aa60-6296a42e67aa {"role": null} Ethernet28/1 \N t \N \N 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266207+00 +6702f1bd-98d2-4a33-8d62-e6db086dde4b {"role": null} Ethernet29/1 \N t \N \N 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266289+00 +e311209c-35f4-44e5-8bc3-282070a802fe {"role": null} Ethernet30/1 \N t \N \N 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266351+00 +63145c9c-3192-4fba-9b06-7f6f3826395e {"role": null} Ethernet31/1 \N t \N \N 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266411+00 +ced3adb2-094d-4aef-bb5b-1cca8d33f66f {"role": null} Ethernet32/1 \N t \N \N 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266471+00 +144cce2d-5fc5-4333-98c8-35031ca2a3e6 {"role": null} Ethernet33/1 \N t \N \N 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26653+00 +29de0735-e556-4a62-b5da-e88059612855 {"role": null} Ethernet34/1 \N t \N \N 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266589+00 +30f1e4d5-c526-4fb1-a873-565396e1a485 {"role": null} Ethernet35/1 \N t \N \N 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266648+00 +6a7b4b06-8696-4200-9dfc-5a7516a05ed3 {"role": null} Ethernet36/1 \N t \N \N 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266706+00 +6ec46d86-f90e-4713-8198-c32474145d27 {"role": null} Ethernet37/1 \N t \N \N 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266766+00 +9ad33bd2-2a73-4068-89a3-73b04de2d941 {"role": null} Ethernet38/1 \N t \N \N 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266824+00 +f49c5b0e-12e1-443e-9cb7-944976be4e92 {"role": null} Ethernet39/1 \N t \N \N 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266883+00 +e0488918-46f9-4c7a-aca1-7c9bebf64d07 {"role": null} Ethernet40/1 \N t \N \N 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.266942+00 +c09b3949-f0a1-497b-a51e-207ed7bee58f {"role": null} Ethernet41/1 \N t \N \N 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267002+00 +2f4029e3-b858-4142-ba39-f7acb96c0506 {"role": null} Ethernet42/1 \N t \N \N 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267061+00 +33ab3c93-8725-4c9c-9c1d-ed420152c612 {"role": null} Ethernet43/1 \N t \N \N 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267121+00 +86177d45-f9c3-4dca-a785-3d335b5c193f {"role": null} Ethernet44/1 \N t \N \N 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26718+00 +d0f4d22d-4f30-4e76-b79b-3360f4eb705c {"role": null} Ethernet45/1 \N t \N \N 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26724+00 +d24591cb-b01c-4196-a6d3-d577df4d325e {"role": null} Ethernet46/1 \N t \N \N 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267301+00 +9b78601e-e881-426e-afd5-cc8e6fba34d0 {"role": null} Ethernet47/1 \N t \N \N 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267361+00 +cce8e42d-fa33-4de9-a477-b0a45e34feb7 {"role": null} Ethernet48/1 \N t \N \N 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267421+00 +6e2230bd-7656-429a-a69f-03acaadad731 {"role": null} Ethernet49/1 \N t \N \N 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26748+00 +dc0ccf1b-3277-42de-9681-e8664713f0ff {"role": null} Ethernet50/1 \N t \N \N 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267539+00 +f5e13fc3-4a5e-4b39-a5ef-33a0505a3853 {"role": null} Ethernet51/1 \N t \N \N 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267598+00 +4d3385dc-b2bf-4525-a481-bbaa46f9e3ea {"role": null} Ethernet52/1 \N t \N \N 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267656+00 +889803af-0aeb-4a8d-b27f-2c7df5c3035a {"role": null} Ethernet53/1 \N t \N \N 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267715+00 +a6769b63-19c8-46ab-8d46-67f9886f33e3 {"role": null} Ethernet54/1 \N t \N \N 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267774+00 +a5244d42-85d5-4e41-9399-4a5134088e86 {"role": null} Ethernet55/1 \N t \N \N 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267833+00 +f5722b7a-330b-4f8b-90e4-30747e8ff9bf {"role": null} Ethernet56/1 \N t \N \N 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.267892+00 +45240daf-4e07-4516-977c-87b136b939e0 {"role": null} Ethernet57/1 \N t \N \N 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.26795+00 +58adab84-08f7-4979-988f-047ddee6d4fe {"role": null} Ethernet58/1 \N t \N \N 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.268009+00 +6593ae48-daa0-4286-812e-7271a708f431 {"role": null} Ethernet59/1 \N t \N \N 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.268067+00 +0277ee39-d593-424b-a43a-64362800d487 {"role": null} Ethernet60/1 \N t \N \N 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.268126+00 +8c5b74a1-1848-4038-805b-e2184cb71041 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.268185+00 +2c867a18-1320-45fa-9958-e75be7561a7a {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.326682+00 +9e3f891f-a638-47f8-965e-df49f264e9dd {"role": null} GigabitEthernet5 \N t \N \N 9999999999999999GigabitEthernet000005............ 1000base-t f \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.033969+00 +0f496cf1-b6ad-4037-a62a-264bf12d5620 {"role": null} GigabitEthernet6 \N t \N \N 9999999999999999GigabitEthernet000006............ 1000base-t f \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.034028+00 +ee8b9790-3961-47e2-89f9-cf3b8b61c528 {"role": null} GigabitEthernet7 \N t \N \N 9999999999999999GigabitEthernet000007............ 1000base-t f \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.034087+00 +76f54903-2a60-4028-b216-e05cea4b6f47 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.754913+00 +ea12f535-d8cb-46e6-90b5-756f4fce335f {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.807466+00 +7e986b99-50ad-4f6d-9338-e74789e04ee5 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.936845+00 +eab0ec11-2ff7-4c45-891d-2ad7a2600968 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.950527+00 +f5d0c570-6c1f-4015-9260-69845d3fd00d {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.963928+00 +ebe3076e-b2b9-414f-8625-b301cd9fc173 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.977567+00 +f44894e0-8688-444a-b1b4-9c06d34faf94 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:57.991257+00 +d87b0848-d8f3-4d2c-894f-8b04e0fce0b6 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.005017+00 +ed29ae06-17a9-416b-90b6-445b9c5f1666 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.018839+00 +6badfeb3-9185-401b-b817-d5cb9fc4c0cb {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.03269+00 +29311e86-5651-4daf-8fb5-c3aafad67d50 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.046559+00 +50d784d4-b810-4f8f-99d1-4e6fd88ada8c {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.060406+00 +378eaec7-e878-495b-bf56-4e34088e8bbc {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.074191+00 +c2cb7220-cf89-4561-9589-2ac7cb99bb3c {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.088266+00 +0147ebaa-122c-45c3-833b-a5fba3cb6ac4 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.102362+00 +228838e0-7e5d-45ed-bc75-e18dcb792d7c {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.116338+00 +a081cad3-f3cd-4300-9d15-eb2bf4e54f91 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.130561+00 +7c936766-00c0-4dbd-b1b9-1bf45141bd4b {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.144371+00 +ef1e7cb0-bbda-4946-9062-e4cce9688896 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.158216+00 +112f0df2-e6f7-4dae-a0b2-f492871283a2 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.172327+00 +38218b05-0bc3-4932-90ca-80739c48a7c9 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.186182+00 +e2b211fd-1d42-4b30-a02e-a96553b45605 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.200012+00 +afc15184-905f-456d-9c19-fe1251ff578a {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.213747+00 +249a50de-174e-406a-9cd7-5c92009e15a2 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.227688+00 +83b17306-00e3-4926-9009-04980f0e54f6 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.257111+00 +03de9c94-3d94-409e-bb47-5ae4b5401b57 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.290481+00 +b13bbf68-75de-4cf6-bbd9-e5307802f9ff {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.576396+00 +8e43ac47-603c-480e-82ae-bc7acb2410be {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.590406+00 +cab21307-f779-498e-9890-9db7a5d5c081 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.604489+00 +59390271-3824-4d0a-a82a-00273bb059e9 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.618241+00 +2700d03b-0511-4ebd-9bf4-e585ade476f8 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.632085+00 +1e0f6ad8-62f2-400a-8f2c-1bfeb7e84519 {"role": "peer"} Ethernet1/1 7320f8e3-2d6d-4e79-aecb-ca1cb982a11c t \N \N 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 b76d7898-fcd4-4dff-b638-f50cc0cf82bc 4a141b71-2d29-4524-bb30-a872889d182c bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.918573+00 +69b084a1-d987-44e2-991f-f500acfd0d60 {"role": "edge"} Ethernet1 4528f8bf-75ef-4f8f-867a-5e1634b893cf t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 1677de7d-222a-4512-9da4-f4bd07a75bfd 01f68cee-9bab-49db-b16d-d207376e436a a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.548435+00 +9ab0df39-4525-473c-b134-d903f406aeab {"role": "edge"} Ethernet2 48757a3d-13f0-408e-9863-3af97189ff2d t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 38c77349-6c9b-41d0-ba4a-ad6331b7fc2a c1e99fd4-fe13-4020-8650-d724be3354a0 a6751a1a-e274-445d-ab2f-06ead1cb6d3c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.7204+00 +bf4b250b-fc2b-4905-8476-32b56bb66958 {"role": "edge"} Ethernet1 b292811f-370b-4a74-b584-779facc0bb68 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 9c4de705-693c-456d-9b6c-b5774cd55d2f 6412c2c9-f51f-4d7b-b064-4e9edb6c555c 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.876539+00 +9d2c390a-5bd8-47aa-845f-379db2108938 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.391752+00 +3fae3212-60c9-4a79-833c-bf87c299e3c4 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.444128+00 +08709aba-7fbf-49e4-b1e3-1dd8091977f3 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.645992+00 +cc34366e-51cc-4d05-b9a2-8497435ab4f6 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.659663+00 +9ebfbe91-97da-4ba4-b726-f2c40f74817e {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.673346+00 +ac1398cb-2488-4cd7-8b38-33a65bde9cee {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.687114+00 +c65f91b1-b031-444c-8e46-4a1da299fc27 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.700728+00 +ac69d805-4802-480a-bac6-6b4a2ac8355b {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.714436+00 +faeefbb3-4036-41e8-bbc7-5a95d4057e33 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.728239+00 +5c0905e2-83db-4117-90b4-1e0e01986a13 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.741964+00 +d9d72163-bee0-4373-bd59-50ae430c3f6b {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.756048+00 +f337c6cb-5c6d-4a04-bdac-ee585355f313 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.769993+00 +66f8aad0-d1c9-4f3d-9101-a782606e96ba {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.783998+00 +fbb965cd-6450-473c-963d-0fc8a4d49e20 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.798087+00 +71b7aca2-67d5-4de1-8b43-b97b1cf55906 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.811977+00 +ad87a64d-4872-482d-80d2-1137c8ae7563 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.825836+00 +76ec6c25-cd3e-4aec-b0a1-fbe0fab4042b {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.839995+00 +ea35ef84-4c3e-45ac-8e88-5ae033218afd {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.853845+00 +35c8ba95-cb60-4623-b49a-032a553209e0 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.870801+00 +2d1a9ffa-054e-4443-9cbb-ca891ddc28bf {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.895262+00 +b9205252-8618-4b18-9718-64319f41f5a9 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:58.923199+00 +6358f474-1666-417c-9173-783abffd879a {"role": null} GigabitEthernet8 \N t \N \N 9999999999999999GigabitEthernet000008............ 1000base-t f \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.034146+00 +7d0ef23c-e72e-486f-a0ba-3799f58e23cb {"role": null} GigabitEthernet9 \N t \N \N 9999999999999999GigabitEthernet000009............ 1000base-t f \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.034204+00 +89bff223-7fe0-42cb-ac61-fb88ff877f3f {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.133998+00 +bd23378a-dbc4-4dc0-be7b-ce989834d3fd {"role": "edge"} Ethernet2 92c887ed-b2a5-4a63-9a97-6756b9258842 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 962d84d5-cc17-4666-9da5-e079b94a7310 a8634add-2b72-41c7-84e2-37e03828d2ad 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.402292+00 +31bcda00-624d-4d47-8b53-343118cf1a95 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.225589+00 +a2e34cba-50dd-4c49-9a21-0517c45edfe9 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.239388+00 +0d93db5d-9c72-43af-a97d-673b41adf15f {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.265153+00 +8fecaa83-3c16-46ec-be48-1ac3b429db7d {"role": null} GigabitEthernet1 \N t \N \N 9999999999999999GigabitEthernet000001............ 1000base-t t \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.188844+00 +d3671558-9af1-4507-aace-e3ca2fe6f4b9 {"role": null} GigabitEthernet3 \N t \N \N 9999999999999999GigabitEthernet000003............ 1000base-t f \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.189037+00 +3d9f069c-734b-4fc9-9eb7-34b7d34e5441 {"role": "edge"} Ethernet1 0e4d86be-e92a-4b26-b2c7-1961d3668344 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 4f640add-d05f-49c3-8ada-fb3e5ae6a190 c5393878-1472-4920-b3d5-046b19f34d4a 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.259492+00 +0fe72cd8-013b-44aa-8fe8-60e9e237ee0b {"role": null} GigabitEthernet6 \N t \N \N 9999999999999999GigabitEthernet000006............ 1000base-t f \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.189222+00 +446f023f-c9b7-4793-bb75-5814fb26c885 {"role": null} GigabitEthernet7 \N t \N \N 9999999999999999GigabitEthernet000007............ 1000base-t f \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.189282+00 +44fde172-3701-46da-b6cb-31f6bdb90f1f {"role": null} GigabitEthernet8 \N t \N \N 9999999999999999GigabitEthernet000008............ 1000base-t f \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.189342+00 +8cf08848-6150-4b79-8d82-dc0df4f9d656 {"role": null} GigabitEthernet9 \N t \N \N 9999999999999999GigabitEthernet000009............ 1000base-t f \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.189402+00 +703525fd-50d6-4326-8965-cc1640237ea7 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.287199+00 +92a12607-4dac-4ece-bba1-50fa4581f261 {"role": null} GigabitEthernet1 \N t \N \N 9999999999999999GigabitEthernet000001............ 1000base-t t \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.342604+00 +fb1ab289-b726-4ddd-aab3-467e5a292bc5 {"role": null} GigabitEthernet2 \N t \N \N 9999999999999999GigabitEthernet000002............ 1000base-t f \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.342729+00 +d860a3b4-5224-420b-8797-0dde34bd2eea {"role": null} GigabitEthernet5 229d6f26-00cb-4804-b2bc-3c40ea130d75 t \N \N 9999999999999999GigabitEthernet000005............ 1000base-t f 4 02f480c6-9d3b-40d4-8c6e-4e1d04ddad44 71f0373d-6a67-48d3-bacc-f37e9f27d023 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.234086+00 +f268b451-be68-4095-8b72-46193b355724 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.032815+00 +f85285f6-a1a5-4e5e-b34d-1d22e40f600c {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.086121+00 +9dca4940-aaf2-43ff-a57a-c5c56ea3c438 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.278881+00 +3ec9facf-6518-4ef8-a9b9-b14c7f0c592c {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.292408+00 +eb469c42-372c-407c-b20a-0376cdd9072e {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.30603+00 +68c3a8eb-467e-4bf2-8747-b2fbc859755b {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.319744+00 +07bdd60e-a600-4cdd-b2d3-7102f61dab30 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.333369+00 +2a3d8b83-7fbf-4704-be47-4316b7ba904f {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.347029+00 +0034889d-e788-4bd0-9b75-53bf9ec119ff {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.360504+00 +55b96895-8f2c-4872-a85a-42fcae93cb47 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.374053+00 +d7eb1cdc-2faf-4a01-8ced-b0d8b141caab {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.387615+00 +1dada62f-cc52-43ab-a560-bed233797e03 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.401302+00 +a6e754a0-806e-49de-ac65-bed3001520d1 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.415043+00 +79c96c0a-9ad8-4dd3-8175-d68f951980a1 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.432808+00 +e0351681-4af7-455d-af38-f9cffe0cb0f6 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.459929+00 +0f4e312f-dede-42b4-905b-4e9f94b485b2 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.485672+00 +bcb2000b-57b2-4981-8918-3c7f0ba62ec4 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.506193+00 +551cf30c-a148-4fbb-b9fd-96b287dfc6c4 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.52853+00 +f8d47508-670d-496a-9e36-4db320ca980d {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.542171+00 +118d5da5-c0df-4af0-9e68-22bb3eb7aee1 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.555619+00 +8e679da0-63d3-4e7c-9bea-5bdd0d346d7a {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.569077+00 +754695ff-14e7-4192-a3dd-15f7e1e8264c {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.594791+00 +23e9b7cf-999e-4477-b51f-6b87bf6e7694 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.622203+00 +93215624-548e-47b0-a7b1-57c2268551a7 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.095605+00 +f27b4748-1bad-44ac-9023-c187245a9594 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.122792+00 +a8dc729e-3de2-4480-a4c7-513dbc335203 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.159825+00 +dd6aeb2d-e3fd-43bc-a1b8-f2bb18571620 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.203818+00 +083370c9-a304-4e52-9edf-4c88b412480a {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.231888+00 +7cdf6bb7-c5e6-4b20-b6b2-52e649b149e4 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.266935+00 +17be5daf-50b1-43a5-ba0b-cb51fa0e03eb {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.299785+00 +d9e77050-787c-4721-905f-987549e2ec6e {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.362183+00 +aa152559-9b3d-4d63-a594-6417bbb37f53 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.385309+00 +440749b8-3ea4-4d95-81a8-df770e075e7f {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.410929+00 +d3624935-60f3-4afe-a0c0-0bc8a8195044 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.433387+00 +ebf1f2bb-33f7-4ca7-8180-d0bd560a683b {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.447603+00 +aedba36d-8528-4ccc-86cb-c307392a0aa4 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.461833+00 +35d7f311-3cd9-4c0f-93cb-e2ee2dd99927 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.476075+00 +0af3db71-a7b0-4d6e-9439-c61881ac10ff {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.490075+00 +1142060d-5488-460e-87dc-c1fbc14126b1 {"role": null} GigabitEthernet5 991b9031-d92e-49d1-8189-cee52fa067a4 t \N \N 9999999999999999GigabitEthernet000005............ 1000base-t f 4 81fe5b82-546e-4f85-9172-89b26382af63 31f5e143-de2e-4c4c-b23a-9efd6c2fa7da 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.281342+00 +64e47968-10f3-40dc-b4ce-f447fd7317c8 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.816606+00 +3978bfb1-3431-4427-b39a-f561a7ae4d86 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:09:59.878404+00 +67060d62-4015-4029-be7b-212460acac28 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.335896+00 +4d32c932-45d7-4877-89f6-0d75267640c8 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.504502+00 +5160994f-c0a1-4431-8789-3685f013bd0d {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.537865+00 +9f8939d1-cfeb-499e-8f38-f9e53984c043 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.564607+00 +21049cde-48b6-4c61-97a6-b52608702885 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.590667+00 +61ad6cb1-fa7a-4fd4-b21f-72ed93dca4fc {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.613396+00 +74609f44-efc4-4bba-9eeb-8706d8c2976e {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.627694+00 +13f4c923-1ed5-44be-8375-b95b77ce3e91 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.657689+00 +f35dbce1-b80a-405f-868c-e71cc6d31f1e {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.706074+00 +61f2a60f-19ba-469d-a6a8-09de04c4d997 {"role": null} GigabitEthernet6 \N t \N \N 9999999999999999GigabitEthernet000006............ 1000base-t f \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.342986+00 +6c5160ee-00e9-4c18-bc38-523b05ed7c9f {"role": null} GigabitEthernet7 \N t \N \N 9999999999999999GigabitEthernet000007............ 1000base-t f \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.343047+00 +a0e62496-8012-4ec5-ba45-3a8f7b3edaf9 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.870351+00 +74a1aa74-6fd9-4983-8b24-c52deef280db {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:00.959573+00 +8d9f4683-f77a-4304-bafe-c5ced371608d {"role": null} GigabitEthernet8 \N t \N \N 9999999999999999GigabitEthernet000008............ 1000base-t f \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.343108+00 +dfad701b-9d94-49ea-8ad1-35a064ea0bff {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.197184+00 +64818de5-8330-410d-a8de-7d0a27ace01c {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.224063+00 +732c3df8-465f-42bf-9e07-89754f2904af {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.245225+00 +f134362e-bebb-4c5d-a151-16da1257645b {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.270581+00 +c91dd8c4-60a7-44b4-86af-3335daacaa00 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.300923+00 +1a904c45-71c3-4f55-b140-be57504b76d2 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.3252+00 +87f51a4e-7a1e-48d3-bfb3-5e09a6d7c161 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.349085+00 +489620ba-6515-41f5-af1b-a115846b79dd {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.372811+00 +d99d00ac-20e8-4816-975b-a32778ec983e {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.398196+00 +7709ebf7-a3cf-43b6-8e6b-d83bd5e3e14c {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.425995+00 +a7d64375-dc92-4a1a-9518-31b3c7112ada {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.448159+00 +726fad13-3ff4-4dd5-a643-54982ef370bc {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.470646+00 +9480218c-51bf-4d0f-9315-e5eb7c5056ef {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.498062+00 +8659e376-db8e-4aed-852d-61b3a6acb75f {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.522095+00 +d3ac9841-876b-4fce-b904-5e6f2abe535b {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.544712+00 +ea109299-4758-4f4b-ba39-5aabd180f17f {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.56889+00 +9b858cda-6219-409f-a41f-66a49d49ff35 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.59651+00 +c6fc0042-14e3-4c26-9721-706221362b90 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.621539+00 +9d464b43-539f-43b6-a455-f9d7afcafcef {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.645777+00 +0e133bb4-629a-4eb3-8aa3-cc36ed8159a7 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.672804+00 +c6779683-c649-4efa-b182-377b2e72861f {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.696326+00 +81f6b2ca-a426-4052-9adb-23f123f26d1e {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.734817+00 +108f92a9-3a34-4da5-9cde-e5df427f12b5 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.776167+00 +c48a95c3-f463-498b-a23a-957a83c6e231 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.82947+00 +15ee8663-a4c9-4e13-88c9-2ad2533f8a58 {"role": "edge"} Ethernet1 b0fab83c-27f0-4789-9a1a-153dbbc5674f t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 e3440063-edc5-4dfa-8724-6ebf69a7d126 b7a57d39-0e67-4882-a9e7-895d102ca961 bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.859398+00 +dfb5cf85-4fe6-472a-8682-b7da59811f82 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:01.960245+00 +2b2cc005-3f37-42d6-9da5-cb4d8361d7af {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.042917+00 +f5dd162e-99d4-493d-9fd7-abc9165a46ab {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.223915+00 +d255ee63-1556-4d00-8f4f-46b53a9e13dd {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.260649+00 +992a5315-b538-4118-8cd2-a871532ca8d3 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.30658+00 +c04ca971-e8bb-423b-a053-37e15daf72cb {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.352369+00 +f4025977-92b0-4596-8b84-6ec55a4fc108 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.392588+00 +3e41293c-bdc7-4c12-9891-814a2b070394 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.428547+00 +e8c1db5d-17f1-49e9-b3ee-56becec04c13 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.460292+00 +8e60c97a-7c6c-40be-8536-9ae1f17ebb97 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.484899+00 +32d92d1c-d548-40ad-9f91-8020dd7869c3 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.499562+00 +1ac98117-e95d-4cd5-a5b7-d00b42d5c91e {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.514183+00 +44756892-d2fa-47db-8295-62ad19795770 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.535716+00 +6fb63b50-a207-4b64-bfac-b9578ecebddc {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.557618+00 +bf30e7b0-084f-4950-b138-1d1807382e35 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.587214+00 +b6fc11b5-1cdb-4c58-b69e-e1036e414d67 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.609628+00 +2ada36a2-4365-4c54-ae9d-ceee37c6b648 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.633615+00 +ae6bfd00-bc47-4e94-ac2a-ad2a1c272701 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.648352+00 +d9366f38-18ae-4aff-83a7-112a44cfd08e {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.662656+00 +fdf278a7-cdff-44e7-935e-2c29a0bb8d53 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.67723+00 +0a1abe4e-0b7a-410e-a1e9-11d179df13e9 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.708093+00 +0b77ee33-645b-49db-a432-f9591faf97ba {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.732424+00 +f18849fe-8c66-4375-8797-0c9781686605 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.753547+00 +96188b2b-1874-41c6-8213-a66c0af8eec6 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.777225+00 +17dbd356-a83b-4a9b-aa48-4d71764bddc4 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.849987+00 +55e29846-933b-4581-a42a-0e821456764b {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:02.903847+00 +0329f09b-042b-401b-a0c4-964d4e8486b2 {"role": null} GigabitEthernet9 \N t \N \N 9999999999999999GigabitEthernet000009............ 1000base-t f \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.343168+00 +2ef35e38-b666-49fd-a0a9-768c1346a5ab {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.431661+00 +666fae29-8bc9-4ecd-904e-b51e00a278ac {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.523414+00 +428d519f-fec3-4b06-8a49-b82d3eaa5c00 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.53749+00 +e7a9a276-067e-4934-83f6-531b9f1da9bb {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.552147+00 +e0f63133-26f0-4d0f-bd0b-501dd970d595 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.566375+00 +442bfbb0-cec5-4a07-b717-54466a0d3c3d {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.580579+00 +c70a52ea-fb3e-4dd4-9834-3833252aa9ad {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.606796+00 +a9de46cb-6bf1-4cbd-910b-e8769931067b {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.632861+00 +d53f715c-c93b-4aaf-88a4-c4b95407326f {"role": "edge"} Ethernet1 ccd2f499-a160-443b-9795-f8d35acdc6cc t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 534101f3-9a0c-4e02-b4a4-af29ca66231a 4278d357-0d23-4c8d-9827-29e3164b34a9 d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.023243+00 +f1cf411b-411e-4bde-95a3-e2ec64ac1ff1 {"role": "edge"} Ethernet2 b39b674d-df06-4813-a0bd-eefec8fae300 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 104c3670-7383-4742-b5c3-666178ff034c 381a0e8a-f1fb-430b-84e2-c7bcd91b8920 d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.10414+00 +ab9f7e9b-3693-4094-8bea-1e5696ce24b3 {"role": null} Ethernet1/3 10bae2f5-a05b-4841-85b9-861e625a6d94 t \N \N 0001999999999999Ethernet000003............ 1000base-t f 4 46741658-88e2-4782-8709-16d0df81c036 375ee435-5091-40f9-80da-21ddb108b0a1 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.402784+00 +3166b8f9-3e49-440a-83a9-4fefbf9625c7 {"role": null} Ethernet1/4 d8f23dbd-968f-4d0f-b6cf-1b6e01f35e55 t \N \N 0001999999999999Ethernet000004............ 1000base-t f 4 66473f94-adf3-46e6-acd6-abbf9e024def 8c81a77f-bf97-4203-b64d-92220d582d74 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.443099+00 +cde0b162-a5ce-492d-81b5-eb68e3e926d6 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.024982+00 +5e1114f4-9986-4fc9-980e-11c1bfc9b47d {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.108101+00 +780bb724-154f-441e-9153-13f4e69ef865 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.656344+00 +27aefb19-f853-41b3-8b01-b72e90a69838 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.684714+00 +5e286c5f-8904-4ebf-b2a3-8737ffe01e69 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.706718+00 +b249585d-ff2c-433d-916f-6f842f9406d3 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.720784+00 +c5711c63-189a-4a66-8883-466ea5a901d9 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.734903+00 +e158c5f4-0903-426f-a12e-e5e675583be9 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.748789+00 +7ce7dc33-4153-42c2-aaf7-2b4a0610ef5f {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.762657+00 +5abf73ad-2aa5-461c-8076-2a248c57cf7c {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.776658+00 +70b69647-8c15-4c08-af9e-4051c8865568 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.811931+00 +c37f7eec-fced-4258-968d-ded39ae1abb8 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.846425+00 +afff6d62-674a-4b7a-acf1-4619566acf72 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.870743+00 +d20987ac-860d-4a59-836a-e77163f07e93 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.89694+00 +b414109b-e702-40ea-9b89-3801bbc322b8 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.918757+00 +406ff215-d11f-4f8f-9761-9ede4de35a3d {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.953516+00 +106322f5-4a56-47ec-9956-0d1f21a25d60 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.968+00 +1707bd4e-2320-4a99-9411-e0ca9325c14d {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:03.994554+00 +5400d1f1-7f72-4ba6-87de-39eafe991cfa {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.023422+00 +1a99844a-105d-4165-b78c-fe12fb88c677 {"role": null} Ethernet1/6 \N t \N \N 0001999999999999Ethernet000006............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652045+00 +7c40ccc7-4a55-4f0c-ab3a-ed690ef34ddb {"role": null} Ethernet1/7 \N t \N \N 0001999999999999Ethernet000007............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652105+00 +15decd42-b8a5-4244-a764-640ab059bb33 {"role": null} Ethernet1/8 \N t \N \N 0001999999999999Ethernet000008............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652164+00 +03618e98-1b2d-4ce8-9cc4-eec8006621e7 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.43297+00 +0916876a-3a38-4018-a83c-4fc2a4e5de68 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.446836+00 +167ddb00-e8e9-40b8-a1f1-41d17a6c60ef {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.460521+00 +cd069c8c-ed36-4b3e-abf5-badf7888ce9f {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.475679+00 +be84d842-a6b0-4f94-a9d2-4de5d4c759dc {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.489379+00 +87826bda-2599-449f-8dff-174ceb45b4e5 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.503021+00 +b0c09ca2-fad6-4880-9093-38be52eca55a {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.516495+00 +970ea7cb-bbb8-4d81-b0c2-57c0ab6db718 {"role": null} Ethernet1/9 \N t \N \N 0001999999999999Ethernet000009............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652223+00 +e3f8259d-8037-483e-9603-37089ff17143 {"role": null} Ethernet1/10 \N t \N \N 0001999999999999Ethernet000010............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652282+00 +babf2eca-c221-4feb-a649-b469302fbf0b {"role": "edge"} Ethernet1 fb0e845d-5cd1-4e23-8021-69d3b84b8a9c t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 a9ac0e31-9dd1-4605-893b-95542de32ab0 e7688daa-e5c7-42e9-b036-f8429a639a51 c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.187218+00 +5eda0a5a-bc9d-46c9-a115-e357b2e7814e {"role": null} Ethernet1/11 \N t \N \N 0001999999999999Ethernet000011............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652342+00 +bbeddb83-6143-470d-8c95-e023d58435a8 {"role": null} Ethernet1/12 \N t \N \N 0001999999999999Ethernet000012............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652402+00 +875f53ab-d014-426d-a552-2602be2e9c83 {"role": null} Ethernet1/13 \N t \N \N 0001999999999999Ethernet000013............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652461+00 +f96de7a0-c907-4600-8ef6-fbacdbfce491 {"role": "edge"} Ethernet2 80a51250-4175-49a6-984e-276be502fdb5 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 cdb577ce-ef9f-4eba-8b24-3b634e480fe5 8e511f70-1553-4561-a4f3-afd30dd671c6 c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.268277+00 +cead6c8e-0403-4af4-abfd-901c035719a6 {"role": null} Ethernet1/14 \N t \N \N 0001999999999999Ethernet000014............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652521+00 +424a2572-cd30-478e-a2d1-5c20c00b9b99 {"role": null} Ethernet1/15 \N t \N \N 0001999999999999Ethernet000015............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.65258+00 +6954e5b9-5707-4cca-83f0-7d2e17009047 {"role": null} Ethernet1/16 \N t \N \N 0001999999999999Ethernet000016............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652639+00 +b77d4835-b7e8-412a-b3eb-d5b6bc63ea1a {"role": null} Ethernet1/17 \N t \N \N 0001999999999999Ethernet000017............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652697+00 +bcfb1bcf-abfa-4541-8a53-b0e9c933f67d {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.175692+00 +e33d93d4-c120-41e3-b442-c7e9755373a3 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.237481+00 +7718bb1a-a465-458b-be16-20c3a9057120 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.530103+00 +b164c9cd-02f5-4326-8998-bf9d428fd28e {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.543778+00 +cbd040a5-9764-4a15-b3fa-34467d3a57ff {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.558303+00 +325ac6f3-d4fd-4ddd-a77c-79ca63b7588b {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.572234+00 +a6bdbd53-c9d7-413e-90e0-fa01c5747255 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.586196+00 +ce6c8ca5-5b11-45d2-9b8b-3404e12e9077 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.600193+00 +100c5c92-eed0-4f42-9fba-122635b75aba {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.614077+00 +2c3d1e9e-fd9b-4255-8141-546e2a4e77bb {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.628046+00 +b973c72b-0e1a-4e06-9687-ee4dc27893c0 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.641918+00 +6d6104a9-49b2-48a7-b146-8b8e7b88b623 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.655874+00 +afe8506f-0ae1-4104-91bc-0da5a8ebe6fd {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.679591+00 +5dbebf44-e4ae-4d28-b227-93df179cc20a {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.70454+00 +42ab2508-a1ed-4038-be6a-483919091ae0 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.726149+00 +4862538f-82fc-4802-925b-96cc5815bb5b {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.748158+00 +19382e3f-9985-401c-b282-d6768067bd62 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.775591+00 +72508a9b-99a3-4514-8324-c3e27251a846 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.807324+00 +14ce43cd-7276-4988-b13d-cdbc456ce5da {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.866568+00 +56d79143-daff-4fcc-b14c-2c8e8b7fbd3f {"role": null} Ethernet1/18 \N t \N \N 0001999999999999Ethernet000018............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652756+00 +cbde85ab-9360-4240-acb2-52effbf9cbe4 {"role": null} Ethernet1/19 \N t \N \N 0001999999999999Ethernet000019............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652814+00 +7320f8e3-2d6d-4e79-aecb-ca1cb982a11c {"role": "peer"} Ethernet1/1 1e0f6ad8-62f2-400a-8f2c-1bfeb7e84519 t \N \N 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 794e6bac-023b-4733-8a94-09e18fb0605b 4a141b71-2d29-4524-bb30-a872889d182c 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:04.90278+00 +d59979c0-87bd-4cdc-9491-4542abd87c9c {"role": null} Ethernet1/20 \N t \N \N 0001999999999999Ethernet000020............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652873+00 +1b1b6868-e3f8-44ba-9c3a-cfbc0a69b800 {"role": "peer"} Ethernet2/1 d5b8a4e1-7043-41e9-8d1e-e110ade7973c t \N \N 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 bc7af761-ce21-4118-8666-a71afef45e14 1db060af-3203-4e02-b63e-3d31b131432d 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.351859+00 +d5b8a4e1-7043-41e9-8d1e-e110ade7973c {"role": "peer"} Ethernet2/1 1b1b6868-e3f8-44ba-9c3a-cfbc0a69b800 t \N \N 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 44b8be05-4055-463b-9c2c-8f96b9860b20 1db060af-3203-4e02-b63e-3d31b131432d bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.363882+00 +4528f8bf-75ef-4f8f-867a-5e1634b893cf {"role": "leaf"} Ethernet3/1 69b084a1-d987-44e2-991f-f500acfd0d60 t \N \N 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 9c655a83-fb2e-4b18-9473-a9f20b964251 01f68cee-9bab-49db-b16d-d207376e436a 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:05.53545+00 +6d95cdbb-0df4-47d7-95b4-009273c74611 {"role": "edge"} Ethernet2 ef8ad9c2-3d78-4434-b898-bc230b9f7c79 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 761c3ee4-2211-4886-93ae-eb247a104053 f3fdae41-9b74-4cbf-88bc-94e4e282fa6c 6be296b5-5db3-407b-915b-ebcfa5d73aa3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.072005+00 +92c887ed-b2a5-4a63-9a97-6756b9258842 {"role": "leaf"} Ethernet5/1 bd23378a-dbc4-4dc0-be7b-ce989834d3fd t \N \N 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 07499e99-fd00-48a8-98e2-1b2ccb37c5eb a8634add-2b72-41c7-84e2-37e03828d2ad bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.397702+00 +328436af-6df3-41aa-9839-36fca96a1771 {"role": "leaf"} Ethernet6/1 39c12269-1ccc-4b47-8788-9830e3b6ee53 t \N \N 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 bb2bfea7-471f-43e6-a222-cbdae4c1a11f cc244b6c-fe94-406f-ba52-64daf93f47a2 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.528339+00 +39c12269-1ccc-4b47-8788-9830e3b6ee53 {"role": "edge"} Ethernet1 328436af-6df3-41aa-9839-36fca96a1771 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 57c4a7c1-de93-4d63-bcf5-661e44ba3bda cc244b6c-fe94-406f-ba52-64daf93f47a2 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.532625+00 +92ad1c81-fc83-49c0-bf9b-bb727f5df8a4 {"role": "edge"} Ethernet2 cb47baba-9476-4dfc-a334-7d244d2e2be1 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 5d097715-33a5-4b32-a903-fba13791d1d9 2dca496e-7f78-43d5-ad27-2f753208311f 17fa82e4-d0ad-4092-b3c0-1f597bc84883 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.613269+00 +adbb105c-ef41-4c56-83f9-3decf72fa469 {"role": "edge"} Ethernet1 27ce4598-c7a6-4307-aa86-524149200ec1 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 1f56a293-bce5-4334-9ec2-97ada0d8d296 604ee9e4-6852-4c9a-8ba1-2ffa61623544 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.696139+00 +f25fd314-9571-404f-ba61-5e33d4808523 {"role": "edge"} Ethernet2 c885b7d6-df35-41c6-89d3-7d570a01b37f t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 1167c8aa-067d-4bf1-950e-d804a1a27008 c6652864-d187-492d-8c9f-84f754d58080 684ba856-7ace-4a36-9c56-e646e71ebb6a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.777012+00 +b8ae6d6f-920c-437f-9610-3c67eea45262 {"role": "edge"} Ethernet2 b20ab714-a9bb-4d57-bf1b-29e93cbcce0f t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 aa5e1c6f-8e94-40d9-a8b9-47de24b06c83 2d2027c5-fbdb-410d-81b5-56127e77d859 bb5af4d5-3007-4d6a-8965-10db2ec91b76 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:06.940189+00 +ccd2f499-a160-443b-9795-f8d35acdc6cc {"role": "leaf"} Ethernet9/1 d53f715c-c93b-4aaf-88a4-c4b95407326f t \N \N 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 d391fc86-4aa3-4046-8e67-e0a09a55a56d 4278d357-0d23-4c8d-9827-29e3164b34a9 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.019009+00 +b39b674d-df06-4813-a0bd-eefec8fae300 {"role": "leaf"} Ethernet9/1 f1cf411b-411e-4bde-95a3-e2ec64ac1ff1 t \N \N 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 31c5b599-7f59-4dde-a05b-44e32b7ab1dc 381a0e8a-f1fb-430b-84e2-c7bcd91b8920 bed003a4-068f-493c-8519-b7ff3ab94f63 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.099815+00 +a275628b-47b8-43c7-9c2a-33c6e49362f6 {"role": "leaf"} Ethernet4/1 8cc336a6-e575-4c50-8ad4-cbec52ad0526 t \N \N 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 91c30d46-79b9-49b6-8a9c-b730d903fd90 78fce191-9cf3-43dd-bc54-d2ac0fb7466a 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.527696+00 +a6759eda-191d-4473-bc50-17add4502f7f {"role": null} Ethernet1/21 \N t \N \N 0001999999999999Ethernet000021............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.652932+00 +10428f7f-7fde-428b-a280-31af8643fb8d {"role": null} Ethernet1/22 \N t \N \N 0001999999999999Ethernet000022............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.65299+00 +a6a040e1-fa58-46a1-91ec-1f722d3ef2d8 {"role": null} Ethernet1/23 \N t \N \N 0001999999999999Ethernet000023............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653055+00 +9f4f598b-5b65-4f26-90a2-b83c3a7ffbdb {"role": null} Ethernet17/1 \N t \N \N 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841575+00 +40c562c1-3c7f-47a5-9446-d82b1cc10962 {"role": null} Ethernet18/1 \N t \N \N 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841635+00 +6b66a4d4-3283-491f-949f-3f77d061e242 {"role": null} Ethernet19/1 \N t \N \N 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841696+00 +92fcc5a5-9e32-41e4-b207-a1125ced0f82 {"role": null} Ethernet20/1 \N t \N \N 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841755+00 +71a5c2d4-3f8c-4479-aaff-0832542fb045 {"role": null} Ethernet21/1 \N t \N \N 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841815+00 +2c6b1aef-6d00-471d-9cdd-7805a7143382 {"role": null} Ethernet22/1 \N t \N \N 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841874+00 +eb45333e-e077-4e43-b3ed-d0b7532b8ad5 {"role": null} Ethernet23/1 \N t \N \N 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841933+00 +ebf14edb-f938-43bc-8ccb-9b1a5d206568 {"role": null} Ethernet24/1 \N t \N \N 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.841992+00 +d8c0599f-bffb-49e2-9314-bc137ce2c764 {"role": null} Ethernet25/1 \N t \N \N 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.84205+00 +26bc4067-8e66-4169-bdc5-a31eaa9e8220 {"role": null} Ethernet26/1 \N t \N \N 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842109+00 +68fd2505-8c53-411a-bd8a-9bc10e45c586 {"role": null} Ethernet27/1 \N t \N \N 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842168+00 +4d1aa71f-e929-47db-8ef2-7e990240cc99 {"role": null} Ethernet28/1 \N t \N \N 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842226+00 +836c9ff0-9fd0-4783-86af-cc518bb387ae {"role": null} Ethernet29/1 \N t \N \N 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842306+00 +7e09e518-089f-484a-8b51-bd8b5e1ce476 {"role": null} Ethernet30/1 \N t \N \N 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842367+00 +601a30a6-1d6c-4ae7-9af7-0a36ecefa4d7 {"role": null} Ethernet31/1 \N t \N \N 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842426+00 +29007458-8f68-4f4e-8cba-875ad498a6e0 {"role": null} Ethernet32/1 \N t \N \N 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842486+00 +8acdd051-66c4-4558-9650-3c20841585d7 {"role": null} Ethernet33/1 \N t \N \N 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842545+00 +f3fbe18c-8313-494d-9550-f7d27ef59929 {"role": null} Ethernet34/1 \N t \N \N 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842604+00 +a7841357-04e8-4149-bef1-28b9dbc4bc06 {"role": null} Ethernet35/1 \N t \N \N 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842664+00 +d6c2e2cd-c37f-47f1-9521-deb62bb23e46 {"role": null} Ethernet36/1 \N t \N \N 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842722+00 +ef97185b-a856-4305-aea2-31a3108a2466 {"role": null} Ethernet37/1 \N t \N \N 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842788+00 +b89d9090-0859-4877-87f2-43aedc1b9b5f {"role": null} Ethernet38/1 \N t \N \N 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842849+00 +94db776b-d94b-4c45-90d7-310f45c60f4d {"role": null} Ethernet39/1 \N t \N \N 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842909+00 +cc4e3421-b249-4e48-a5a3-db4608118818 {"role": null} Ethernet40/1 \N t \N \N 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.842969+00 +fd4117bf-94cd-40d5-919f-5298d428ef39 {"role": null} Ethernet41/1 \N t \N \N 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843029+00 +dd6cb75f-2538-4a5b-84cc-a2857df245ac {"role": null} Ethernet42/1 \N t \N \N 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843089+00 +f816b6aa-0d0d-4274-82e4-40fec4cf5b99 {"role": null} Ethernet43/1 \N t \N \N 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843149+00 +b7b76d47-7322-4686-b48e-fc87d5313f2c {"role": null} Ethernet44/1 \N t \N \N 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843208+00 +29c7672d-3208-4d30-bf3b-33befa1b3daa {"role": null} Ethernet45/1 \N t \N \N 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843268+00 +8cffabd8-142d-4922-baad-1f151cc07b77 {"role": "leaf"} Ethernet11/1 \N t \N \N 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.148439+00 +b1feffe0-444c-462c-8aab-86b934bd400c {"role": "leaf"} Ethernet12/1 \N t \N \N 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.161866+00 +a8788d48-263a-40dc-ae15-9cf2f53f7e39 {"role": "leaf"} Ethernet13/1 \N t \N \N 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.175552+00 +06307c82-3f1e-4671-8abe-7401f8731c3a {"role": "leaf"} Ethernet14/1 \N t \N \N 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.1891+00 +4cb24a05-363c-4cba-80d1-8e97bce198d3 {"role": "external"} Ethernet15/1 3d3f20f0-cd5e-4684-9c08-27c724dac132 t \N \N 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 b95257eb-37c5-4625-b353-bd305d177cfa 70a617dd-03c8-4def-ac6a-ac1c0198e9b5 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.760535+00 +c8f831c0-f008-45ba-a789-20c2626e6921 {"role": "external"} Ethernet16/1 9990294d-6dd0-4deb-8818-e19c7ad35d4f t \N \N 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 4f94431f-1a17-4384-b1c5-c21afc6919dd 4c32db91-5a3d-4e3e-b62e-2b12e453d631 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.803441+00 +d8dff6c9-6185-4d8b-8327-a99ce574b62f {"role": "leaf"} Ethernet8/1 16a2a324-4396-4672-aeef-29f47c359a60 t \N \N 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 24374707-5870-4fcc-a3c8-461d80acfa73 881e98e4-154d-496f-855f-592377f54f4a 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.205449+00 +1912fee0-5a5b-4f49-ba2a-7fa99715976d {"role": "leaf"} Ethernet9/1 91a64db3-f588-4ccd-aa3e-94159e16d098 t \N \N 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 86dcd31e-9205-4ddf-941f-0fe7cc7d2698 fbf5979c-3bbb-4b9f-b121-da5609b87deb 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.390575+00 +52e65d7b-7724-4eb0-8bdd-47ffae98f9d8 {"role": null} Ethernet46/1 \N t \N \N 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843327+00 +8ca1c0c7-5707-4a1f-9585-11b45100c9a0 {"role": null} Ethernet47/1 \N t \N \N 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843387+00 +6533eba4-0fbf-43db-9c0e-07b91e5ca570 {"role": null} Ethernet48/1 \N t \N \N 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843446+00 +37255be6-9ca6-4633-9b6b-a29bd8f67a93 {"role": null} Ethernet49/1 \N t \N \N 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843507+00 +32030edf-203f-4921-80d9-7fecff24abf8 {"role": null} Ethernet50/1 \N t \N \N 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843566+00 +0537d6c3-fd83-4245-8fee-2ca35c12ddef {"role": null} Ethernet51/1 \N t \N \N 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843626+00 +d67e0452-b873-4e22-971f-ed468ac89366 {"role": null} Ethernet52/1 \N t \N \N 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843685+00 +11d365f4-8ca7-4cba-8105-e3e417bcf7a8 {"role": null} Ethernet53/1 \N t \N \N 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843744+00 +4c0967b6-2c33-4860-bb92-ec179504ea6d {"role": null} Ethernet54/1 \N t \N \N 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843804+00 +b7054534-9de5-451a-be4c-5cbbcb79af06 {"role": null} Ethernet55/1 \N t \N \N 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843863+00 +34a26e6e-1a15-4e2d-ad03-023013eff28e {"role": null} Ethernet56/1 \N t \N \N 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843922+00 +eb329f49-ad02-4ab6-b52a-79153e3beec5 {"role": null} Ethernet57/1 \N t \N \N 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.843982+00 +fc7dfd13-61de-4cfd-be06-184c6045b282 {"role": null} Ethernet58/1 \N t \N \N 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.844041+00 +a520481a-73ec-4954-b2c9-19e586f8b410 {"role": null} Ethernet59/1 \N t \N \N 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.844099+00 +4557b362-abd9-4b91-a6e6-e3a5944fb47e {"role": null} Ethernet60/1 \N t \N \N 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.844159+00 +edcc4350-a9de-4076-9f22-0de45d36ecd7 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.844217+00 +2935841e-4484-4099-b12a-d883cff33fb2 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:07.904045+00 +398098e0-3977-4c54-b769-c9ad10d32912 {"role": null} Ethernet1/24 \N t \N \N 0001999999999999Ethernet000024............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653116+00 +46da14f2-122a-4415-9ab5-969612ac3c2b {"role": null} Ethernet1/25 \N t \N \N 0001999999999999Ethernet000025............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653174+00 +9e0c49bc-63fa-40af-991e-de3722e56117 {"role": null} Ethernet17/1 \N t \N \N 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433479+00 +ed6e6d89-046c-44c7-9e26-9993bc50cee4 {"role": null} Ethernet18/1 \N t \N \N 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433539+00 +e1b22eaf-f07f-4085-a8a6-3ec529e5ca16 {"role": null} Ethernet19/1 \N t \N \N 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433597+00 +d92414e2-7aca-4d0e-a1f0-f1671f3146f1 {"role": null} Ethernet20/1 \N t \N \N 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433655+00 +effbbcea-d637-4b99-8361-8686215a9e41 {"role": null} Ethernet21/1 \N t \N \N 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433722+00 +1a5754f7-4928-4131-b4ef-3c4b1dbdeb9c {"role": null} Ethernet22/1 \N t \N \N 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433782+00 +d05f7b0a-f7ac-450f-819c-9e87d3d0efb2 {"role": "leaf"} Ethernet11/1 \N t \N \N 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.736441+00 +6671c149-f21c-442e-97d6-a224d8a4ab64 {"role": "leaf"} Ethernet12/1 \N t \N \N 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.750531+00 +b25cd0dc-15ba-4f36-970c-775a0e631e0f {"role": "leaf"} Ethernet13/1 \N t \N \N 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.764609+00 +063b99e8-7958-4370-a1d1-52db9ef54a98 {"role": "leaf"} Ethernet14/1 \N t \N \N 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.778821+00 +edbdc7f1-9209-4710-a219-c325d0c918e0 {"role": "external"} Ethernet15/1 edaac17c-fee8-47b4-9438-75fc8255f879 t \N \N 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 37307e23-435d-4010-840c-00301487bb9d d985e1a1-763b-4581-9c34-d93b0a70a2af b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.84646+00 +c682cb76-aff2-4612-ac09-06c9479f51b9 {"role": "external"} Ethernet16/1 0f62ba4e-13dc-465b-b363-6f630347f047 t \N \N 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 041a217b-436d-4953-aab5-704722fbe685 7df60531-e97a-493b-9deb-4272a835a34f b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.889189+00 +ed0e4858-e34a-4f20-8f18-9257bb4e36e5 {"role": "leaf"} Ethernet3/1 1825310b-6b1f-46e0-a9b1-55c830206d68 t \N \N 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 2819521d-f56d-4d24-8a13-944995ce837c c58bc2ba-b05d-4b33-8d1b-fb105b77ab24 b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.423235+00 +1fd56ad1-a795-4302-9b28-ca6655d87956 {"role": "leaf"} Ethernet4/1 291e676f-26a9-4589-aaeb-a12f3c8a1bba t \N \N 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 815721a9-9ebb-4c2f-a8a4-28ce617a9545 b1e9efac-ea9d-4b3e-b259-4b29bb074bde b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.613686+00 +7f1b1ee2-cca8-4ce7-83e7-ddfc1488a932 {"role": "leaf"} Ethernet5/1 a14f8127-92c5-41dc-a210-330c36287814 t \N \N 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 1c26510a-13b1-47cd-b389-5d7621d0098e e1cda597-2fd3-4a39-b813-d42d238f9a9a b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.779565+00 +0ea49852-bcf2-4221-9413-9587b2f501e8 {"role": "leaf"} Ethernet6/1 7c98085d-64fc-4353-af04-7502363414cd t \N \N 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 de632da7-1885-42c1-8838-1adc23d8f2cf 854cf3a8-ab85-4da2-88e2-42cd95a26f61 b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.948996+00 +a88d0ca0-81d6-4c64-838c-83668983f923 {"role": "leaf"} Ethernet7/1 893bac86-8f1b-4539-ad0d-f135002a1547 t \N \N 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 d7e9ac10-efb5-4948-a4a1-ac32ba4f2b58 94704017-dd01-474d-8e73-3244c649fdeb b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.110599+00 +b177c282-969a-409d-ba36-2d6594e21550 {"role": "leaf"} Ethernet9/1 e250cb5b-4a82-4dbb-8e9e-18ab8798cfec t \N \N 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 a9559595-f020-4f09-ace5-7fde73b8f17e 79dab99f-4df3-46ca-93c4-aa47c128cb1c b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.484314+00 +7b9a34be-0f8e-4a42-a9f2-925cc836a623 {"role": "leaf"} Ethernet10/1 f6f159b2-79c8-4091-9573-35a6f9b4754c t \N \N 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 b473f425-0fe0-4ad5-9124-749ff7c4dba7 c2508fbc-2280-423e-a524-012caabd1541 b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.655352+00 +a635babd-2e90-4f4e-9fd6-2d6df73af636 {"role": null} Ethernet23/1 \N t \N \N 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433841+00 +8a7b0318-22ba-451a-8619-ffa58d74c7fc {"role": null} Ethernet24/1 \N t \N \N 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.4339+00 +2bbff351-dbab-4b8f-bf49-5ec3947d448c {"role": null} Ethernet25/1 \N t \N \N 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.433959+00 +885be8f4-af8f-469b-82f8-e29693a84eeb {"role": null} Ethernet26/1 \N t \N \N 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434018+00 +332552f6-0923-475d-bc80-d4bcf32f1100 {"role": null} Ethernet27/1 \N t \N \N 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434077+00 +a392351d-888a-4a5c-a4a1-3c15e55c0c22 {"role": null} Ethernet28/1 \N t \N \N 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434136+00 +965d65c7-1bf3-483a-8f31-609b0091e51c {"role": null} Ethernet29/1 \N t \N \N 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434194+00 +90c8e903-ad2a-4257-adf2-2a5c5a8e4c95 {"role": null} Ethernet30/1 \N t \N \N 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434252+00 +21f299ac-e362-401a-8ece-5062aaeac404 {"role": null} Ethernet31/1 \N t \N \N 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434326+00 +4091a1b0-7a52-414b-95b0-c40d6feacd40 {"role": null} Ethernet32/1 \N t \N \N 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434385+00 +961c0a59-e9f2-47f5-a4b0-a7c6a769ca5f {"role": null} Ethernet33/1 \N t \N \N 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434446+00 +b33121ff-82c2-4a87-b352-90a1a763d1ed {"role": null} Ethernet34/1 \N t \N \N 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434505+00 +e4bdc270-d063-44ad-a96b-ace5020ceb63 {"role": null} Ethernet35/1 \N t \N \N 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434565+00 +56ab95a6-9388-4f7a-b418-53f61d0f8dcd {"role": null} Ethernet36/1 \N t \N \N 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434624+00 +4de6d64c-7e2f-472a-b529-4cdd9108e147 {"role": null} Ethernet37/1 \N t \N \N 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434683+00 +450df93a-395d-4e0f-8f3c-89b7b7dbf70c {"role": null} Ethernet38/1 \N t \N \N 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434741+00 +b85bf288-e823-47d2-ab97-65b846e214b8 {"role": null} Ethernet39/1 \N t \N \N 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434811+00 +98148b09-c14f-4671-9df1-e5cc18564362 {"role": null} Ethernet40/1 \N t \N \N 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434884+00 +a4a83bf2-e885-44af-8cbb-120e8420a770 {"role": null} Ethernet41/1 \N t \N \N 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.434955+00 +360e4b98-d09a-4f8f-bb2a-31521b567003 {"role": null} Ethernet42/1 \N t \N \N 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435022+00 +8cf7ec8b-c204-44ae-86da-feacb04de180 {"role": null} Ethernet43/1 \N t \N \N 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435087+00 +9d8ee88d-7d3f-4c9e-870f-795400ea7525 {"role": null} Ethernet44/1 \N t \N \N 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435151+00 +c220b490-2561-4731-abe6-a83fa3d3b626 {"role": null} Ethernet45/1 \N t \N \N 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435215+00 +20b196b7-ae62-4810-b669-041e709c0fbf {"role": null} Ethernet46/1 \N t \N \N 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435278+00 +e02420cb-ff4d-43de-92b7-1be6814a2bab {"role": null} Ethernet47/1 \N t \N \N 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.43534+00 +0b616035-344e-4189-bee5-ffccf00fd902 {"role": null} Ethernet48/1 \N t \N \N 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435407+00 +f4091b13-8574-4a08-999c-217959cf4324 {"role": null} Ethernet49/1 \N t \N \N 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435475+00 +0391b3cf-dcbc-40b6-b70f-704f44821969 {"role": null} Ethernet50/1 \N t \N \N 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435542+00 +d62e179c-cacc-4950-94bc-3fce4cc67f7f {"role": null} Ethernet51/1 \N t \N \N 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435607+00 +0b17044c-0301-4e9d-a606-5f937ebbda62 {"role": null} Ethernet52/1 \N t \N \N 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435672+00 +79ea634d-4e7a-4e38-b87d-5df93b20a0a5 {"role": null} Ethernet53/1 \N t \N \N 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435732+00 +68935421-dbc1-4a28-a927-4d8a5a06116a {"role": null} Ethernet54/1 \N t \N \N 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435791+00 +4f0eff24-ecc3-4b7c-a1a5-2e5ea54f33ab {"role": null} Ethernet55/1 \N t \N \N 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435849+00 +c6f12dbb-2474-4ef1-866b-75d5fe429594 {"role": null} Ethernet56/1 \N t \N \N 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435906+00 +822140b9-105c-4c92-86ed-f09615c66077 {"role": null} Ethernet57/1 \N t \N \N 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.435964+00 +0ed57737-33f5-487c-9a75-04ea3dc72222 {"role": null} Ethernet58/1 \N t \N \N 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.436021+00 +b3bb35a1-9f78-4852-9c44-32b9b888627c {"role": null} Ethernet59/1 \N t \N \N 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.436079+00 +757b64bb-5e11-4b3b-989f-ebf423d4ef15 {"role": null} Ethernet60/1 \N t \N \N 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.436137+00 +29ce91ab-6d10-47a2-9418-ad7be13ba8f0 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.436195+00 +b458dc77-7839-47b2-9676-1d230f796898 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.497573+00 +f012e375-5b46-47d7-b59d-0fb2c80bac43 {"role": null} Ethernet1/26 \N t \N \N 0001999999999999Ethernet000026............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653235+00 +e83c3ecf-da9d-4e28-a336-a7aee9e9c9b6 {"role": null} Ethernet1/27 \N t \N \N 0001999999999999Ethernet000027............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653293+00 +f4ae81c8-8fb8-4c5d-88ef-571f74809bc8 {"role": null} Ethernet1/28 \N t \N \N 0001999999999999Ethernet000028............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653351+00 +b2f50bbf-27d4-435d-add7-49835c5f650f {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.905657+00 +875e4604-e654-4d8a-ad93-3d91711c6457 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:08.958606+00 +137ed247-a045-49e8-9c34-f280f3fa17af {"role": null} Ethernet1/29 \N t \N \N 0001999999999999Ethernet000029............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.65341+00 +5ced6190-ac38-4fc6-b241-dc5be3ac911f {"role": null} Ethernet1/30 \N t \N \N 0001999999999999Ethernet000030............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653469+00 +5f67be03-098c-478e-b13b-cb7befa9b067 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.085891+00 +2253c9ad-745e-4394-80ac-dbe8319651d2 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.099306+00 +b8c5546a-9ab7-4966-963d-6637a7966db4 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.112677+00 +2e5c8f5d-c6ab-49e4-b364-0853b99a60c5 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.126043+00 +5037982a-b308-414d-b6e0-96c92d971eff {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.13949+00 +00879232-1e27-4f50-8774-733673fc191c {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.152683+00 +44fbfa93-0d8b-43f2-853f-a53d1a8d8657 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.165981+00 +014438f3-0d0c-44bf-932f-cb7da879b66e {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.17943+00 +6e241d60-a8b1-4c50-aa93-5eb0411d8604 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.192793+00 +24924d00-eec9-4653-b2e1-5aae3a4d8e07 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.206227+00 +b8c7333c-7e8f-4b9c-97e8-d9786f9c3f04 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.219512+00 +00992c08-7c70-4a90-91dc-87c2f50922fc {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.232682+00 +ad27616e-e8cd-466b-8443-3f9f9541d0b0 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.24644+00 +6ae23d53-4e3c-4c6c-a89a-b5fd3eca572c {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.260113+00 +64620b7f-205e-4d87-8b14-f33c15e771bd {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.273886+00 +185fd201-0dea-40b0-ba8e-0fa8a5d44cbe {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.287669+00 +2560f240-cb7c-453f-828d-696e8cf31ab8 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.301759+00 +f5996b34-3d08-4abb-a08e-ce1002289f04 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.315636+00 +aecc08e2-0827-408d-a78b-3806d130d8d3 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.32952+00 +a7511a85-94c4-4e27-914a-d10d5b5f5880 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.343387+00 +7a532bf2-5853-41c0-a7b5-b226e3e73789 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.357245+00 +6dbc2990-2489-4249-b8a1-17361d6d5fd6 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.371164+00 +73500d0e-757e-4eb4-bca9-a1b9cfa39a92 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.406589+00 +9cfac371-0728-4687-ac2c-b42e912db505 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.435928+00 +63b41b5e-95fc-4983-b665-d8975192f4ac {"role": null} Ethernet1/31 \N t \N \N 0001999999999999Ethernet000031............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653528+00 +8c7a7375-85d1-4a7a-b519-1ea6dbe0e9c4 {"role": null} Ethernet1/32 \N t \N \N 0001999999999999Ethernet000032............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653587+00 +8cc336a6-e575-4c50-8ad4-cbec52ad0526 {"role": "edge"} Ethernet1 a275628b-47b8-43c7-9c2a-33c6e49362f6 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 af41db32-2ea3-46ea-9b30-9fd03cb4bfd7 78fce191-9cf3-43dd-bc54-d2ac0fb7466a 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.531918+00 +291e676f-26a9-4589-aaeb-a12f3c8a1bba {"role": "edge"} Ethernet2 1fd56ad1-a795-4302-9b28-ca6655d87956 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 56b547e7-6a13-4eed-8138-61853dddf6cb b1e9efac-ea9d-4b3e-b259-4b29bb074bde 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.617962+00 +e527d199-5ed1-4d8d-a78b-7cf1014155fa {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.714844+00 +8add4301-67fa-4304-851f-6e61f4b6e237 {"role": null} Ethernet1/33 \N t \N \N 0001999999999999Ethernet000033............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653648+00 +617e812b-3c98-4bfd-ab26-51e56adb2bc5 {"role": null} Ethernet1/34 \N t \N \N 0001999999999999Ethernet000034............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653706+00 +4e6c4c98-e703-4da0-b1d7-3954000138c2 {"role": null} Ethernet1/35 \N t \N \N 0001999999999999Ethernet000035............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.65377+00 +99f4be16-7595-47c3-b701-c4d3222418e4 {"role": "edge"} Ethernet1 0fd015fb-4384-4e98-a83d-700c601678da t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 f4715076-0bcb-4b2c-9f8f-6b7762a99fd4 0f21ae3c-bc79-4183-a852-56fef4d18258 c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.345357+00 +1825310b-6b1f-46e0-a9b1-55c830206d68 {"role": "edge"} Ethernet2 ed0e4858-e34a-4f20-8f18-9257bb4e36e5 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 b2772d92-c9c1-47b4-bd59-32830e1be8db c58bc2ba-b05d-4b33-8d1b-fb105b77ab24 c2bb0304-fcac-4397-9d63-e7503688aae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.42765+00 +942c247e-c243-4c0a-a7a2-eefd3f4219bf {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.529705+00 +69a9155f-9056-408e-935e-2a754f29a205 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.586625+00 +4e2869ff-3e85-487d-af89-a782eaa46166 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.728272+00 +7a3e7f12-869f-492d-ab31-76d456494be6 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.741701+00 +96001a8f-9e27-41de-a522-085ef7e1f122 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.755665+00 +a9500a11-3831-4f02-82ab-3a9e51731789 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.769138+00 +2b3f6e4f-122e-40f9-b49e-353a8b357cc6 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.782902+00 +b83b06ed-44e8-46e6-8165-2a440f79a3d7 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.796396+00 +f8f55790-5281-4f26-9cbf-3082a36e1bc4 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.809581+00 +8049c07e-36e1-4750-a053-ed0c0dc21c2a {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.82296+00 +c7b088e1-002d-4cdd-9416-4cd45fb85099 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.83644+00 +9a495e31-8403-426a-9abc-9f2fb2fab2a1 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.849867+00 +b6d4e169-1e0e-4e38-beec-d07310d4d302 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.863554+00 +bdf7818a-1952-43cb-9d0d-fa0bef7720e3 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.877053+00 +1344f10b-8d82-4d2b-a55d-f78cc6d0190a {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.890765+00 +ccb6b52c-ce5b-46a9-ba00-5b3f91768e2b {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.90438+00 +79e7ce66-0c5a-4c22-98df-adb668f431a6 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.917811+00 +6b69d2fd-4862-4609-8b29-62e56ae4349a {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.931323+00 +10bc13a7-f6e4-439c-a1bc-85fc88779650 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.944924+00 +4eb67e21-7c27-4294-a45d-4702b5db91ae {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.958641+00 +2ddbadf5-a40b-4015-93e1-da5a53d216c2 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.972262+00 +8970f095-e50b-4030-8dfa-0b6455a5a5b3 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.985849+00 +77e4e4b9-8da8-4b22-a20f-585df59ff3bd {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:09.999371+00 +a68b36b7-7fe0-43f3-ae82-839133cb1c11 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.024614+00 +61200cb9-4129-4be9-b76b-eda9a10c9b22 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.069908+00 +fb2859fe-9b34-4ada-8ea4-561f129603dd {"role": null} Ethernet1/36 \N t \N \N 0001999999999999Ethernet000036............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653829+00 +b199e3c0-a580-4a93-bc61-f1ae2d0f03a3 {"role": null} Ethernet1/37 \N t \N \N 0001999999999999Ethernet000037............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653887+00 +c7dd9be3-0431-454d-9fc8-c6f8e4e84221 {"role": null} Ethernet1/38 \N t \N \N 0001999999999999Ethernet000038............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.653946+00 +28b68774-798e-4366-8c34-1abb3cc43a8c {"role": null} Ethernet1/39 \N t \N \N 0001999999999999Ethernet000039............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654004+00 +b7c2c340-00ac-406f-a1eb-1ed8ff2c66cb {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.374183+00 +0b8cfa75-ecd5-4855-adf1-09ff4d1cb4d1 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.388159+00 +cf2dfddb-f807-4b56-b700-c55258050c14 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.40225+00 +813a7026-ccda-46c8-baa1-80e47fff4210 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.415876+00 +8794e551-4213-42de-a116-b4ab17c2ec68 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.429432+00 +a514f48a-43dc-4c9d-9b0f-67f21d59273e {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.443098+00 +e3dd4411-5ad8-488a-836c-eaf0b928e9e4 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.456591+00 +523a3be9-e5d7-424d-9564-b56b697b8d7f {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.470415+00 +4140a542-1357-4b4a-8223-7998385c2477 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.484172+00 +bcc3f4c4-7cd7-47c1-b784-fb0caa08d56f {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.498101+00 +47b26f21-668a-4c86-b37b-54d65373427c {"role": "edge"} Ethernet1 6bee7896-71cd-4864-b0f5-0fc5836d4e07 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 797334f3-9aaa-422c-abb2-ceacb79ce3b1 26be4ae7-8b6f-4a35-a737-fdd87b45dab9 dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.701794+00 +a14f8127-92c5-41dc-a210-330c36287814 {"role": "edge"} Ethernet2 7f1b1ee2-cca8-4ce7-83e7-ddfc1488a932 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 4088385b-9981-41bf-8c61-5dfad1a3052a e1cda597-2fd3-4a39-b813-d42d238f9a9a dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.783807+00 +f4afad7b-a066-4608-815f-680968969122 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.190566+00 +ba1881c7-5b73-402d-b94e-264a6061b8af {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.242835+00 +783576ad-aa92-48ee-a93e-67fda6f10ac6 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.512093+00 +83a50669-aada-46ef-8f7b-4a7b86c6f686 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.525959+00 +883a216b-7d56-491d-9afa-fc5d43430949 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.539849+00 +2b25c7f5-3e48-434b-b887-a1d413bb8e12 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.553758+00 +e84172f2-73d0-4bb8-87a3-d7ce03f4d6c2 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.567662+00 +24a6c6e8-6787-4f86-9730-bffacd482cb2 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.581751+00 +31cd682b-daff-4bc5-bd32-4cf44585534a {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.59577+00 +7d3dcde1-51ab-4434-a1f3-683e13d1dcbc {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.613226+00 +f4654a88-4add-4bdb-b8c4-4b281f775fd5 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.641524+00 +d85b1a4f-d18b-4f2b-9162-e067f243e99f {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.667084+00 +87c8037f-1eac-4a1f-9878-80d2c23e1a02 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.692894+00 +b985125b-a337-40dc-bca5-ccfa6037295c {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.713911+00 +936a51da-0da9-49dd-8526-460ed0c94c0b {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.739883+00 +c95d5401-d9cd-4d13-aeb4-672bac738de4 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.768365+00 +c9e462c9-b3c2-43df-a460-266a8d19838e {"role": null} Ethernet1/40 \N t \N \N 0001999999999999Ethernet000040............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654063+00 +02e2ba4c-e70f-4620-910d-8d8137327bc0 {"role": null} Ethernet1/41 \N t \N \N 0001999999999999Ethernet000041............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654121+00 +c803bb6d-6603-4e6e-8d3d-c5222b232a8d {"role": null} Ethernet1/42 \N t \N \N 0001999999999999Ethernet000042............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654179+00 +7c98085d-64fc-4353-af04-7502363414cd {"role": "edge"} Ethernet2 0ea49852-bcf2-4221-9413-9587b2f501e8 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 de269326-a6d6-4a99-90a5-b54ea73ce673 854cf3a8-ab85-4da2-88e2-42cd95a26f61 bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.953373+00 +517939e0-ab0b-439a-9736-165dc636b5ab {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.046409+00 +f0040598-48cf-479d-8142-8db4933cfcbd {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.059876+00 +432cc6f3-5b85-4354-b428-5a079ee84e6c {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.073487+00 +e294f29a-6f06-4f7a-a2a1-fa25171841fb {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.086887+00 +1f2bc13b-3b08-4509-a1a7-5439b29a0c9c {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.100201+00 +6b305e0e-9ca4-4aca-a121-0e9cd9a98ee4 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.113682+00 +0ad47e82-2e6f-422a-811b-fed14276fcbd {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.127077+00 +65b24e18-8cb9-424d-8a0b-6aee02e65884 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.1405+00 +3bfbd2f0-7732-404f-b82e-fcb8174a7368 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.153817+00 +bbd7fe65-756b-437d-9057-8499d6d07f58 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.167167+00 +e9ccbb99-728d-4f6f-906a-e23e0fb636d4 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.180707+00 +c9eb93f8-071e-42c2-a392-f77c61ac1e0a {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.19425+00 +2ba2b827-4fe0-4c00-9506-4fd1c1bb9541 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.207653+00 +cbea9d30-eeae-4a84-b659-d781a78a4a2a {"role": null} Ethernet1/43 \N t \N \N 0001999999999999Ethernet000043............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.65424+00 +7b3e5805-adda-4ddf-bf83-8404daff7f0b {"role": null} Ethernet1/44 \N t \N \N 0001999999999999Ethernet000044............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654314+00 +dbdfc857-40db-4ecc-90d8-00d8b4353039 {"role": null} Ethernet1/45 \N t \N \N 0001999999999999Ethernet000045............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654375+00 +50e63731-21ff-4bc1-a900-ed71f1c25b1f {"role": "edge"} Ethernet1 bca969b1-264d-482a-9986-0e155e2c0d01 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 b1b22219-7f8f-4c89-bac8-ce2be428dede df3b998b-0ca5-4f00-98d0-75a1f5afc6a9 bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.871763+00 +856f6e00-4557-4c42-861d-f864e68a7e6f {"role": null} Ethernet1/46 \N t \N \N 0001999999999999Ethernet000046............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654434+00 +3e2361b8-53f4-4d63-9710-2fcae2be5fb2 {"role": null} Ethernet1/47 \N t \N \N 0001999999999999Ethernet000047............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654493+00 +17dcfd70-b53e-4708-a98c-171962c6ca3a {"role": null} Ethernet1/48 \N t \N \N 0001999999999999Ethernet000048............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654551+00 +38d5b318-f409-4ef0-b2b6-8991f19edb9f {"role": null} Ethernet1/49 \N t \N \N 0001999999999999Ethernet000049............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654609+00 +07683977-0fb8-4fa2-9433-2677e92bb58a {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.867565+00 +0efc260c-fbc9-4a34-b319-60f93eefaca9 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:10.918975+00 +ceba91cc-6fc7-4152-866f-10b61d14147c {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.220927+00 +8ae9bd98-6e8e-4fa3-84cc-dd63d2105f29 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.234363+00 +c1e28693-b130-4add-870c-19be128ebd59 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.251877+00 +3cf1aa05-87d9-4e1a-8f15-0c180c4e1502 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.265588+00 +215b4ee2-63b1-4983-b078-61d28d405ab5 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.27924+00 +0afb35df-031f-44f7-9c41-0ddb60fa26f5 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.292861+00 +e73d6017-1b56-4fb6-b8a4-357dd8d2ce9d {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.306681+00 +831c3441-1fb7-42ed-bb44-c908d3cdd7f4 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.320326+00 +341a9c37-6efb-45b5-ad94-925fcb0a7621 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.333884+00 +3376ad08-e54a-432e-aa20-b1996dd348ea {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.359414+00 +56b661f2-2198-40d7-91f4-2f33c683c6a8 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.388628+00 +e3b49a7a-8ee0-486d-bcaf-74c5cc7a1eb9 {"role": null} Ethernet1/50 \N t \N \N 0001999999999999Ethernet000050............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654668+00 +e8a9da29-bec5-412f-8510-a9e7c44df3c6 {"role": null} Ethernet1/51 \N t \N \N 0001999999999999Ethernet000051............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654727+00 +8a9dbcd4-a941-45c2-a11b-771ca98c6e84 {"role": null} Ethernet1/52 \N t \N \N 0001999999999999Ethernet000052............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654789+00 +bae66046-1960-4f37-9c7d-a861a4f05d52 {"role": null} Ethernet1/53 \N t \N \N 0001999999999999Ethernet000053............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654848+00 +128fe752-f7b8-46c4-bdeb-e1238f58f989 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.669839+00 +4f1175a6-b211-456b-a8d6-762356395260 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.683409+00 +56bddd3e-d393-49ba-8028-27a49fb431e2 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.697146+00 +b2699fba-4203-4f4a-97a9-2aec3d04f25e {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.710915+00 +0af9c27a-28fd-4613-9f73-570963e4e603 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.724291+00 +4e11b4c8-cc27-4bf6-8e64-37731ccd9607 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.737574+00 +d458abf9-ce5c-4f5a-a683-902522538ed7 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.75121+00 +f16c28f2-cfd6-4532-830f-69622f8053d6 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.76519+00 +aa4f4165-2275-4e78-920e-871c007b4d32 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.778813+00 +95f94804-200f-4cc4-88c2-b8bff70b02d5 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.792567+00 +a0750228-dcfd-4cd8-a60b-a7f6fdd538f4 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.810022+00 +f1094f42-275e-48f0-b61b-581ed6775897 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.82467+00 +c6ad15e5-b5ca-43f6-bb16-5456de62dc3a {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.838774+00 +7d911985-9233-428a-a98a-fbcc2c9a5b64 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.852607+00 +0a1b26cc-ea22-44ff-afb7-11690a64f8fd {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.866439+00 +95afa4be-5f23-4d51-8047-fc7db08c6750 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.880043+00 +cb721248-ef73-44e2-9148-c5ea4f822e33 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.893704+00 +fa84c163-595d-44e7-aa1a-c8620172bd70 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.907565+00 +4b5f7480-bfd8-493f-a158-1bedc51303c1 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.921187+00 +73068a23-8f63-4499-8b29-bf6c49a93a05 {"role": null} Ethernet1/54 \N t \N \N 0001999999999999Ethernet000054............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654907+00 +9a0e73d1-1d12-41f1-a322-0e21d2863362 {"role": null} Ethernet1/55 \N t \N \N 0001999999999999Ethernet000055............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.654965+00 +4e7e06ba-0a67-40db-a13a-b7a1d0ff429d {"role": "edge"} Ethernet1 658a8717-44a3-4770-ad5a-0aa3a1e9edcb t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 b02e9315-60fc-44f0-bcf1-82d285a2a8b6 ebf81336-ebd6-407b-89cf-badd389d78d6 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.034789+00 +c1f5c5f1-547a-461f-811d-d0adf65696cb {"role": null} Ethernet1/56 \N t \N \N 0001999999999999Ethernet000056............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655024+00 +893bac86-8f1b-4539-ad0d-f135002a1547 {"role": "edge"} Ethernet2 a88d0ca0-81d6-4c64-838c-83668983f923 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 ab3edab2-8b0a-4a79-ac94-3f559daec3f3 94704017-dd01-474d-8e73-3244c649fdeb 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.114822+00 +9c18edb8-3f74-446c-bcaf-129e0ebb19b2 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.487689+00 +9c3a26c2-c74f-4062-9d88-4a7f894f6488 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.539969+00 +13f12285-fa2e-455e-a524-dda33e1d716e {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.934797+00 +83c3e82e-a5bf-4a2d-9156-1e80012c5c5f {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.948517+00 +ee68dc06-e4d6-408d-bf07-c145d14fe3da {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.962148+00 +56c445f6-ee6e-46b2-ae63-49bff0652000 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:11.987411+00 +f2ecb108-b061-4d18-9917-9c8b0f3f77ae {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.015225+00 +ca1bd591-2d7c-4f45-9963-e0eee8a6759b {"role": null} Ethernet1/57 \N t \N \N 0001999999999999Ethernet000057............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655083+00 +41769f14-d9c8-4eb3-b068-1fe688eeb2d2 {"role": null} Ethernet1/58 \N t \N \N 0001999999999999Ethernet000058............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655143+00 +0951b2fe-4908-4ee5-91f4-d29fb8dd6451 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.113877+00 +8e8fdd38-b7af-4277-8dfd-e470c0b5fe16 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.182433+00 +addf07ac-52d6-49d1-a123-4088795b26c2 {"role": null} Ethernet1/59 \N t \N \N 0001999999999999Ethernet000059............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655202+00 +fba9a482-09f6-4f48-8693-bf37b5bc3f08 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.46635+00 +03c31d2b-5987-4432-b4c9-f741b6bfcaa9 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.479975+00 +30344ff3-4ee1-423a-a7ed-e5a3f131539e {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.493637+00 +ba63a046-ebfc-420b-a9af-37e8393839f1 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.507182+00 +a0a37034-f38a-4a64-a9a0-09aad788fb08 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.520825+00 +81686335-56b8-4a83-a0ef-ce56611348d3 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.534618+00 +ced4ee59-6c05-4f38-a67d-78b1ee7f27f4 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.548207+00 +4ebcb828-66f6-4b35-bfa6-7788b9c19039 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.561841+00 +e419da88-e111-4e2f-9600-c87ed82754f8 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.575688+00 +3fb92992-0bb2-4030-9570-4dfe88351e44 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.589324+00 +7a27268e-d70a-406e-a3ae-722d2009c086 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.603058+00 +73ab714f-620f-45fb-9be3-0255d13da279 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.617332+00 +e6690d61-c61f-4bb7-b05c-64e520336df8 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.630925+00 +defca15c-f236-491b-84e5-eb8c612fe249 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.644634+00 +c43544a0-4740-4f85-86f7-7f9035b37720 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.658146+00 +386de43f-4c7a-4155-a077-6340fdcf9d73 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.671685+00 +2d2e2e22-cafe-4bfa-826d-ae702eac5678 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.685416+00 +25e63e96-c176-4ad0-9246-71167ce519ab {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.699044+00 +adfcd542-266e-43e9-adf6-e8ef43372c55 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.712882+00 +ecadc0f5-ffc2-48ee-9261-6debacd49958 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.726486+00 +32be4699-45f4-45d0-824f-2c993b685cf5 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.739821+00 +13b98a6a-06e9-4ef4-af9a-a98f052927ec {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.753225+00 +4a6053e3-85aa-4f34-9d08-acaa7c8dd4c2 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.778856+00 +8b9c178c-d7ae-420b-a38d-bc862ea89050 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.806545+00 +11b124b6-20bc-40e2-bf27-6fc9c2e3ab82 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.088782+00 +ab5bffab-f361-47b8-b5a5-ed3a22e5ec7b {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.102539+00 +c32dea90-2967-44e7-b32a-436f9931213b {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.116191+00 +b8de16c3-d047-4665-9c47-4620be7b187c {"role": "edge"} Ethernet2 72c992f5-62da-489d-abee-c14f62f52097 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 1aa5d188-31b0-42d4-b3c6-d924835d2628 04b8b8d3-bd38-4355-9b2c-9b455b3ce7af ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.309216+00 +e250cb5b-4a82-4dbb-8e9e-18ab8798cfec {"role": "edge"} Ethernet2 b177c282-969a-409d-ba36-2d6594e21550 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 b36f1f1e-35c5-45d9-8e57-261d2f7fd278 79dab99f-4df3-46ca-93c4-aa47c128cb1c 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.488615+00 +cdd17368-9ea4-4353-9612-3df358ff5151 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.90616+00 +2405c89b-d65b-4734-bf8d-5adfe6569c86 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:12.958745+00 +f90f1daa-2ede-4c5d-9006-be04fac3663f {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.129952+00 +1ea61a88-25da-4003-be13-85e61029c7e9 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.143637+00 +52d4896b-6bcf-4c49-80f1-585c24d8fb0d {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.157193+00 +b2723ed1-40f1-426a-ba6b-34ba9aae0a32 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.170905+00 +54220c34-810d-4575-98bf-72bb17e3ae5e {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.1848+00 +3ac23dc8-e1ea-4b23-95fe-4842695409bc {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.198728+00 +77c08b9d-2cdf-4370-bbd5-090d2942e6d8 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.212302+00 +6a874781-1f0c-415d-9cc9-390e607c77cd {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.226017+00 +793255b9-c2c8-4f47-8e68-3d3012cf0cba {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.239886+00 +b799d8ac-1630-47ca-8b51-71ceef03c05f {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.253498+00 +3a23350c-ab7e-4f4d-b6de-0d418622d47e {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.267361+00 +a8ceba89-90e5-4afb-ac9b-22c7ae55e114 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.281328+00 +b218bcb6-102d-4442-82a6-ea53a1e07403 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.295138+00 +b26646cc-11b6-47a1-8005-4f13af8098b4 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.309247+00 +e78d3453-b4dc-43f6-821a-858581f4dd9d {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.323182+00 +c1d4a566-7005-4614-b64d-be608a57f339 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.337029+00 +b41170ec-5289-4196-8c21-1f93dd649ab3 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.351065+00 +25dbc178-155e-4246-8f3e-638eeb3f5a24 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.364807+00 +0aa3eda7-298e-4c8a-b6c6-2d9727bc8bda {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.378883+00 +721f6b9b-41f3-45f9-8305-d4241296cab3 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.404085+00 +1f4ed9ca-07c3-42de-b44a-61d5364f4a0f {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.432136+00 +716f1b00-1f5f-44d2-a67d-ca6a5cc6d52e {"role": null} Ethernet1/60 \N t \N \N 0001999999999999Ethernet000060............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655261+00 +21646613-00e7-4a0e-b790-ad0193cbc2c8 {"role": null} Ethernet1/61 \N t \N \N 0001999999999999Ethernet000061............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655321+00 +7b22a2eb-9298-47e7-8837-e92d0216bbf9 {"role": null} Ethernet1/62 \N t \N \N 0001999999999999Ethernet000062............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655382+00 +c5cfff22-2895-48f2-9614-cef01245d80c {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.715022+00 +4a596c3e-45c5-479f-bebd-d67463d350f1 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.728517+00 +1acb7442-671e-47cc-a712-2cd7de459bce {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.741963+00 +ac5add92-1699-4ddd-a480-fd071d221a8d {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.75574+00 +685fbee0-9062-4820-bc9b-d296c57d6a70 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.769217+00 +634326ee-8a36-4a87-816d-8c7c7b260fc0 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.782708+00 +1c512747-5584-4f3b-8d89-9ee26b8d4966 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.796023+00 +349c5b81-0b8a-465b-a77a-495bfe2207a4 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.823018+00 +4b8cd0c2-327e-4035-82bf-e9f86aa7cf59 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.836563+00 +47a57d75-f681-4cec-b25e-d31cad975818 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.849932+00 +b8917bab-9d0b-4884-958c-35ab0669b94d {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.863514+00 +faa392fc-ca6b-4893-8cec-338a5cf01bfd {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.876867+00 +fec4dac3-c9b5-4044-8d74-d44cf85b6571 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.890129+00 +9955bcf6-ee09-4135-bf06-ef2b2cc5cc39 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.902824+00 +a96a110e-317b-4ec6-86d9-6c917f18c020 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.91554+00 +3eeff26d-444e-4b61-b737-b19c24da996e {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.531049+00 +03a3c582-b01a-4aa3-80e2-7d2bb9cb913b {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.583367+00 +efa8857c-0227-4f37-b8a9-1bc4238186c2 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.809339+00 +71a7408a-9dff-4266-8fe2-439d45975a61 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.932219+00 +34d8c288-9a0c-4cda-a140-b75b7a8b4849 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.946374+00 +a97e4641-4160-45c6-a594-b744240c6e52 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.960437+00 +be02090c-edf7-4c2b-ac8e-99586a189a74 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.974469+00 +784e0760-d448-4724-b139-27ca7408a166 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:13.988471+00 +ca341f54-6f69-49bc-bbf3-3add42f74e09 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.002435+00 +af94e4c3-a287-402b-9a66-5cac08e17e4f {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.028743+00 +0a7ecad3-5772-4f99-beff-4ad0df51894e {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.057667+00 +ee11c72d-2c39-4354-a31f-4b29b93be34a {"role": null} Ethernet1/63 \N t \N \N 0001999999999999Ethernet000063............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655441+00 +efaa3f2f-02d1-476d-b517-c203f27f7b5c {"role": null} Ethernet1/64 \N t \N \N 0001999999999999Ethernet000064............ 1000base-t f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655499+00 +b7215d4b-e1b7-4622-9e89-9f6852c243c0 {"role": null} mgmt0 \N t \N \N 9999999999999999mgmt000000............ 1000base-t t \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.655558+00 +06d20bba-949b-4273-9463-01dba8f644cf {"role": "peer"} Ethernet1/1 1c95cc4d-eab8-4041-985c-77614056005a t \N \N 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 2ecfce5c-8c01-403d-b05f-9e9e68396888 7f675601-42da-444b-b994-88f229350ab4 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.074928+00 +1c95cc4d-eab8-4041-985c-77614056005a {"role": "peer"} Ethernet1/1 06d20bba-949b-4273-9463-01dba8f644cf t \N \N 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 abbfa2b3-24de-4473-9dfd-91fd2b1f8af4 7f675601-42da-444b-b994-88f229350ab4 b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.07924+00 +d758f08c-2994-4638-b0b4-41099f599981 {"role": "peer"} Ethernet2/1 af41be32-c31e-4550-862a-2e80956ca407 t \N \N 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 3bd78f6a-ea59-4d95-af2a-800b51a42731 3635f5ca-b1ef-4fa5-bdc6-0e6a59539985 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.25308+00 +af41be32-c31e-4550-862a-2e80956ca407 {"role": "peer"} Ethernet2/1 d758f08c-2994-4638-b0b4-41099f599981 t \N \N 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 cdabcc8a-8f3f-4e9d-8530-d88b93151f0b 3635f5ca-b1ef-4fa5-bdc6-0e6a59539985 b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.257411+00 +0fd015fb-4384-4e98-a83d-700c601678da {"role": "leaf"} Ethernet3/1 99f4be16-7595-47c3-b701-c4d3222418e4 t \N \N 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 bdd46564-1645-49e3-9299-93dc8725c32e 0f21ae3c-bc79-4183-a852-56fef4d18258 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.341194+00 +6bee7896-71cd-4864-b0f5-0fc5836d4e07 {"role": "leaf"} Ethernet5/1 47b26f21-668a-4c86-b37b-54d65373427c t \N \N 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 7c813b4f-b60e-4f33-82a5-ba049fbd97e4 26be4ae7-8b6f-4a35-a737-fdd87b45dab9 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.697522+00 +bca969b1-264d-482a-9986-0e155e2c0d01 {"role": "leaf"} Ethernet6/1 50e63731-21ff-4bc1-a900-ed71f1c25b1f t \N \N 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 0caf83ed-fd1d-4b4e-a55d-95ed7081120e df3b998b-0ca5-4f00-98d0-75a1f5afc6a9 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:14.867187+00 +658a8717-44a3-4770-ad5a-0aa3a1e9edcb {"role": "leaf"} Ethernet7/1 4e7e06ba-0a67-40db-a13a-b7a1d0ff429d t \N \N 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 4a26c409-4312-4bfe-b78b-9945ca919adc ebf81336-ebd6-407b-89cf-badd389d78d6 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.030604+00 +16a2a324-4396-4672-aeef-29f47c359a60 {"role": "edge"} Ethernet1 d8dff6c9-6185-4d8b-8327-a99ce574b62f t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 55851003-f32b-4948-bba9-9e078d41d6f5 881e98e4-154d-496f-855f-592377f54f4a ebe97465-935f-4bf8-b29a-d0e1100d5528 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.211719+00 +72c992f5-62da-489d-abee-c14f62f52097 {"role": "leaf"} Ethernet8/1 b8de16c3-d047-4665-9c47-4620be7b187c t \N \N 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 69531ebd-ab59-404a-96be-0dfaf97537f1 04b8b8d3-bd38-4355-9b2c-9b455b3ce7af b1d1e038-acb3-468f-810b-5d0f549a66cc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.30494+00 +91a64db3-f588-4ccd-aa3e-94159e16d098 {"role": "edge"} Ethernet1 1912fee0-5a5b-4f49-ba2a-7fa99715976d t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 9d6fbde0-9502-4dd0-98db-e9f5cf7f2c44 fbf5979c-3bbb-4b9f-b121-da5609b87deb 1724a7eb-1663-47da-abaa-00b6271c9754 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.394855+00 +ce01a4bd-4ea9-4f29-af12-9270857547f6 {"role": "leaf"} Ethernet10/1 146e02be-a8b6-488a-a197-9f197ecb100c t \N \N 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 3ed62041-fab5-4331-bbfd-f487f6378e77 f17bdbbc-e4e9-453a-ae35-2262453e989a 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.570866+00 +146e02be-a8b6-488a-a197-9f197ecb100c {"role": "edge"} Ethernet1 ce01a4bd-4ea9-4f29-af12-9270857547f6 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 0243331f-9273-40ce-9dc2-f6602ceda184 f17bdbbc-e4e9-453a-ae35-2262453e989a bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.575216+00 +f6f159b2-79c8-4091-9573-35a6f9b4754c {"role": "edge"} Ethernet2 7b9a34be-0f8e-4a42-a9f2-925cc836a623 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 6355459a-b9fc-4481-9b2d-3904d521e748 c2508fbc-2280-423e-a524-012caabd1541 bf4037a6-1802-48e9-8e95-3fd2326f4bdf \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:15.659572+00 +2944bdd7-bebb-4210-9cd7-dce6899dcfd0 {"role": "leaf"} Ethernet7/1 \N t \N \N 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.208888+00 +c1918b4f-5035-4399-a6ce-6242949c6fc3 {"role": "leaf"} Ethernet8/1 \N t \N \N 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.221279+00 +639b2ccc-23a5-4efc-aa17-c125c50dd34f {"role": "leaf"} Ethernet9/1 \N t \N \N 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.233515+00 +9dca9fcb-d3e4-46cb-ace2-2e8f279bfe92 {"role": "leaf"} Ethernet10/1 \N t \N \N 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.245939+00 +db739229-5dcd-4d05-94f5-52bd234647b9 {"role": "peer"} Ethernet1/1 a1e88275-4a5c-4b89-8017-4ad695ff14f8 t \N \N 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 7eb57763-39df-4ea8-92b0-d603c539d5c0 a7240ec2-73f8-43d9-a0c6-297e24d40893 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.261927+00 +aec8c705-f321-4d0c-9a66-29ca6e23995b {"role": "leaf"} Ethernet3/1 2829d904-99cf-4100-9b89-ca40bdafd284 t \N \N 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 2626aebc-441c-4a30-8e5d-8d5dc231cc03 c4f8906a-1d14-4ab2-8332-a5406c85717d 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.534462+00 +8cd7bfcf-9a6f-4605-843a-418736ad7c5e {"role": "leaf"} Ethernet4/1 06b11a10-9918-4d96-9194-ccc202f9aa5d t \N \N 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 583491c3-9b25-4497-920f-b16347d7dd38 9c1846a0-7565-47a6-b0c6-9502384c8582 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.703089+00 +571a071c-a01c-4ba8-b749-415d9c95665b {"role": "leaf"} Ethernet6/1 6ee18771-590a-4da9-8e06-f42a0c1346ea t \N \N 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 ef55a466-93e5-4996-861a-223bf02dc4d2 0d6832a5-71ff-412b-991c-58392176c200 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.017904+00 +af39599b-230f-4593-a608-8c9bef3d3218 {} loopback0 \N t \N \N 9999999999999999loopback000000............ virtual f \N \N \N 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:36.876472+00 +a4a33f88-f446-45b2-a317-3847ac382b8d {"role": null} Ethernet17/1 \N t \N \N 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.967807+00 +68606a29-c2a1-4f56-9974-028b67a26cc9 {"role": null} Ethernet18/1 \N t \N \N 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.967868+00 +aedb20a5-312b-4a06-9d18-a49c0b35daea {"role": null} Ethernet19/1 \N t \N \N 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.967928+00 +e8d3e1d0-3692-4820-811d-6b9d011e2ebb {"role": null} Ethernet20/1 \N t \N \N 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.967989+00 +6a256e84-4a1f-424d-9c6d-5e1771fee8c6 {"role": null} Ethernet21/1 \N t \N \N 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968049+00 +345a810a-e656-4206-bac6-96e225ac979c {"role": null} Ethernet22/1 \N t \N \N 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968109+00 +eae08acf-a7f6-463e-a0e6-83aa16938298 {"role": null} Ethernet23/1 \N t \N \N 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968169+00 +24958c6b-5857-4aaf-abd4-582bb664d8e6 {"role": null} Ethernet24/1 \N t \N \N 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968229+00 +3c943fca-881d-4d0d-a644-cc2e6055eaf4 {"role": null} Ethernet25/1 \N t \N \N 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968289+00 +6f0d9506-78b9-43d8-9ec7-6f18be4c8250 {"role": null} Ethernet26/1 \N t \N \N 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968348+00 +029feaba-128d-41f9-be8f-87704899ed79 {"role": null} Ethernet27/1 \N t \N \N 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968408+00 +14b34f91-9fb6-4a98-815c-62d0c8f0f331 {"role": null} Ethernet28/1 \N t \N \N 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968468+00 +832a68b9-0727-47cf-b817-c6e7af1f8388 {"role": null} Ethernet29/1 \N t \N \N 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968528+00 +c0e77abc-2eb5-44fc-ad65-6946f3a540a7 {"role": null} Ethernet30/1 \N t \N \N 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968587+00 +73696673-629b-4e43-8f28-381ac95964c8 {"role": null} Ethernet31/1 \N t \N \N 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968649+00 +6bbb8cd3-8b0d-4080-8b4e-2c00c7918efd {"role": null} Ethernet32/1 \N t \N \N 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.96871+00 +7fb66451-de91-4bfb-b8ba-b9f3c52f7ead {"role": null} Ethernet33/1 \N t \N \N 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968769+00 +077b5a09-ab46-4b4b-8280-02d956c3c57b {"role": null} Ethernet34/1 \N t \N \N 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968829+00 +c5ca97f4-3b02-48a2-b75d-93f962382b68 {"role": null} Ethernet35/1 \N t \N \N 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968894+00 +b34e773a-f4f3-4652-89a8-4a57b36c51b4 {"role": null} Ethernet36/1 \N t \N \N 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.968954+00 +9459f282-c036-44c7-85a3-435bf61a2d9a {"role": null} Ethernet37/1 \N t \N \N 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969013+00 +d08d1efe-6e69-44c2-a8ee-a43e4814b281 {"role": null} Ethernet38/1 \N t \N \N 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969071+00 +767c9f1c-75f2-4a71-b12a-c5bac421ee20 {"role": null} Ethernet39/1 \N t \N \N 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969129+00 +0023aa7c-e17a-4f5d-bd63-7638e61f63ca {"role": null} Ethernet40/1 \N t \N \N 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969186+00 +8c210ffe-bd7e-4bea-ba48-5a720cc77a76 {"role": null} Ethernet41/1 \N t \N \N 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969246+00 +3f8808d1-2ca8-451d-9b19-bc3db7b45f45 {"role": null} Ethernet42/1 \N t \N \N 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969304+00 +e0daa2cf-4b78-48fc-aa3b-03cc6ca5174f {"role": null} Ethernet43/1 \N t \N \N 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969362+00 +828cbeb5-5af5-46ab-810c-19ba6fa5d0e7 {"role": null} Ethernet44/1 \N t \N \N 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.96942+00 +9c1b29b0-2769-44d5-b1ae-6975fb12d8e5 {"role": null} Ethernet45/1 \N t \N \N 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969477+00 +dca39850-11f2-4031-879d-d6b4efc42980 {"role": null} Ethernet46/1 \N t \N \N 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969535+00 +b01131f3-d073-41bf-934d-8cf6dbde022e {"role": null} Ethernet47/1 \N t \N \N 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969592+00 +fb6ee2ac-7868-454d-92c2-3c6a172aaa4e {"role": null} Ethernet48/1 \N t \N \N 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.96965+00 +2f238935-f10d-4b78-bb8a-c6e77ffa0fcd {"role": null} Ethernet49/1 \N t \N \N 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969707+00 +07fc874f-5942-4ae1-a96c-50846184fe40 {"role": null} Ethernet50/1 \N t \N \N 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969765+00 +f1ec3d0e-277a-424b-a036-76fad5d2e283 {"role": null} Ethernet51/1 \N t \N \N 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969822+00 +b444d4f0-771e-40b4-a84d-375ea6855842 {"role": "leaf"} Ethernet12/1 \N t \N \N 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.270468+00 +0b226ad4-deac-40fe-a576-e6df67c519fe {"role": "leaf"} Ethernet13/1 \N t \N \N 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.282666+00 +a058d769-6e07-4094-9ffc-efc05f61bd04 {"role": "leaf"} Ethernet14/1 \N t \N \N 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.29489+00 +305b8153-e80c-42e5-b40b-988dbbacadf6 {"role": "external"} Ethernet15/1 92152ff0-7eff-4ed1-8488-2010632e4954 t \N \N 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 a9d469c5-79da-4bd8-aea8-989ad277a096 383493de-5e77-41ff-8b20-a28748644eb7 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.195708+00 +836d6b5b-e12d-4b14-996a-b4bcdf2b6be3 {"role": null} Ethernet52/1 \N t \N \N 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969879+00 +ba1ff9ad-8fed-4f38-a14c-08badbac3e91 {"role": null} Ethernet53/1 \N t \N \N 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969936+00 +b1e870ac-654a-4c02-9d90-9b5ce66b79db {"role": null} Ethernet54/1 \N t \N \N 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.969994+00 +a94ec6aa-121f-4a1d-b1b6-23401ae435e2 {"role": null} Ethernet55/1 \N t \N \N 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.97005+00 +62253889-d867-49e6-91c9-0ecc90f2475e {"role": null} Ethernet56/1 \N t \N \N 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.970108+00 +06fe7d15-9aee-4507-be4e-6381066c668a {"role": null} Ethernet57/1 \N t \N \N 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.970165+00 +09ec6fdb-ab79-433c-b61d-976dc0c99865 {"role": null} Ethernet58/1 \N t \N \N 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.970223+00 +cc5dce9c-4dea-4c76-83cd-4672ce765995 {"role": null} Ethernet59/1 \N t \N \N 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.970296+00 +2e07e41a-97d6-48b5-aa75-79a02b6a25b9 {"role": null} Ethernet60/1 \N t \N \N 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.970358+00 +4dbe65df-a53c-45a0-8482-14c6c167b961 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:23.970416+00 +8fe49e10-a6ec-43ab-be44-ee89672e0e2f {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.031526+00 +ec1cc61a-ab84-41eb-a149-51dfe3f408b3 {"role": "leaf"} Ethernet11/1 \N t \N \N 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.258109+00 +d8f23dbd-968f-4d0f-b6cf-1b6e01f35e55 {"role": null} Ethernet1/4 3166b8f9-3e49-440a-83a9-4fefbf9625c7 t \N \N 0001999999999999Ethernet000004............ 1000base-t f 4 57bb57ff-cbe0-42d5-b603-3edf832e48e7 8c81a77f-bf97-4203-b64d-92220d582d74 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.447272+00 +cfde63a9-75f4-4e35-8511-1ad9800b4788 {"role": null} Ethernet17/1 \N t \N \N 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.512859+00 +63209617-0d04-4d04-8d6d-79f914cf9d0d {"role": null} Ethernet18/1 \N t \N \N 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.512918+00 +79388d4b-1982-41d0-9660-b33a249ed1ba {"role": null} Ethernet19/1 \N t \N \N 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.512978+00 +97748d81-4df8-46e7-b091-03a9c29d125f {"role": null} Ethernet20/1 \N t \N \N 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513037+00 +fe0879c0-e82b-4729-b8af-69a9105a7321 {"role": null} Ethernet21/1 \N t \N \N 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513097+00 +c2551f01-d4cc-4fa1-88e9-4ab39e158ae1 {"role": null} Ethernet22/1 \N t \N \N 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513157+00 +92081dd5-3bf6-44f0-89b9-fcef55145afa {"role": null} Ethernet23/1 \N t \N \N 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513215+00 +98dc8683-8275-46ae-a81c-7fbb93ecceba {"role": null} Ethernet24/1 \N t \N \N 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513274+00 +97c9281d-8b67-4b42-b678-d0edef85b43d {"role": null} Ethernet25/1 \N t \N \N 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513332+00 +51d51770-ecc7-446b-a27f-fa07daf83bc2 {"role": null} Ethernet26/1 \N t \N \N 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513392+00 +5d8456c5-093b-4a14-bbec-d72f17f346f4 {"role": null} Ethernet27/1 \N t \N \N 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.51345+00 +d32e0420-7347-483b-a012-c9fcf0ceed72 {"role": null} Ethernet28/1 \N t \N \N 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.51351+00 +c5c40db8-f3e6-4a83-b429-33a52c87fb9c {"role": null} Ethernet29/1 \N t \N \N 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513568+00 +f2031b40-78a7-45e2-8e6e-444718325a71 {"role": "leaf"} Ethernet7/1 \N t \N \N 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.746511+00 +e88d23d3-1495-44be-a61d-443277a74aad {"role": "leaf"} Ethernet8/1 \N t \N \N 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.758869+00 +4e67e8a7-d04e-45d5-b9dd-16a08f4fad58 {"role": "leaf"} Ethernet9/1 \N t \N \N 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.77121+00 +b7c85f84-e855-46d1-a5d8-7839384c9398 {"role": "leaf"} Ethernet10/1 \N t \N \N 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.783574+00 +67dad6d7-9b0e-4dc0-9261-3ac79b72adc5 {"role": "leaf"} Ethernet11/1 \N t \N \N 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.795915+00 +0f566e41-3b04-439a-a876-6dd556d14503 {"role": "leaf"} Ethernet12/1 \N t \N \N 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.808315+00 +255a9fff-e6cd-4cec-b4d4-1a3f5d572435 {"role": "leaf"} Ethernet13/1 \N t \N \N 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.820624+00 +ddec5918-9c46-4272-851c-0cd43cd6eda0 {"role": "leaf"} Ethernet14/1 \N t \N \N 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.833049+00 +a6a98b4b-5214-4cdd-be68-0f567c56f509 {"role": "external"} Ethernet15/1 519dcb44-f181-4dfa-adc2-caf8b8ab39a7 t \N \N 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 63f49870-8541-4734-9afd-8fb33340bb9f 372db88d-08ba-4fdd-b3c3-0ece833519be 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.278422+00 +db6b2d90-7792-4ad1-b8d7-d84b3dbed0ac {"role": "external"} Ethernet16/1 a57b40b0-42ac-458b-a474-f09ddfb4fd6b t \N \N 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 52e07d80-bf0a-4648-84a4-fc87513a27c3 ae77c6bb-1db5-4c78-92c8-cfa09b03d6a9 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.318907+00 +d9f730a2-ce98-4c34-9db9-56be5abba079 {"role": "leaf"} Ethernet4/1 a6d24885-2024-48ca-ba60-727802474b2d t \N \N 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 144026a1-fc97-4501-b0db-d2096de6b97e 7ee21d7a-27d6-4bd0-ae2f-a21c08afeea8 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.784626+00 +be42d85a-b6b5-4126-b6e2-dfcd99117a31 {"role": "leaf"} Ethernet5/1 93913062-d728-494d-b5bf-61f55e4302c0 t \N \N 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 0c9c727e-4e43-43cf-92e1-c31cc32a91c2 041a53b4-aec2-4c30-8df2-0df21ae14547 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.940515+00 +9f23a5eb-3af2-45b2-b71b-8dc940ac6b70 {"role": null} Ethernet30/1 \N t \N \N 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513626+00 +e91e1b9f-27e2-4204-9521-d2c577b96f03 {"role": null} Ethernet31/1 \N t \N \N 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513684+00 +31fd84f4-19ec-48f7-835a-8f213a3e0868 {"role": null} Ethernet32/1 \N t \N \N 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513742+00 +cf13f4a8-e6a0-40e6-b72b-d578c7ab4f68 {"role": null} Ethernet33/1 \N t \N \N 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.5138+00 +7bc6d58e-33d6-47e4-a6f1-2c121b7ba839 {"role": null} Ethernet34/1 \N t \N \N 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513858+00 +f7ebd63f-6ad5-4b7f-995a-172aa495c945 {"role": null} Ethernet35/1 \N t \N \N 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513917+00 +8c20f08f-b45d-422b-956a-7af256339e76 {"role": null} Ethernet36/1 \N t \N \N 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.513976+00 +11e7da90-4524-408d-862e-36c82b44ecba {"role": null} Ethernet37/1 \N t \N \N 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514034+00 +57a1f5c7-2b68-45a9-b223-d7ef8b5714ac {"role": null} Ethernet38/1 \N t \N \N 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514092+00 +20fbc61c-e5de-4912-b9f7-060c501d3ac3 {"role": null} Ethernet39/1 \N t \N \N 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.51415+00 +c91d8f71-cdbf-4a6a-98de-36be76c43ac9 {"role": null} Ethernet40/1 \N t \N \N 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514209+00 +489b0742-9760-4168-848c-5649dc710bcb {"role": null} Ethernet41/1 \N t \N \N 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514288+00 +ff0c3f7f-c508-4ff2-906a-aa78183d21eb {"role": null} Ethernet42/1 \N t \N \N 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514349+00 +66b14651-91c4-4900-9c13-75b1999873f5 {"role": null} Ethernet43/1 \N t \N \N 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514408+00 +e133157e-ce5e-4acd-9153-5c52b4dc6413 {"role": null} Ethernet44/1 \N t \N \N 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514466+00 +5c9870ad-7cfd-483b-8302-cf487f35e915 {"role": null} Ethernet45/1 \N t \N \N 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514524+00 +22ebccf8-060d-4dde-87bb-a09c8ec6ef05 {"role": null} Ethernet46/1 \N t \N \N 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514582+00 +903f9ff7-7bd8-44b2-bba2-f23781073afd {"role": null} Ethernet47/1 \N t \N \N 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514639+00 +2f025b37-244f-4fb6-9c89-fa12b7f3819a {"role": null} Ethernet48/1 \N t \N \N 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514699+00 +fe16536d-83da-4e25-835e-b4f24c83c9b5 {"role": null} Ethernet49/1 \N t \N \N 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514757+00 +07707358-d283-47c9-85b6-49f30f933604 {"role": null} Ethernet50/1 \N t \N \N 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514816+00 +1e8afb6d-7702-4ae3-a8c1-370fca49d6dd {"role": null} Ethernet51/1 \N t \N \N 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514874+00 +549ac7ce-270c-405e-9407-5f8a6093c10e {"role": null} Ethernet52/1 \N t \N \N 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514932+00 +974692d5-1ce9-48bf-9ce8-ebfd252b3478 {"role": null} Ethernet53/1 \N t \N \N 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.514991+00 +15060a00-6903-48c9-af68-fcaadf4cba33 {"role": null} Ethernet54/1 \N t \N \N 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515049+00 +48033549-b1df-4034-940e-d605b88487c0 {"role": null} Ethernet55/1 \N t \N \N 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515107+00 +80606e67-02b7-4f8f-a1f8-f027e6e7a33e {"role": null} Ethernet56/1 \N t \N \N 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515169+00 +15faabab-a5c5-4ac7-b2fa-6ca991fb6751 {"role": null} Ethernet57/1 \N t \N \N 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515228+00 +120a0685-8ec6-41ec-a5d9-cc48a12f9338 {"role": null} Ethernet58/1 \N t \N \N 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515286+00 +7337b15c-ecb6-40fb-ad27-18482f6dc2ad {"role": null} Ethernet59/1 \N t \N \N 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515345+00 +feb817d7-22ad-4fb8-85af-4ff6becb2baf {"role": null} Ethernet60/1 \N t \N \N 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515404+00 +185975c9-3766-4217-b4fd-c1acbbfd62a7 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.515463+00 +b3e7e0a9-ccd2-4b10-8dfa-ab863a059383 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.57011+00 +602987d3-5d8f-4e0a-8648-553e5ae7fce4 {"role": null} Ethernet1/6 \N t \N \N 0001999999999999Ethernet000006............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.091903+00 +a1888ee6-a6b7-4f1b-b1e0-513b163cbe43 {"role": null} Ethernet1/7 \N t \N \N 0001999999999999Ethernet000007............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.091962+00 +b285c2a6-336c-4e63-bad2-7fce02f9c9f3 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.116882+00 +3ced15f8-5cfa-4c7f-aa1e-ccb5776a1249 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.143037+00 +a0c12904-a85e-4aef-a652-a9ca0486fe9d {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.155332+00 +f7fd0590-9338-4a8e-be86-aa2c63c2e040 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.16753+00 +a0a55276-b182-4295-a4f5-c37e1febae6f {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.180071+00 +bc1bc270-ca20-4af0-aa7f-c7e303820c85 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.946905+00 +3dd0ab27-5cfd-4a3e-aad3-016b4748df5e {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:24.995669+00 +eff7054b-9445-4fac-8ed4-f9770bd851c9 {"role": null} Ethernet1/8 \N t \N \N 0001999999999999Ethernet000008............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092022+00 +94257b1a-5514-4c25-9c33-20cdf85bad45 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.129418+00 +a47a7714-c3cc-465c-8415-98c2f34912ff {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.192549+00 +4f02b344-176c-40bf-8e53-49709a4f81ec {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.204979+00 +7256e8b1-85a7-47af-aab9-63b612fa77d3 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.217295+00 +e421ab8b-08d2-4f57-a795-f26bcbf6695b {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.22984+00 +37f4142a-e334-4799-b828-2c0bd3418791 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.242253+00 +ea05cd72-c461-41be-be89-0740db65e1e9 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.254537+00 +91c62815-7a35-46a2-b1bc-060fbadc8f86 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.267246+00 +1ff9d198-7473-44ac-931e-ec194c7ca57f {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.279814+00 +e2e10349-01f0-48a4-8356-0004bfbe932a {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.292115+00 +f10b366b-981c-458d-8a43-7d80f3e34a1c {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.30485+00 +8a0d839e-3261-4c0e-8a54-e1a03e1f2e2c {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.317391+00 +6d7bde9f-29c7-4f4f-954e-3b31338c5dcc {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.329677+00 +0aff9dd9-512d-42e4-978c-4b0e6a233ab1 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.34197+00 +93c1144c-f899-4b25-81a1-68f58f68f7c6 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.354618+00 +36b748d7-2e31-40a4-94ec-1e7de782509e {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.367244+00 +adad0da8-f2b7-4a22-8da7-0eee1d223fe0 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.380318+00 +6b68385c-3170-4a02-a9c8-835c72deeba9 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.41929+00 +fb146dfb-2a8f-4991-a07f-a009648ac7a0 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.474194+00 +92ef8c7e-4300-46eb-b134-39e61c633a34 {"role": null} Ethernet1/9 \N t \N \N 0001999999999999Ethernet000009............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092082+00 +3b4965b7-f851-4088-80b6-7fae135da37b {"role": null} Ethernet1/10 \N t \N \N 0001999999999999Ethernet000010............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092142+00 +0b45c18f-ac58-48ef-a382-b7cbe1d6d370 {"role": null} Ethernet1/11 \N t \N \N 0001999999999999Ethernet000011............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092203+00 +d8dd3ce6-6ce7-49a0-920f-4369bd53b642 {"role": null} Ethernet1/12 \N t \N \N 0001999999999999Ethernet000012............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092263+00 +e60cf06d-f12d-471c-97e1-4c7d1748ce20 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.757316+00 +9d733379-68c8-4f43-a748-c6c94ed93961 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.769701+00 +abc4111c-7a32-4602-b243-13e6ebe6922d {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.782051+00 +4af6fed4-770b-4513-bfe4-6f9f2664b1b6 {"role": null} Ethernet1/13 \N t \N \N 0001999999999999Ethernet000013............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092322+00 +a2b7a6d9-db18-4226-968c-c3be18968d59 {"role": null} Ethernet1/14 \N t \N \N 0001999999999999Ethernet000014............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092382+00 +dc6139bb-a8c1-4d21-af4f-b19269ae3b5b {"role": null} Ethernet1/15 \N t \N \N 0001999999999999Ethernet000015............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.09244+00 +2829d904-99cf-4100-9b89-ca40bdafd284 {"role": "edge"} Ethernet1 aec8c705-f321-4d0c-9a66-29ca6e23995b t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 7e3e8467-fe1a-4b20-8ee3-e8e6b65a799d c4f8906a-1d14-4ab2-8332-a5406c85717d ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.538563+00 +0d1e5e47-8de9-409a-abac-2ec326073a5b {"role": null} Ethernet1/16 \N t \N \N 0001999999999999Ethernet000016............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092499+00 +b160bc1f-8ab8-44e0-802a-0afd79b1f00a {"role": null} Ethernet1/17 \N t \N \N 0001999999999999Ethernet000017............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092558+00 +06b11a10-9918-4d96-9194-ccc202f9aa5d {"role": "edge"} Ethernet1 8cd7bfcf-9a6f-4605-843a-418736ad7c5e t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 0d494c9d-809d-4d27-9008-04c3fc882215 9c1846a0-7565-47a6-b0c6-9502384c8582 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.707407+00 +7d483557-f54d-4df8-ad84-04ac3a8cbadd {"role": null} Ethernet1/18 \N t \N \N 0001999999999999Ethernet000018............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092617+00 +a4399e80-5165-43fe-8a7f-b553b239caa5 {"role": null} Ethernet1/19 \N t \N \N 0001999999999999Ethernet000019............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092676+00 +36454c21-2c2d-49a8-b178-2abb2b744a36 {"role": null} Ethernet1/20 \N t \N \N 0001999999999999Ethernet000020............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092734+00 +a6d24885-2024-48ca-ba60-727802474b2d {"role": "edge"} Ethernet2 d9f730a2-ce98-4c34-9db9-56be5abba079 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 4443ff8d-44f0-4cd3-b358-983aa247e543 7ee21d7a-27d6-4bd0-ae2f-a21c08afeea8 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.788659+00 +a52d4120-8fba-42af-ae4b-90b650d9f191 {"role": null} Ethernet1/21 \N t \N \N 0001999999999999Ethernet000021............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092793+00 +fec16bba-42be-48c2-86a4-794a78344d28 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.58216+00 +61660fb2-6201-48eb-9a85-bc8d6da38e32 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.636931+00 +7ed14ce3-a6f3-4874-a107-1539262eb307 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.794627+00 +e1625d25-949d-4677-8d42-a6894ce31f0c {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.806948+00 +48a516f1-fe53-4ff1-8806-3e3a0d6a2a7b {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.819193+00 +7769ad2b-bd9f-48bd-acce-125468ebe7b0 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.831363+00 +fd99e8e5-f711-40ff-a3e2-bb2435085721 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.84346+00 +9a6bc9c9-d5f7-4e08-9a97-a535d8c16856 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.855784+00 +23f506f7-033b-4c11-ad4b-821747c35ba5 {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.86799+00 +6e4a22d8-f3b0-4a2f-bc5c-8e385d987876 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.880139+00 +9cdcb8e4-42a6-4150-9fc6-d64cfd9f1ad5 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.892281+00 +ac65b1d5-2936-4195-9e3a-79074ab32caf {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.904413+00 +6419478a-97de-4778-b81c-87310c8826a7 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.916542+00 +a8da7c27-6110-4fce-af74-64a8f5275123 {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.928763+00 +4aff985e-94c5-4ed4-8b45-bc85d9e3515e {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.941417+00 +804e81d6-65de-43ce-8228-537bf386f9d5 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.953918+00 +8f182240-7047-412d-8eee-007af4cc2749 {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.966461+00 +d719569c-abc5-4985-88d5-2e20ab04c844 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.978882+00 +1e08765b-1835-4359-89b5-9d339da824c2 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:25.991179+00 +004224cf-4d98-4291-ae57-e97284e1ea24 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.003553+00 +3d1ea0f2-6897-44ad-8a5d-cf5063ea216f {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.016071+00 +23dde101-c853-4e47-93a9-64f23ff80c27 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.039834+00 +c69e4208-2ae7-48fe-9f38-da57b8fd8fd7 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.066868+00 +3dd352de-d483-4271-ba43-479372daf1d9 {"role": null} Ethernet1/22 \N t \N \N 0001999999999999Ethernet000022............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092851+00 +3e2baef7-2c2d-4fe9-94b4-bdbcd63ad205 {"role": null} Ethernet1/23 \N t \N \N 0001999999999999Ethernet000023............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092909+00 +7067c65d-69f3-461d-871d-84b7bf53dfef {"role": null} Ethernet1/24 \N t \N \N 0001999999999999Ethernet000024............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.092967+00 +8f0d21ad-863b-4087-b32b-34d9732748cc {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.32891+00 +935c4ed7-9dd0-407d-aa92-6f5426230669 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.341138+00 +23ab6373-5978-4f28-98de-bc59ef62f225 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.353461+00 +94e77eab-20e4-41a2-90a3-faae6898c63b {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.365971+00 +b9c9e29d-6593-4c9b-9025-fe997d3e7600 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.3786+00 +f45835e5-81de-480e-ac69-d0a29e01ff60 {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.391177+00 +e6658cc4-9eb6-4d09-a8b0-7e20003887aa {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.403767+00 +82ad6410-1e78-48c9-b7f2-e9e68c75ad55 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.428808+00 +692cd511-47d8-4f3a-bf53-cece5e4d607a {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.441681+00 +96af3c8e-498f-4e09-b5b1-bd8d3f2ac2b1 {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.454415+00 +76901273-caf2-49fd-bc2d-6244d1b7e044 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.467197+00 +236b54ed-645f-465d-9e65-98685a215b25 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.480316+00 +27a7ad59-d23d-4492-9891-f849fe74ad2c {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.493033+00 +c62c5b07-fc09-42c2-90eb-b4ebb664923e {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.505953+00 +828d841b-c4c7-4fab-9d8d-b65fc70afbf7 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.518696+00 +2fb41b91-76f6-4f66-9cb6-f7c8bc9b2a3a {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.159541+00 +2de82db3-727d-4f38-886b-e68c98a877c6 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.20834+00 +81b8ddbf-a376-4ce7-aea9-ce07f5eb9d93 {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.416161+00 +f7bc3d69-962b-4d65-8afc-eb168e53142d {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.531391+00 +2e057b3d-124a-4ce3-b864-11a2f3b2ffef {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.545421+00 +476383b0-e364-4367-a8d0-d4e8760e3337 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.559218+00 +dd849681-108e-4393-94d2-2a70611fb6d3 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.573099+00 +024d6c46-628c-46af-b4e1-2532f0b54ddf {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.587031+00 +9e132799-fbb9-4045-a078-ad9405e4468e {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.600979+00 +a63d171b-f494-47be-b807-b536ca1e2e83 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.627839+00 +f2cbef78-3bf9-495d-8617-1cdbdcd0dc8c {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.656668+00 +1b796a60-03a8-4622-87f8-c70dc5e32b4a {"role": null} Ethernet1/25 \N t \N \N 0001999999999999Ethernet000025............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093026+00 +8bf502fd-5f49-4ae9-8076-771f4b1ac3b4 {"role": null} Ethernet1/26 \N t \N \N 0001999999999999Ethernet000026............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093085+00 +0a957826-d74c-4049-ba79-0adbf3978d2d {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.748852+00 +f73916f6-cac7-435f-b003-e4059597abe3 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.796378+00 +d4ac28f2-e7cc-45e1-881a-0c6f9848a154 {"role": "edge"} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.920728+00 +64de1f6e-ba6a-4819-8f7b-88acd21cd0f7 {"role": "edge"} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.93373+00 +a32eb237-c9ba-478a-8289-42a67cbf2da0 {"role": "access"} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.946742+00 +0f131879-0cd1-415f-8be2-6bf1681993a9 {"role": "access"} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.960167+00 +f49c2332-6282-4366-9e54-97e0bbf36f46 {"role": "access"} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.973632+00 +213c14d5-e52f-4cda-b5f0-0d0eefa26cfa {"role": "access"} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.986505+00 +1c66c661-eebf-4b71-911d-19dc079a32e7 {"role": "access"} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:26.999944+00 +2f534cc7-4b5a-4528-9513-3728321a17fd {"role": "access"} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.012778+00 +2f8ec301-05c8-482b-8eec-838e1199d875 {"role": "access"} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.025539+00 +ef787081-a45e-4f72-b07f-1768a9288d4d {"role": "access"} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.038372+00 +8771441e-a7d3-436c-ad3f-ffc0ba66bbdf {"role": "access"} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.051489+00 +cf09a4d6-d559-46cc-a1e7-9f77cc2b5821 {"role": "access"} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.064492+00 +c004f567-6946-4671-9f25-a87483829774 {"role": "access"} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.077341+00 +0a4a688f-3706-4eb6-89b3-16e088562e64 {"role": "access"} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.090388+00 +c1a1fcf9-5518-4f9f-816e-7fc0ce7af87d {"role": "access"} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.103285+00 +04e1d36d-0644-4746-b0d4-a29ffcd67b49 {"role": "access"} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.115904+00 +c899c1c2-fc36-4fad-9172-400aaf5090d3 {"role": "access"} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.129132+00 +ad0b1722-e9da-40b6-8fcc-2fb447c5a6db {"role": "access"} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.14257+00 +40d354bf-7cb1-4eac-8957-17eaa902d304 {"role": "access"} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.155222+00 +7f4700c9-d546-42e7-a362-ce444c8a19d8 {"role": "access"} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.168349+00 +097bc450-ce22-41c6-9751-115436c81027 {"role": "access"} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.181204+00 +ca9be7f0-5eb9-4b76-acc6-86c72e6717a8 {"role": "access"} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 10gbase-x-sfpp f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.193996+00 +18e343cb-7433-4c6e-bc93-fad6a17d09c3 {} vlan1000 \N t \N \N 9999999999999999vlan001000............ virtual f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.218023+00 +896458b3-532e-41cd-8d34-d3a3b1f4a065 {} vlan99 \N t \N \N 9999999999999999vlan000099............ virtual f \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.243908+00 +a1e88275-4a5c-4b89-8017-4ad695ff14f8 {"role": "peer"} Ethernet1/1 db739229-5dcd-4d05-94f5-52bd234647b9 t \N \N 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 70715842-f396-4d57-af22-4df7ad3146ee a7240ec2-73f8-43d9-a0c6-297e24d40893 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.266488+00 +9188b1c9-d827-437d-ac75-59561877b64c {"role": "edge"} Ethernet2 aa11d7f2-7d54-41c5-8693-69d32ef6e5b0 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 76ddbe61-341c-444a-9ef6-0e8b01dda31e 5df3deee-42e3-4a74-a6d5-eba60f1a3816 f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.097125+00 +024ee9d7-1569-41ed-9758-9b9afdc3bd2d {"role": null} Ethernet1/27 \N t \N \N 0001999999999999Ethernet000027............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093144+00 +2aa91dab-b223-48ff-96de-03e1a71ffa56 {"role": "peer"} Ethernet2/1 24d7e176-9284-4e90-ae96-383a2133cb1c t \N \N 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 37552a36-059b-4a40-a733-4df93c096c58 c66391d2-fce2-4b81-adf9-03a1649f8d7e 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.447768+00 +3f5c4a94-1374-4de8-9d41-f9f5e143bbeb {"role": null} Ethernet1/28 \N t \N \N 0001999999999999Ethernet000028............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093203+00 +24d7e176-9284-4e90-ae96-383a2133cb1c {"role": "peer"} Ethernet2/1 2aa91dab-b223-48ff-96de-03e1a71ffa56 t \N \N 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 8c54f80e-7dbc-4d09-8ccc-ca12d1d6aad5 c66391d2-fce2-4b81-adf9-03a1649f8d7e 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.451827+00 +b572e507-1492-4722-be8a-d1668ff1011c {"role": "leaf"} Ethernet3/1 269811e4-2d04-4396-8eab-3bffb1556a60 t \N \N 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 10e3cc64-e468-43fb-b754-992f4698fa94 defbde0a-546c-48a0-9f50-5638ae51e3f3 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.615373+00 +269811e4-2d04-4396-8eab-3bffb1556a60 {"role": "edge"} Ethernet2 b572e507-1492-4722-be8a-d1668ff1011c t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 b5d649c1-2970-4c05-8a98-6b736969dfec defbde0a-546c-48a0-9f50-5638ae51e3f3 ec08f4ed-e461-4aac-8015-9a1daa49fae6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.619973+00 +13971747-fc37-40a0-b231-e1e30711d72a {"role": null} Ethernet1/29 \N t \N \N 0001999999999999Ethernet000029............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093262+00 +2e43df0e-86aa-498b-bf73-e22af4baa0f0 {"role": "leaf"} Ethernet5/1 6f96fac1-0bbc-4544-9292-fb437ed9e73e t \N \N 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 6f4b127d-6f20-4e95-b7c4-279cf62b1d5c 6f30cd42-bf5f-447b-b7fe-b04a09513aa1 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.863362+00 +290d631a-fcb3-42f0-ba16-9b92e14ed00a {"role": null} Ethernet1/30 \N t \N \N 0001999999999999Ethernet000030............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.09332+00 +6f96fac1-0bbc-4544-9292-fb437ed9e73e {"role": "edge"} Ethernet1 2e43df0e-86aa-498b-bf73-e22af4baa0f0 t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 3932d6c9-91d9-4720-b58f-93eeded5139a 6f30cd42-bf5f-447b-b7fe-b04a09513aa1 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.867334+00 +93913062-d728-494d-b5bf-61f55e4302c0 {"role": "edge"} Ethernet2 be42d85a-b6b5-4126-b6e2-dfcd99117a31 t \N \N 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 4 8951ff1f-90fa-4d01-8355-ab22253b48a2 041a53b4-aec2-4c30-8df2-0df21ae14547 1642541a-a832-42b8-b80b-c661b9fdd9dc \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:27.944464+00 +6ee18771-590a-4da9-8e06-f42a0c1346ea {"role": "edge"} Ethernet1 571a071c-a01c-4ba8-b749-415d9c95665b t \N \N 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 4 75d64a14-b525-4626-bc2d-efb5214bb043 0d6832a5-71ff-412b-991c-58392176c200 f23f0755-7e34-4610-a5af-d21f4d669186 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.021736+00 +aa11d7f2-7d54-41c5-8693-69d32ef6e5b0 {"role": "leaf"} Ethernet6/1 9188b1c9-d827-437d-ac75-59561877b64c t \N \N 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4 2b62e0fb-def6-4741-92df-ea23c5fceffb 5df3deee-42e3-4a74-a6d5-eba60f1a3816 16745b0e-5964-4f3e-99e3-aa1646f275f5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.093282+00 +14ea3cf8-07a6-4363-a61b-284288cda5c4 {"role": "external"} Ethernet16/1 1fad126f-3456-426d-99be-a129522c0afc t \N \N 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 97 21871fbd-9151-4870-bc10-8502e857894d 76bc6873-315a-429f-be61-14593961749f 45eac4b1-0a5a-4146-88b5-d0118ba22a0e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:28.23829+00 +a4e3f9e9-4e7e-4f45-a14e-15be6a24ac3d {"role": null} Ethernet1/31 \N t \N \N 0001999999999999Ethernet000031............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093378+00 +a3f02fcf-0877-4570-a5e1-fe74f175ffbd {"role": null} Ethernet1/32 \N t \N \N 0001999999999999Ethernet000032............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093435+00 +cdbfc9cb-24e0-4400-80e2-5b1e28653983 {"role": null} Ethernet1/33 \N t \N \N 0001999999999999Ethernet000033............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093494+00 +4ddbe4ff-6b1c-4f0c-a830-a36cf149bad4 {"role": null} Ethernet1/34 \N t \N \N 0001999999999999Ethernet000034............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093551+00 +e9a7a1be-ac31-46ee-8523-3df7a79479a1 {"role": null} Ethernet1/35 \N t \N \N 0001999999999999Ethernet000035............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093609+00 +80b9c5ad-a258-4bca-83b1-0d2d1850ba88 {"role": null} Ethernet1/36 \N t \N \N 0001999999999999Ethernet000036............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093667+00 +8d317520-6f42-4d99-ae82-638a8cbf01a3 {"role": null} Ethernet1/37 \N t \N \N 0001999999999999Ethernet000037............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093725+00 +d9875604-8c1b-4098-ba4a-a0cc6e4090a5 {"role": null} Ethernet1/38 \N t \N \N 0001999999999999Ethernet000038............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093783+00 +eabe7c7e-7f58-4e3f-84a7-0afa7275cb1f {"role": null} Ethernet1/39 \N t \N \N 0001999999999999Ethernet000039............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093841+00 +c19396b8-653c-4f73-868d-663a850585d4 {"role": null} Ethernet1/40 \N t \N \N 0001999999999999Ethernet000040............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093899+00 +e88aae56-41cb-4b2d-bf74-db81406b3256 {"role": null} Ethernet1/41 \N t \N \N 0001999999999999Ethernet000041............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.093958+00 +84c703c4-fef1-4a03-8637-54fc7ce18476 {"role": null} Ethernet1/42 \N t \N \N 0001999999999999Ethernet000042............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094016+00 +943abada-98ed-4fb8-b307-6d6690aa8984 {"role": null} Ethernet1/43 \N t \N \N 0001999999999999Ethernet000043............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094074+00 +7c1b3852-e269-4b02-a24e-56b66880af45 {"role": null} Ethernet1/44 \N t \N \N 0001999999999999Ethernet000044............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094132+00 +be3e6acf-67a1-46c3-af65-9003431da220 {"role": null} Ethernet1/45 \N t \N \N 0001999999999999Ethernet000045............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.09419+00 +738c8517-4d9a-4404-bf18-285851aacc0d {"role": null} Ethernet1/46 \N t \N \N 0001999999999999Ethernet000046............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094249+00 +9271b3da-1727-421c-9b99-1b4882104402 {"role": null} Ethernet1/47 \N t \N \N 0001999999999999Ethernet000047............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094342+00 +73ace97c-c804-41fd-a8df-226ea57cb0e4 {"role": null} Ethernet1/48 \N t \N \N 0001999999999999Ethernet000048............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094403+00 +b077d24a-98da-49e4-9f18-7bfbb3e3b412 {"role": null} Ethernet1/49 \N t \N \N 0001999999999999Ethernet000049............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094462+00 +c45a131e-d64f-4ca7-9b2f-0f6b723a9222 {"role": null} Ethernet1/50 \N t \N \N 0001999999999999Ethernet000050............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094522+00 +6ad92579-e368-42a1-b4e8-b23fdb4fca53 {"role": null} Ethernet1/51 \N t \N \N 0001999999999999Ethernet000051............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.09458+00 +22d86ec0-a5e9-4271-aa74-0d9443563e2e {"role": null} Ethernet1/52 \N t \N \N 0001999999999999Ethernet000052............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094638+00 +a5455d31-d489-4bd1-9a96-d96a9f318cc9 {"role": null} Ethernet1/53 \N t \N \N 0001999999999999Ethernet000053............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094696+00 +d8472e1c-e99d-4d89-9695-ade4d5d6da67 {"role": null} Ethernet1/54 \N t \N \N 0001999999999999Ethernet000054............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094754+00 +0510144f-0198-47f7-b068-81c3b8ae1842 {"role": null} Ethernet1/55 \N t \N \N 0001999999999999Ethernet000055............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094811+00 +2c526215-533b-4885-818d-9de947697b5d {"role": null} Ethernet1/56 \N t \N \N 0001999999999999Ethernet000056............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094869+00 +869b35e7-1537-4a6c-974f-fab9bb03d82c {"role": null} Ethernet1/57 \N t \N \N 0001999999999999Ethernet000057............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094927+00 +3a4e3e05-3323-419e-8cae-dc4e1777446c {"role": null} Ethernet1/58 \N t \N \N 0001999999999999Ethernet000058............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.094985+00 +78c61204-6cac-4a87-a6f5-1a5e38cd39a0 {"role": null} Ethernet1/59 \N t \N \N 0001999999999999Ethernet000059............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095043+00 +8b003076-879c-446f-8df3-5f48a2a08aa6 {"role": null} Ethernet1/60 \N t \N \N 0001999999999999Ethernet000060............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095103+00 +7763f1f1-3b50-4686-9cd9-2ab75de8d56d {"role": null} Ethernet1/61 \N t \N \N 0001999999999999Ethernet000061............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095163+00 +6f8530c4-8a70-4714-aa2c-528eabf88684 {"role": null} Ethernet1/62 \N t \N \N 0001999999999999Ethernet000062............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095221+00 +1ba13b5b-c087-455a-aa5e-62292c4560e1 {"role": null} Ethernet1/63 \N t \N \N 0001999999999999Ethernet000063............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095279+00 +612d7b99-0ab0-44eb-8e84-1c9a5e003794 {"role": null} Ethernet1/64 \N t \N \N 0001999999999999Ethernet000064............ 1000base-t f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095337+00 +b4761083-ea82-4e50-b660-55ae08b70980 {"role": null} mgmt0 \N t \N \N 9999999999999999mgmt000000............ 1000base-t t \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.095395+00 +ce5a825e-8eeb-4578-97ba-567789f55b07 {} loopback0 \N t \N \N 9999999999999999loopback000000............ virtual f \N \N \N b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.340277+00 +8bc1794a-046c-43cf-99d2-b5a0de048b52 {"role": null} ge-0/0/1 \N t \N \N 0000000099999999ge-000001............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.452663+00 +13979e0d-aae6-403d-aff8-2675ca94e556 {"role": null} ge-0/0/4 \N t \N \N 0000000099999999ge-000004............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.452857+00 +87f8c1f4-637d-499d-ba2e-bb666ec412c2 {"role": null} ge-0/0/5 \N t \N \N 0000000099999999ge-000005............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.452916+00 +c14bee12-a14b-45bf-8b39-d4b0691ec65e {"role": null} ge-0/0/6 \N t \N \N 0000000099999999ge-000006............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.452975+00 +51b18d02-fafa-43bd-8191-84238059c939 {"role": null} ge-0/0/7 \N t \N \N 0000000099999999ge-000007............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453035+00 +4cca419f-bb89-4b40-b0fe-d60a24eeec0e {"role": null} ge-0/0/8 \N t \N \N 0000000099999999ge-000008............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453094+00 +d20db3be-0556-4665-81c7-2f974576a865 {"role": null} ge-0/0/9 \N t \N \N 0000000099999999ge-000009............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453152+00 +f62a72ea-6746-4431-8dfd-d51b24092a5f {"role": null} ge-0/0/10 \N t \N \N 0000000099999999ge-000010............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.45321+00 +2ceea67f-93e8-47db-9085-d7d5bb0dc95c {"role": null} ge-0/0/11 \N t \N \N 0000000099999999ge-000011............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.45327+00 +61a317eb-3f84-40f2-85d6-450497508af7 {"role": null} ge-0/0/12 \N t \N \N 0000000099999999ge-000012............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453329+00 +f8b82251-a973-48d7-92ee-721f2f9942f9 {"role": null} ge-0/0/13 \N t \N \N 0000000099999999ge-000013............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453389+00 +5727edbe-b99d-4d85-87b4-aca70c5999ce {"role": null} ge-0/0/14 \N t \N \N 0000000099999999ge-000014............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453448+00 +e2aad99b-d1e6-4b12-91cd-f71a8bad40ee {"role": null} ge-0/0/15 \N t \N \N 0000000099999999ge-000015............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453507+00 +3b3e7b5b-fae1-4846-aad1-a25eb90092e8 {"role": null} ge-0/0/16 \N t \N \N 0000000099999999ge-000016............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453564+00 +98434bb8-1e5b-4d0d-b4fb-700e3727e3f9 {"role": null} ge-0/0/17 \N t \N \N 0000000099999999ge-000017............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453622+00 +ee7a571e-22a9-47f7-8d0b-e66506ee4451 {"role": null} ge-0/0/18 \N t \N \N 0000000099999999ge-000018............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453679+00 +e7471667-9eb3-4c89-882a-0d2a7e4ed5dc {"role": null} ge-0/0/19 \N t \N \N 0000000099999999ge-000019............ 1000base-t f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453737+00 +cc63faf5-e1af-433a-a38f-88699779021c {"role": null} fxp0 \N t \N \N 9999999999999999fxp000000............ 1000base-t t \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.453795+00 +0b7b58e9-e4ae-464d-98cd-c6b84cb1900c {} lo0 \N t \N \N 9999999999999999lo000000............ virtual f \N \N \N 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.56725+00 +a022ef94-442c-4cac-a262-ff748f0304c8 {"role": null} Ethernet1 \N t \N \N 9999999999999999Ethernet000001............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670382+00 +30f721ea-611e-4ada-8df8-f0404120a0a3 {"role": null} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670638+00 +ec98a178-739e-458e-bf52-3920b5dec7a6 {"role": null} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670699+00 +b94ccf74-a131-42e2-97f8-9e1cd4e56d0d {"role": null} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670759+00 +f71d67fd-98da-4601-ba49-a8ee944e182a {"role": null} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670818+00 +c6135a79-6137-4883-973b-42b7778d2989 {"role": null} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670877+00 +9b7706d3-a252-4ac0-877b-d464db26e6b2 {"role": null} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670936+00 +fbf8b6d0-21e6-452a-b083-a63e9cf7b3fe {"role": null} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.670994+00 +040e44a9-aa11-4027-b554-6e13670a5cc7 {"role": null} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671054+00 +783c357d-1fa9-428f-9189-cac887703b12 {"role": null} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671113+00 +5908461e-4480-4d43-bde7-9b1777584f5d {"role": null} ge-0/0/0 17950897-4131-4efa-9a43-ea97f75fe2a5 t \N \N 0000000099999999ge-000000............ 1000base-t f 4 aa2dac7c-7288-4530-9fc2-9180d4a76a46 7d7d36b3-b6af-40bb-b5c2-0a5216ca47b5 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.500321+00 +c60ff405-f8f1-4b95-9c0b-f157e1c659b5 {"role": null} Ethernet2 9892d575-8d82-4d82-91e0-02b958d125e7 t \N \N 9999999999999999Ethernet000002............ 1000base-t f 4 1dd0caa3-eabb-460f-ab78-ccef99f89ba9 0a5e3a07-e9aa-47a2-96ab-11dffa276852 b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.591006+00 +b5f22608-97ba-42ad-8a43-93cc0912cc87 {"role": null} Ethernet3 e1d27cd6-5924-45a5-b5b4-6c90e24e6fc5 t \N \N 9999999999999999Ethernet000003............ 1000base-t f 4 cf317da9-2002-4feb-be33-12e93eaf8049 e5e15050-9db8-4846-85fa-07092e55f421 b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.631837+00 +0dd3ad87-b4d7-4da3-af3b-2d40b16e03c9 {"role": null} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671171+00 +c66ba4fc-7617-4700-9994-2398708d0dfd {"role": null} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671234+00 +15bd4478-35c6-4e5d-902f-61e67dbdf9cb {"role": null} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671293+00 +81011bad-1b4c-449b-bbff-0231f06f147b {"role": null} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671351+00 +3179bf7a-dc6a-43de-a275-33c3364bd8e6 {"role": null} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671409+00 +82e0da4b-1aaf-4120-913e-e7a9334beb0b {"role": null} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671467+00 +0d85e542-e3d2-494a-97b1-be79415a126f {"role": null} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 1000base-t f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671525+00 +c1adbe8b-58ac-4dc4-8a07-bcb5e90b2611 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.671583+00 +c096eed3-4748-4e8a-abce-02684a2e3ef2 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.775155+00 +7397233b-9d81-4357-9708-36b0e08dd9f1 {"role": null} Ethernet1 \N t \N \N 9999999999999999Ethernet000001............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864164+00 +976a2e15-9143-4af4-906e-4d71a9d6ffcd {"role": null} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.86442+00 +231a3547-2753-4524-9740-275963739f3e {"role": null} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864481+00 +5ded5d25-3c62-4bff-8560-4eabffe3a16b {"role": null} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864541+00 +15b8f4f1-8a4f-4a08-96d2-038549a86e6c {"role": null} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864601+00 +9506248f-c72e-4180-945a-f7ee1b3d8c61 {"role": null} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.86466+00 +377f94f9-6a67-467c-a334-5837a5e12eec {"role": null} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864725+00 +0949c006-8d5d-42ee-9e9e-ec4f6e9a5840 {"role": null} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864784+00 +ee3a40af-4e40-4f41-9845-75f4e7966268 {"role": null} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864842+00 +0ed73561-c941-42bd-9f2a-28d2310793c0 {"role": null} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864901+00 +81ecf873-2278-430d-857d-d37f43ce24a6 {"role": null} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.864959+00 +5effd511-6be7-4e9d-b97b-f186b7751aae {"role": null} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.865018+00 +99dbf6fe-c71c-46d5-9070-b87417e11c96 {"role": null} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.865076+00 +49ac1872-08dc-4e5d-a3e3-174399e809ab {"role": null} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.865134+00 +611da18c-c1c9-4c1b-a2b7-6d1b00fbf767 {"role": null} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.865192+00 +6b396566-d8b3-4798-bc94-e798ea320487 {"role": null} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.865251+00 +a83b767b-e45e-479d-b80f-2b12ba969821 {"role": null} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 1000base-t f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.86531+00 +98cdc1a9-1254-47a3-833a-777a1763cca8 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.865367+00 +4c1d70c1-80d0-4ce8-9b45-b985fce4aff2 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:37.957361+00 +446ef22c-4da8-44e5-83db-7492ebfebf7a {"role": null} ge-0/0/2 \N t \N \N 0000000099999999ge-000002............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.048612+00 +e91d4604-3c73-4357-90b2-2437d39e7f5c {"role": null} ge-0/0/4 \N t \N \N 0000000099999999ge-000004............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.048738+00 +1547fa82-d6f0-490c-80bc-f1c0aa1303c1 {"role": null} ge-0/0/5 \N t \N \N 0000000099999999ge-000005............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.048799+00 +26a0097c-bd93-418d-b9de-1ecfd2010682 {"role": null} ge-0/0/6 \N t \N \N 0000000099999999ge-000006............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.048859+00 +9544362e-67ea-41b7-8fdd-f856279e6f9b {"role": null} ge-0/0/7 \N t \N \N 0000000099999999ge-000007............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.048919+00 +07a73dfb-fb98-4e8f-95b6-09505c869960 {"role": null} ge-0/0/8 \N t \N \N 0000000099999999ge-000008............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.048978+00 +09648e3b-f2e5-4934-a02c-0f46121e898d {"role": null} ge-0/0/9 \N t \N \N 0000000099999999ge-000009............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049036+00 +475e16d7-57d3-43c5-8f55-572bb408308d {"role": null} ge-0/0/10 \N t \N \N 0000000099999999ge-000010............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049095+00 +239070e0-0f28-4c19-b380-75200f5aa16c {"role": null} ge-0/0/11 \N t \N \N 0000000099999999ge-000011............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049155+00 +c9abdcfa-795f-4109-98fb-3d06fe04a5d7 {"role": null} ge-0/0/12 \N t \N \N 0000000099999999ge-000012............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049215+00 +1fc3f0a1-c58f-4a3e-9e51-772db2e74edf {"role": null} ge-0/0/13 \N t \N \N 0000000099999999ge-000013............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049274+00 +e504f8d0-08ba-4d9b-9ee5-762ffb9aea51 {"role": null} Ethernet3 d6683aa3-cc33-43e7-b64e-47f6bc0b45d9 t \N \N 9999999999999999Ethernet000003............ 1000base-t f 4 0029d972-297d-4433-8c3c-a034b41fbb3c a5fc9592-5d20-4bb8-abdf-9e4079ff5d28 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.760594+00 +6ea6d11f-1d2a-45a2-9cd1-40a43afc6efa {"role": null} ge-0/0/1 f9d892b5-2c42-420d-882a-39bbf8205dff t \N \N 0000000099999999ge-000001............ 1000base-t f 4 4c3269e2-f2d7-4a0f-ad1c-f25ae7f7a9e6 ccedb93a-0944-49e0-9bed-95582653d036 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.818025+00 +a02b21d1-4e1a-448f-9292-255de05644c1 {"role": null} ge-0/0/3 350f4cfe-1a31-473d-be9f-2950de48ce82 t \N \N 0000000099999999ge-000003............ 1000base-t f 4 96a1d73e-5ddb-4bae-ac94-afd14ab2a58a 6e3ec838-86b8-4a93-a715-8e25acb18586 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.858988+00 +4f87ecc3-fa69-4748-b725-6903c43100bc {"role": null} ge-0/0/14 \N t \N \N 0000000099999999ge-000014............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049333+00 +333b33a6-29dc-4903-9164-17358543532d {"role": null} ge-0/0/15 \N t \N \N 0000000099999999ge-000015............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049392+00 +a0d48200-19cb-4f6c-bb7f-aa47d68da56e {"role": null} ge-0/0/16 \N t \N \N 0000000099999999ge-000016............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049452+00 +1e45cff4-a44a-40d6-8962-e5e4faa5ac86 {"role": null} ge-0/0/17 \N t \N \N 0000000099999999ge-000017............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049512+00 +297e3fd1-c419-4968-b39a-bb1c073ce8e9 {"role": null} ge-0/0/18 \N t \N \N 0000000099999999ge-000018............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.049571+00 +fb7a99d8-5017-4f43-ac6c-54977d087708 {"role": null} ge-0/0/19 \N t \N \N 0000000099999999ge-000019............ 1000base-t f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.04963+00 +0c1df1a2-c4dc-48a9-946e-59a1e1e3d8d7 {"role": null} fxp0 \N t \N \N 9999999999999999fxp000000............ 1000base-t t \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.04969+00 +e5829593-3de9-4bed-b4d7-1885e116beea {} lo0 \N t \N \N 9999999999999999lo000000............ virtual f \N \N \N 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.186768+00 +61b8a5b7-1c31-49b1-8963-3657f00c7976 {"role": null} ge-0/0/0 \N t \N \N 0000000099999999ge-000000............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282089+00 +7fcae9ae-2c2c-4fd7-8c81-85c4ccd9f3c7 {"role": null} ge-0/0/4 \N t \N \N 0000000099999999ge-000004............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282434+00 +e31b5076-d265-4205-83e3-3259cabb46e0 {"role": null} ge-0/0/5 \N t \N \N 0000000099999999ge-000005............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282493+00 +89c4c140-b7d8-4653-9387-4775e6788b99 {"role": null} ge-0/0/6 \N t \N \N 0000000099999999ge-000006............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282552+00 +ab832f9f-1250-4bbb-957e-fa94e3e9a02d {"role": null} ge-0/0/7 \N t \N \N 0000000099999999ge-000007............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282612+00 +4d4b48b4-386d-4619-a822-9b1554b32292 {"role": null} ge-0/0/8 \N t \N \N 0000000099999999ge-000008............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.28267+00 +7be68971-0f12-4afe-a039-b5b0323062a5 {"role": null} ge-0/0/9 \N t \N \N 0000000099999999ge-000009............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.28273+00 +d71bf37d-1b2e-445f-a35d-efa19005d3b5 {"role": null} ge-0/0/10 \N t \N \N 0000000099999999ge-000010............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282789+00 +b5f9e12f-6d2b-4efb-80c4-254631667e0c {"role": null} ge-0/0/11 \N t \N \N 0000000099999999ge-000011............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282847+00 +2fcfd5cb-20c7-4da4-b6fb-9a65595ff1a5 {"role": null} ge-0/0/12 \N t \N \N 0000000099999999ge-000012............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282906+00 +231282cd-d383-4f27-aa01-80587f44603a {"role": null} ge-0/0/13 \N t \N \N 0000000099999999ge-000013............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.282965+00 +389e11ef-9899-48e7-80c8-4fe443142a06 {"role": null} ge-0/0/14 \N t \N \N 0000000099999999ge-000014............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283024+00 +f04dfdcd-934b-4b16-a10f-9ab5a895366a {"role": null} ge-0/0/15 \N t \N \N 0000000099999999ge-000015............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283082+00 +d02791c8-d378-414b-bbee-a3d95f668a3a {"role": null} ge-0/0/16 \N t \N \N 0000000099999999ge-000016............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283142+00 +0f415338-e0b6-4fc7-93f8-10c354d0a68f {"role": null} ge-0/0/17 \N t \N \N 0000000099999999ge-000017............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283203+00 +2e1ecbd9-070b-4377-a9a9-1cc105697152 {"role": null} ge-0/0/18 \N t \N \N 0000000099999999ge-000018............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283264+00 +4420637c-a40d-47a2-b3d5-d39fad7b2841 {"role": null} ge-0/0/19 \N t \N \N 0000000099999999ge-000019............ 1000base-t f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283322+00 +127cb143-d9ce-4581-aa29-aba7038ead09 {"role": null} fxp0 \N t \N \N 9999999999999999fxp000000............ 1000base-t t \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.283381+00 +7b5da967-926d-4a1f-a28f-7a0787f9a3c6 {} lo0 \N t \N \N 9999999999999999lo000000............ virtual f \N \N \N c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.395358+00 +dd1ed8c2-37cd-442e-931a-0df76e111e8f {"role": null} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.486776+00 +5937d027-e1b0-428e-9755-d87256a9d55f {"role": null} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.486836+00 +a7e95a78-7f8b-4052-966b-de3791f2a091 {"role": null} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.486897+00 +c4d7b78a-f9fc-4bdc-a853-852335865951 {"role": null} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.486956+00 +a1dd7d68-3d0a-48c6-808e-7553dfadfc38 {"role": null} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487014+00 +bffcfb33-b9ee-442a-8aec-14b911ca03b1 {"role": null} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487073+00 +0a2c0717-7b1b-4547-9ef9-10add1fad2e7 {"role": null} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487131+00 +41b49691-5474-4904-8183-7215951e0f19 {"role": null} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487191+00 +60d79ef2-b237-4992-b41b-d1e6d66ff257 {"role": null} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.48725+00 +aa2525c7-6ba8-44f4-8533-5502edc82681 {"role": null} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487308+00 +4d4b89ee-6288-4968-b6f9-a38be8a7c27b {"role": null} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487367+00 +066417fc-3912-4131-9aeb-9fe01cccf08c {"role": null} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487426+00 +7e577d0b-d751-4d2c-9262-15ebb00ea960 {"role": null} Ethernet3 c425ea6a-27ff-4fb7-bffc-41ba6e7fc770 t \N \N 9999999999999999Ethernet000003............ 1000base-t f 4 a6dad074-2def-4089-9e4d-07b2c89a742f 39859f50-d8a1-43af-b769-fde17ea7a0d8 be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.706079+00 +f9d892b5-2c42-420d-882a-39bbf8205dff {"role": null} ge-0/0/1 6ea6d11f-1d2a-45a2-9cd1-40a43afc6efa t \N \N 0000000099999999ge-000001............ 1000base-t f 4 8c47384d-f5ff-493e-959c-eab0a3dac5e6 ccedb93a-0944-49e0-9bed-95582653d036 c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.82232+00 +80bbc8c8-7408-4ac4-9a68-2a9b17be4e23 {"role": null} ge-0/0/3 f697b84b-5d6e-45a5-985f-d6acad3ccdb1 t \N \N 0000000099999999ge-000003............ 1000base-t f 4 2345fae2-d0bb-4f18-8959-434f1a3bac10 179ef5a6-2210-4668-a2a0-a43ee6ebd036 c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.905606+00 +d62252d6-5997-4175-a1b2-361ec24f788c {"role": null} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487485+00 +58ed143d-1075-4dc3-bbf4-5b2143eb7133 {"role": null} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487543+00 +0b091dfd-ded9-4097-af15-06647c0705be {"role": null} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.4876+00 +bd2efc82-c385-4017-aa8d-b5254f571c31 {"role": null} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 1000base-t f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487658+00 +c2c65980-923b-4f84-bab5-04f8c7cf1d3c {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.487716+00 +5fbf4780-3b17-42ad-8073-599fd7ecb159 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.614759+00 +09cca5fe-c052-40e0-8c54-61b7d93d4170 {"role": null} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704439+00 +9336ab32-bd53-47e1-93f8-fa09eab210fb {"role": null} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704499+00 +24cec75c-722b-46be-b00f-2a7d161f1383 {"role": null} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704559+00 +b0f2ae04-cc3b-49b4-bf8e-73295732c41c {"role": null} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704617+00 +e73baeab-10cd-44d6-adb0-89ad8424986e {"role": null} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704676+00 +35a363b5-244b-4eaa-9fc2-142108731a93 {"role": null} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704734+00 +f47f868f-138c-407c-b721-7d903c908cc7 {"role": null} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704792+00 +4f269312-58a8-459d-9ce5-c594be5cbe12 {"role": null} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704851+00 +5c89b95c-ce0b-441b-a6ed-7b65b3f936df {"role": null} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704908+00 +da604f03-8a35-49a8-80b7-3f570697f073 {"role": null} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.704967+00 +37c6aba9-5e04-499c-8927-e8dbe100b7ff {"role": null} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.705025+00 +1beebd1c-0488-4035-b9a9-3aecb60e8abf {"role": null} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.705083+00 +e0b8a6c0-e018-42de-9afc-534b36f8a94c {"role": null} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.705142+00 +a2d45475-355d-434f-aa25-7f2d7ea2c91e {"role": null} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.7052+00 +aeb37b76-dec3-4a6b-9dde-33e85ac30903 {"role": null} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.705258+00 +3996662c-a097-4f23-8077-7c9315a38f92 {"role": null} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 1000base-t f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.705317+00 +4607c36e-8bed-4bf9-ba63-ea05bc2b68fd {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t t \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.705376+00 +8724bf12-4996-43af-8587-9757aa4d2ce9 {} Loopback0 \N t \N \N 9999999999999999Loopback000000............ virtual f \N \N \N 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:38.883144+00 +e0d150e4-dbb6-4414-aa1d-f9f9fadecb1e {"role": null} GigabitEthernet2 79a58def-4c93-43ce-b021-cfb07171f3ac t \N \N 9999999999999999GigabitEthernet000002............ 1000base-t f 4 9d932f34-78cb-498a-ad15-981d766afa29 5b93c95b-605a-47c9-9b44-99eab39e6b2a 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.000404+00 +79a58def-4c93-43ce-b021-cfb07171f3ac {"role": null} GigabitEthernet2 e0d150e4-dbb6-4414-aa1d-f9f9fadecb1e t \N \N 9999999999999999GigabitEthernet000002............ 1000base-t f 4 19f3943c-0a50-46ea-b34d-4e4f6a9eebce 5b93c95b-605a-47c9-9b44-99eab39e6b2a 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.007751+00 +77173f36-7b17-4914-882c-5f8b66e6b6a7 {"role": null} GigabitEthernet3 114e1107-cad6-49a4-90f8-64510c3d2fb3 t \N \N 9999999999999999GigabitEthernet000003............ 1000base-t f 4 f16b531e-230a-4dab-b66b-5b6c96125c6a 796c8da4-7137-4542-9a65-30c5b7274fdc 45cca71d-85a7-42ac-b792-af8b4aef87cd \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.071767+00 +114e1107-cad6-49a4-90f8-64510c3d2fb3 {"role": null} GigabitEthernet3 77173f36-7b17-4914-882c-5f8b66e6b6a7 t \N \N 9999999999999999GigabitEthernet000003............ 1000base-t f 4 2dd0bf2e-24ce-48f0-9e34-6ed224c5497c 796c8da4-7137-4542-9a65-30c5b7274fdc 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.079725+00 +9ee067f2-f3c9-4eb2-aab0-30c6c39b3ff0 {"role": null} ge-0/0/3 6b8ad446-36ca-4d35-b290-d21e2f0c760b t \N \N 0000000099999999ge-000003............ 1000base-t f 4 e49c53ba-9089-40a4-b966-16862e15cbf4 07100c5d-7537-4bf8-a6a8-e143fbf9479d 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.148284+00 +84f95280-f48f-46e2-b348-d9b31c087f8c {"role": null} GigabitEthernet4 e51dbb12-9e60-4c4c-adc4-60d9b1bf7cee t \N \N 9999999999999999GigabitEthernet000004............ 1000base-t f 4 a8ffc2f5-49be-4ded-ad63-5f9e79f4d6c6 789cc44e-2d91-4213-bdbf-167df0d60f3e 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.193745+00 +e51dbb12-9e60-4c4c-adc4-60d9b1bf7cee {"role": null} GigabitEthernet4 84f95280-f48f-46e2-b348-d9b31c087f8c t \N \N 9999999999999999GigabitEthernet000004............ 1000base-t f 4 b1af6ae8-ccd3-4bd0-9674-204165d52b41 789cc44e-2d91-4213-bdbf-167df0d60f3e 720ef39b-a75e-4681-ac70-4237598974d0 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.198044+00 +229d6f26-00cb-4804-b2bc-3c40ea130d75 {"role": null} Ethernet1/5 d860a3b4-5224-420b-8797-0dde34bd2eea t \N \N 0001999999999999Ethernet000005............ 1000base-t f 4 15081348-9774-4900-ab57-75035a694c83 71f0373d-6a67-48d3-bacc-f37e9f27d023 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.238538+00 +991b9031-d92e-49d1-8189-cee52fa067a4 {"role": null} Ethernet1/5 1142060d-5488-460e-87dc-c1fbc14126b1 t \N \N 0001999999999999Ethernet000005............ 1000base-t f 4 2b5e5630-dbe1-43fd-9cd5-16dfe6eb595d 31f5e143-de2e-4c4c-b23a-9efd6c2fa7da b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.28553+00 +c12205bc-0d17-4d6a-849c-1229fc0dc1f5 {"role": null} Ethernet1/1 a6fea30f-2e31-4a7d-b682-ea677d622049 t \N \N 0001999999999999Ethernet000001............ 1000base-t f 4 30dce5fd-94f9-4b9c-8385-af6ea9709b42 f485f7d5-fefa-4f62-be92-d8140be6b46a 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.323016+00 +a6fea30f-2e31-4a7d-b682-ea677d622049 {"role": null} Ethernet1/1 c12205bc-0d17-4d6a-849c-1229fc0dc1f5 t \N \N 0001999999999999Ethernet000001............ 1000base-t f 4 2015ff74-4795-410a-a20f-9eb1844814a6 f485f7d5-fefa-4f62-be92-d8140be6b46a b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.327319+00 +e1d27cd6-5924-45a5-b5b4-6c90e24e6fc5 {"role": null} Ethernet2 b5f22608-97ba-42ad-8a43-93cc0912cc87 t \N \N 9999999999999999Ethernet000002............ 1000base-t f 4 89aa7bcb-64ab-4611-8dac-e6f4838b21e0 e5e15050-9db8-4846-85fa-07092e55f421 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.636081+00 +d6683aa3-cc33-43e7-b64e-47f6bc0b45d9 {"role": null} Ethernet3 e504f8d0-08ba-4d9b-9ee5-762ffb9aea51 t \N \N 9999999999999999Ethernet000003............ 1000base-t f 4 f1e9b8d0-2caf-4df1-af3e-6c8388a04105 a5fc9592-5d20-4bb8-abdf-9e4079ff5d28 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.778111+00 +f697b84b-5d6e-45a5-985f-d6acad3ccdb1 {"role": null} Ethernet1 80bbc8c8-7408-4ac4-9a68-2a9b17be4e23 t \N \N 9999999999999999Ethernet000001............ 1000base-t f 4 4cf048f0-a418-4feb-babf-36cb735a2431 179ef5a6-2210-4668-a2a0-a43ee6ebd036 182b57af-ef9e-428d-916d-7f18e14357d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.909723+00 +517037e4-24f6-489c-ac66-0d1ee6cd80d4 {"role": null} Ethernet1/2 88ea6b24-e63d-4b89-9303-84630ff66d3c t \N \N 0001999999999999Ethernet000002............ 1000base-t f 4 bc66e395-47f2-4bf9-ae5f-b489851d0e42 f85c3b0e-ba05-4375-83c7-a041e5771c8c 6442be3b-16d7-4788-ad3f-fb88282ea42d \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.362522+00 +88ea6b24-e63d-4b89-9303-84630ff66d3c {"role": null} Ethernet1/2 517037e4-24f6-489c-ac66-0d1ee6cd80d4 t \N \N 0001999999999999Ethernet000002............ 1000base-t f 4 5336255f-2851-4ca7-bd08-2e22659f73d0 f85c3b0e-ba05-4375-83c7-a041e5771c8c b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.366782+00 +10bae2f5-a05b-4841-85b9-861e625a6d94 {"role": null} Ethernet1/3 ab9f7e9b-3693-4094-8bea-1e5696ce24b3 t \N \N 0001999999999999Ethernet000003............ 1000base-t f 4 24189b05-1487-44e8-b51e-197cf33f6f65 375ee435-5091-40f9-80da-21ddb108b0a1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.407013+00 +17950897-4131-4efa-9a43-ea97f75fe2a5 {"role": null} ge-0/0/0 5908461e-4480-4d43-bde7-9b1777584f5d t \N \N 0000000099999999ge-000000............ 1000base-t f 4 b98a7094-6da4-41d7-b94f-f5329be3fe65 7d7d36b3-b6af-40bb-b5c2-0a5216ca47b5 919660c6-0654-4904-9cf5-61a03cc069c3 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.504544+00 +b4ccac56-b9e1-4574-a4fe-0d1bf75698c5 {"role": null} ge-0/0/2 0bf737da-80af-438c-add6-12914a8d6889 t \N \N 0000000099999999ge-000002............ 1000base-t f 4 2efe30e2-5f3f-4014-8b2d-063e3ae4ab63 829cf7c3-9b01-41df-8651-cddb39dc4f5b 4f1092db-761d-4ae6-9d20-275e186b67ea \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.546421+00 +0bf737da-80af-438c-add6-12914a8d6889 {"role": null} ge-0/0/2 b4ccac56-b9e1-4574-a4fe-0d1bf75698c5 t \N \N 0000000099999999ge-000002............ 1000base-t f 4 6d66d8a8-1e18-4b2d-b76c-1e2eeed59b60 829cf7c3-9b01-41df-8651-cddb39dc4f5b c8fef37f-699a-4f5a-b228-495cb5702a43 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.550806+00 +9892d575-8d82-4d82-91e0-02b958d125e7 {"role": null} Ethernet2 c60ff405-f8f1-4b95-9c0b-f157e1c659b5 t \N \N 9999999999999999Ethernet000002............ 1000base-t f 4 3d55e75f-ed2c-4c9b-86e1-2920d085c405 0a5e3a07-e9aa-47a2-96ab-11dffa276852 be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.595216+00 +c425ea6a-27ff-4fb7-bffc-41ba6e7fc770 {"role": null} Ethernet2 7e577d0b-d751-4d2c-9262-15ebb00ea960 t \N \N 9999999999999999Ethernet000002............ 1000base-t f 4 21f7421a-59f3-4f60-bac6-a0d4b780247a 39859f50-d8a1-43af-b769-fde17ea7a0d8 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.701803+00 +350f4cfe-1a31-473d-be9f-2950de48ce82 {"role": null} Ethernet1 a02b21d1-4e1a-448f-9292-255de05644c1 t \N \N 9999999999999999Ethernet000001............ 1000base-t f 4 5e33c207-bb7e-46bf-be8d-14b72259c57f 6e3ec838-86b8-4a93-a715-8e25acb18586 be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:39.863328+00 +6afa559f-f977-4c33-b514-366f6657ea8e {"role": null} Ethernet1 \N t \N \N 9999999999999999Ethernet000001............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755515+00 +40a5c790-b5f6-4f2a-81d8-d8fe339c7e51 {"role": null} Ethernet2 \N t \N \N 9999999999999999Ethernet000002............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755646+00 +b7083be3-5355-489b-8274-1139a7ca963f {"role": null} Ethernet3 \N t \N \N 9999999999999999Ethernet000003............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755718+00 +d16b511a-df28-447a-86ca-10c0558521d1 {"role": null} Ethernet4 \N t \N \N 9999999999999999Ethernet000004............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755783+00 +6c7ca915-bce9-4383-9a1b-ed4f9be2b7eb {"role": null} Ethernet5 \N t \N \N 9999999999999999Ethernet000005............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755845+00 +394296c2-5c19-4e09-9df3-91f12901ed55 {"role": null} Ethernet6 \N t \N \N 9999999999999999Ethernet000006............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755907+00 +cac81a65-32bc-4ea7-a04a-e8a11d75005e {"role": null} Ethernet7 \N t \N \N 9999999999999999Ethernet000007............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.755969+00 +4ae71603-5e81-4384-8c01-f7f2c900eb59 {"role": null} Ethernet8 \N t \N \N 9999999999999999Ethernet000008............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.75603+00 +445b7fd5-d1f9-4cca-89a3-2721013cf7af {"role": null} Ethernet9 \N t \N \N 9999999999999999Ethernet000009............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756091+00 +97e34f1f-0f9c-48ad-bb0b-69866898f006 {"role": null} Ethernet10 \N t \N \N 9999999999999999Ethernet000010............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756153+00 +486dacf0-0372-4814-a7eb-f027c82cbbc4 {"role": null} Ethernet11 \N t \N \N 9999999999999999Ethernet000011............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756216+00 +ea1be81e-301b-45f3-ac88-cc3dda66b0c3 {"role": null} Ethernet12 \N t \N \N 9999999999999999Ethernet000012............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756283+00 +c5ad292f-4dc3-45f5-986e-8bbd15e7732d {"role": null} Ethernet13 \N t \N \N 9999999999999999Ethernet000013............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756345+00 +f7443930-3c25-4e99-b73c-dd5f5ecd318d {"role": null} Ethernet14 \N t \N \N 9999999999999999Ethernet000014............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756406+00 +484f8d66-bbd6-45af-b6a8-1105760b5b67 {"role": null} Ethernet15 \N t \N \N 9999999999999999Ethernet000015............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756467+00 +a1aa0227-7b7f-4969-a71e-8c060905cbb1 {"role": null} Ethernet16 \N t \N \N 9999999999999999Ethernet000016............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756527+00 +47b094e5-ca50-46c1-b09f-a7caf0a17bdb {"role": null} Ethernet17 \N t \N \N 9999999999999999Ethernet000017............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756588+00 +e78ea7bd-0b41-4285-8752-995d6c6c17a7 {"role": null} Ethernet18 \N t \N \N 9999999999999999Ethernet000018............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756649+00 +f093c9ab-b62d-479a-842a-1c1e7d73fa85 {"role": null} Ethernet19 \N t \N \N 9999999999999999Ethernet000019............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.75671+00 +7377dde5-e16e-4a7b-9312-550a9f30022f {"role": null} Ethernet20 \N t \N \N 9999999999999999Ethernet000020............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756771+00 +e14059fe-86c1-4068-9288-e62afd20c604 {"role": null} Ethernet21 \N t \N \N 9999999999999999Ethernet000021............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.75683+00 +9df7e1db-ba5d-4d9a-a4b4-945a3203b5b1 {"role": null} Ethernet22 \N t \N \N 9999999999999999Ethernet000022............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756891+00 +a1d09b50-9930-498f-b680-f235b860bf0a {"role": null} Ethernet23 \N t \N \N 9999999999999999Ethernet000023............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.756952+00 +384423a7-f2e8-4ccd-8cb2-be79fbc681c5 {"role": null} Ethernet24 \N t \N \N 9999999999999999Ethernet000024............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757013+00 +5117e1f3-96d3-4531-8886-c75843126695 {"role": null} Ethernet25 \N t \N \N 9999999999999999Ethernet000025............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757072+00 +573ac53a-38e9-42e3-8394-d44b416d0958 {"role": null} Ethernet26 \N t \N \N 9999999999999999Ethernet000026............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757131+00 +f1206aeb-54cd-4593-b1b8-eae1409756c8 {"role": null} Ethernet27 \N t \N \N 9999999999999999Ethernet000027............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757191+00 +56aca5b5-7202-4824-b81b-3449a3ebb025 {"role": null} Ethernet28 \N t \N \N 9999999999999999Ethernet000028............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757251+00 +72e0be6c-ee5d-46b0-9fd6-bca80a004750 {"role": null} Ethernet29 \N t \N \N 9999999999999999Ethernet000029............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.75731+00 +c01259f6-e170-4e5a-bda9-1df12499183d {"role": null} Ethernet30 \N t \N \N 9999999999999999Ethernet000030............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757369+00 +4b4424ac-daf7-43f7-b044-181f8424cb33 {"role": null} Ethernet31 \N t \N \N 9999999999999999Ethernet000031............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757429+00 +a57db7da-7c70-40f6-8840-2b172aebb4a4 {"role": null} Ethernet32 \N t \N \N 9999999999999999Ethernet000032............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.75749+00 +556a9a4e-2a02-42b5-90e6-ced985f9d62f {"role": null} Ethernet33 \N t \N \N 9999999999999999Ethernet000033............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757549+00 +f33e4bac-eccd-4429-a772-32e54ad1c85c {"role": null} Ethernet34 \N t \N \N 9999999999999999Ethernet000034............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757608+00 +45f3a18c-ede7-4d69-98ce-2a8465313e88 {"role": null} Ethernet35 \N t \N \N 9999999999999999Ethernet000035............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757667+00 +ac4b331f-caa8-4a00-a756-1a6cb95a58f1 {"role": null} Ethernet36 \N t \N \N 9999999999999999Ethernet000036............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757726+00 +5f7afab6-8fb2-4f3f-9070-d7546547825a {"role": null} Ethernet37 \N t \N \N 9999999999999999Ethernet000037............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757785+00 +f95da0d4-dfbe-488d-8793-f1deb89c2e1e {"role": null} Ethernet38 \N t \N \N 9999999999999999Ethernet000038............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757845+00 +f54fb137-6f6c-4107-90c2-5d575ad9c4b5 {"role": null} Ethernet39 \N t \N \N 9999999999999999Ethernet000039............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757905+00 +51e84560-f6a2-4814-acd1-673a8dbb0a9f {"role": null} Ethernet40 \N t \N \N 9999999999999999Ethernet000040............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.757965+00 +bb161a59-83dc-4c0b-ac3d-81c54e81d1df {"role": null} Ethernet41 \N t \N \N 9999999999999999Ethernet000041............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758024+00 +12298c61-d28a-42ad-86bf-257cdea1142d {"role": null} Ethernet42 \N t \N \N 9999999999999999Ethernet000042............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758083+00 +5d91f086-201b-4024-b8a5-3ebcd6c415c0 {"role": null} Ethernet43 \N t \N \N 9999999999999999Ethernet000043............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758143+00 +f104aa38-873f-49ae-8908-d452fb93f2e1 {"role": null} Ethernet44 \N t \N \N 9999999999999999Ethernet000044............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758202+00 +bcd1419a-cf0b-4a6f-8deb-da88a0344151 {"role": null} Ethernet45 \N t \N \N 9999999999999999Ethernet000045............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758283+00 +042bc18b-23a8-4262-b535-92c809981f67 {"role": null} Ethernet46 \N t \N \N 9999999999999999Ethernet000046............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758348+00 +42e6b8c3-cd12-41c5-92c9-6096c471da7b {"role": null} Ethernet47 \N t \N \N 9999999999999999Ethernet000047............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758409+00 +503e5ace-7858-4667-a2f3-fa7356ec5b18 {"role": null} Ethernet48 \N t \N \N 9999999999999999Ethernet000048............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758471+00 +dc60e5e6-47c9-49a8-96b3-c7a813a4276b {"role": null} Ethernet49 \N t \N \N 9999999999999999Ethernet000049............ 10gbase-x-sfpp f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758532+00 +b899ba97-a007-46b4-ae2a-c4aecac8d94b {"role": null} Ethernet50 \N t \N \N 9999999999999999Ethernet000050............ 10gbase-x-sfpp f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758594+00 +34425093-7a93-4ba8-bd7f-d8e18913fbae {"role": null} Ethernet51 \N t \N \N 9999999999999999Ethernet000051............ 10gbase-x-sfpp f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758655+00 +f59d90b5-0b48-48f9-9ac1-23a538176ce3 {"role": null} Ethernet52 \N t \N \N 9999999999999999Ethernet000052............ 10gbase-x-sfpp f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758715+00 +5172a52c-e37e-4f4f-b40b-032e9b746c01 {"role": null} Management1 \N t \N \N 9999999999999999Management000001............ 1000base-t f \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:48.758774+00 +e0a64bb2-b660-4316-a061-06031b5390d7 {"role": null} Ethernet1/1 \N t \N \N 0001999999999999Ethernet000001............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.068709+00 +1a171b50-cb84-4e31-89a4-52ef35c6d277 {"role": null} Ethernet1/2 \N t \N \N 0001999999999999Ethernet000002............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.068836+00 +fc9a5319-2bbe-4a02-b5f5-d5c00b05a18d {"role": null} Ethernet1/3 \N t \N \N 0001999999999999Ethernet000003............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.068908+00 +f3479912-a4e2-42ec-87f0-69845eb8e669 {"role": null} Ethernet1/4 \N t \N \N 0001999999999999Ethernet000004............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.068972+00 +819118fd-2235-43d3-a36a-26c79ebf1919 {"role": null} Ethernet1/5 \N t \N \N 0001999999999999Ethernet000005............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069035+00 +8a62a7b9-f5f2-43e8-accf-331c88f92ddf {"role": null} Ethernet1/6 \N t \N \N 0001999999999999Ethernet000006............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069097+00 +5148e2ec-f3f2-4e92-9762-2fa4ae5118ce {"role": null} Ethernet1/7 \N t \N \N 0001999999999999Ethernet000007............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069158+00 +3ee94422-3efb-4ddb-aca5-3148eebc26c4 {"role": null} Ethernet1/8 \N t \N \N 0001999999999999Ethernet000008............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069218+00 +1722dd92-6874-4f34-810e-df38f16292e4 {"role": null} Ethernet1/9 \N t \N \N 0001999999999999Ethernet000009............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069279+00 +cc4c8bc3-845d-452f-a0f9-a068c848f48e {"role": null} Ethernet1/10 \N t \N \N 0001999999999999Ethernet000010............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.06934+00 +0be42af0-3bc7-43e6-8d0c-536ced04e50d {"role": null} Ethernet1/11 \N t \N \N 0001999999999999Ethernet000011............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069402+00 +930ea2f1-020c-4d5d-ae50-ff68a003f74e {"role": null} Ethernet1/12 \N t \N \N 0001999999999999Ethernet000012............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069465+00 +d96e216f-710e-4035-bbbc-df17db62398b {"role": null} Ethernet1/13 \N t \N \N 0001999999999999Ethernet000013............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069526+00 +95a1465b-043d-4f47-bf58-a8c56111ce9a {"role": null} Ethernet1/14 \N t \N \N 0001999999999999Ethernet000014............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069587+00 +adaa6eec-d26b-4283-b1a0-202eb4657133 {"role": null} Ethernet1/15 \N t \N \N 0001999999999999Ethernet000015............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069648+00 +19fb2505-9468-4385-8841-e232ba69390a {"role": null} Ethernet1/16 \N t \N \N 0001999999999999Ethernet000016............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069709+00 +789f0ed2-da73-484c-bc82-8817e638292c {"role": null} Ethernet1/17 \N t \N \N 0001999999999999Ethernet000017............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.06977+00 +d9388a8b-d9c5-4361-a433-aa5caf040ad0 {"role": null} Ethernet1/18 \N t \N \N 0001999999999999Ethernet000018............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.06983+00 +a3329793-543a-44b2-83d7-1739a21dc8aa {"role": null} Ethernet1/19 \N t \N \N 0001999999999999Ethernet000019............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.06989+00 +faf80fce-f854-4e15-848d-8a3784bc9045 {"role": null} Ethernet1/20 \N t \N \N 0001999999999999Ethernet000020............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.069951+00 +db8c8254-0e89-4b36-875b-46b7bcb2e41a {"role": null} Ethernet1/21 \N t \N \N 0001999999999999Ethernet000021............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070018+00 +135b424b-f346-4020-b301-92d3be9533d3 {"role": null} Ethernet1/22 \N t \N \N 0001999999999999Ethernet000022............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070094+00 +905c57e5-f97f-4ea1-9a4d-e704c2027994 {"role": null} Ethernet1/23 \N t \N \N 0001999999999999Ethernet000023............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070157+00 +9cba74a1-9f72-4fbd-a993-578892fe26a7 {"role": null} Ethernet1/24 \N t \N \N 0001999999999999Ethernet000024............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070218+00 +243f4ba8-71d8-4454-990f-5ffdbc9505c1 {"role": null} Ethernet1/25 \N t \N \N 0001999999999999Ethernet000025............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070292+00 +79b3dd6a-e0c9-4d8f-9063-f6d14e3067e4 {"role": null} Ethernet1/26 \N t \N \N 0001999999999999Ethernet000026............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070354+00 +3948028c-e977-4f53-95d5-36920f99da95 {"role": null} Ethernet1/27 \N t \N \N 0001999999999999Ethernet000027............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070416+00 +55fa59cb-f70a-43f6-b30b-4558f7a1111d {"role": null} Ethernet1/28 \N t \N \N 0001999999999999Ethernet000028............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070477+00 +b40f95e3-10a7-4226-9fe5-158f07b1683d {"role": null} Ethernet1/29 \N t \N \N 0001999999999999Ethernet000029............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070538+00 +f422fc47-54ee-4f3f-8912-fe8fab299dc8 {"role": null} Ethernet1/30 \N t \N \N 0001999999999999Ethernet000030............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070598+00 +daa6e3ef-9753-40fc-92d8-bcdf9723eb90 {"role": null} Ethernet1/31 \N t \N \N 0001999999999999Ethernet000031............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070658+00 +39da8d11-a924-4ca7-9ffc-82bfa4533aaa {"role": null} Ethernet1/32 \N t \N \N 0001999999999999Ethernet000032............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070718+00 +4e045000-1aba-40b6-b18d-1e546b6ab670 {"role": null} Ethernet1/33 \N t \N \N 0001999999999999Ethernet000033............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070778+00 +b841060c-0abe-4975-a39c-3223afe971fa {"role": null} Ethernet1/34 \N t \N \N 0001999999999999Ethernet000034............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070839+00 +7f4547ef-c7f8-4891-8062-266016aaa4eb {"role": null} Ethernet1/35 \N t \N \N 0001999999999999Ethernet000035............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.070899+00 +ff1c363c-5d9a-4bca-a5d8-f1f44811dce6 {"role": null} Ethernet1/36 \N t \N \N 0001999999999999Ethernet000036............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.07096+00 +2b0b702d-895a-4fa9-be0a-d7066de4d32a {"role": null} Ethernet1/37 \N t \N \N 0001999999999999Ethernet000037............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071021+00 +474a4f54-4051-452b-85cd-dee81617e5fc {"role": null} Ethernet1/38 \N t \N \N 0001999999999999Ethernet000038............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071081+00 +6affc303-cf19-4f27-9c62-b98798c2fa35 {"role": null} Ethernet1/39 \N t \N \N 0001999999999999Ethernet000039............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071142+00 +a2790bce-96c5-41e0-a2fd-f075666f65b4 {"role": null} Ethernet1/40 \N t \N \N 0001999999999999Ethernet000040............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071203+00 +6b774f34-e1ca-4121-b05f-972d79ae0eda {"role": null} Ethernet1/41 \N t \N \N 0001999999999999Ethernet000041............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071263+00 +e4e0711e-4618-407b-892c-947699d6c9c3 {"role": null} Ethernet1/42 \N t \N \N 0001999999999999Ethernet000042............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071323+00 +54e79213-6b36-4c43-a087-5d4f555835b2 {"role": null} Ethernet1/43 \N t \N \N 0001999999999999Ethernet000043............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071384+00 +fc1cf989-1fc6-4103-83d8-c21653e9a0e2 {"role": null} Ethernet1/44 \N t \N \N 0001999999999999Ethernet000044............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071444+00 +8f963fc3-f437-4f84-9bc8-d931d97229bc {"role": null} Ethernet1/45 \N t \N \N 0001999999999999Ethernet000045............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071503+00 +5a7a64e3-85ad-4335-80d3-81f9111cbd57 {"role": null} Ethernet1/46 \N t \N \N 0001999999999999Ethernet000046............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071563+00 +4f4e5c17-353f-42b4-a125-da73f9eb7ea7 {"role": null} Ethernet1/47 \N t \N \N 0001999999999999Ethernet000047............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071623+00 +c5b295e4-94db-4823-bd5c-1d4b130accb0 {"role": null} Ethernet1/48 \N t \N \N 0001999999999999Ethernet000048............ 10gbase-t f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071683+00 +fcbf168c-790a-405c-92e2-242a01e6b516 {"role": null} Ethernet1/49 \N t \N \N 0001999999999999Ethernet000049............ 40gbase-x-qsfpp f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071744+00 +3d23b7c8-b9e9-41d7-a7cc-08cad333a23d {"role": null} Ethernet1/50 \N t \N \N 0001999999999999Ethernet000050............ 40gbase-x-qsfpp f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071804+00 +2e7185f4-2cd1-4889-8009-97ecdbb957eb {"role": null} Ethernet1/51 \N t \N \N 0001999999999999Ethernet000051............ 40gbase-x-qsfpp f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071864+00 +77c15a51-471c-4caf-8d8d-5a456099dfa0 {"role": null} Ethernet1/52 \N t \N \N 0001999999999999Ethernet000052............ 40gbase-x-qsfpp f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071924+00 +16c5176f-d943-41d5-afb4-8a80c6551d52 {"role": null} Ethernet1/53 \N t \N \N 0001999999999999Ethernet000053............ 40gbase-x-qsfpp f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.071985+00 +03af45b2-e018-4364-9422-0129a88a66a3 {"role": null} Ethernet1/54 \N t \N \N 0001999999999999Ethernet000054............ 40gbase-x-qsfpp f \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.072045+00 +811a298c-0822-423a-8988-94ff0b0c83bb {"role": null} mgmt0 \N t \N \N 9999999999999999mgmt000000............ 1000base-t t \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.072104+00 +5c9aae34-be53-4086-85a1-e8524fe6f97b {"role": null} Ethernet1/1 \N t \N \N 0001999999999999Ethernet000001............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.376627+00 +19ac3cde-5264-4cdc-94e5-ff54472d55ea {"role": null} Ethernet1/2 \N t \N \N 0001999999999999Ethernet000002............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.376753+00 +251f9d72-5c93-4524-99eb-9818ef41fbdf {"role": null} Ethernet1/3 \N t \N \N 0001999999999999Ethernet000003............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.376823+00 +fb099df1-5797-4dbe-ad14-e09b566fffd5 {"role": null} Ethernet1/4 \N t \N \N 0001999999999999Ethernet000004............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.376886+00 +8c23485a-f6d3-4370-8ae4-866cacd2c2f8 {"role": null} Ethernet1/5 \N t \N \N 0001999999999999Ethernet000005............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.376947+00 +2e3e3542-0d41-4067-8128-1aae26eac5d4 {"role": null} Ethernet1/6 \N t \N \N 0001999999999999Ethernet000006............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377009+00 +9722ece8-0e5b-44b4-badd-f71036eb6de1 {"role": null} Ethernet1/7 \N t \N \N 0001999999999999Ethernet000007............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37707+00 +1c85da1f-3fe3-4ee2-b3ee-b453d2735d77 {"role": null} Ethernet1/8 \N t \N \N 0001999999999999Ethernet000008............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377132+00 +f8fea202-9940-4ca3-97f9-1d866dcaeac8 {"role": null} Ethernet1/9 \N t \N \N 0001999999999999Ethernet000009............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377193+00 +fd350918-ecc6-4140-b5a9-2e0d40352b53 {"role": null} Ethernet1/10 \N t \N \N 0001999999999999Ethernet000010............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377253+00 +38ec9df5-4204-49db-8de4-e43913ddef9c {"role": null} Ethernet1/11 \N t \N \N 0001999999999999Ethernet000011............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377314+00 +29adba57-41e2-4ff7-ad20-b726ec045352 {"role": null} Ethernet1/12 \N t \N \N 0001999999999999Ethernet000012............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377374+00 +28ca38aa-146f-4e1c-9041-ef2b9d592105 {"role": null} Ethernet1/13 \N t \N \N 0001999999999999Ethernet000013............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377434+00 +5dc8d376-9367-4b1d-a36b-076eacb8aedb {"role": null} Ethernet1/14 \N t \N \N 0001999999999999Ethernet000014............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377493+00 +938b546a-c9e4-44b7-9e84-08443aba5d53 {"role": null} Ethernet1/15 \N t \N \N 0001999999999999Ethernet000015............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377553+00 +df7893fb-637a-43bc-b773-a706f3aa6b86 {"role": null} Ethernet1/16 \N t \N \N 0001999999999999Ethernet000016............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377612+00 +de143d72-3d2c-4009-86ac-b5ede06143b4 {"role": null} Ethernet1/17 \N t \N \N 0001999999999999Ethernet000017............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37767+00 +5e0398ff-1b96-4416-89af-90806547517d {"role": null} Ethernet1/18 \N t \N \N 0001999999999999Ethernet000018............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37773+00 +e0e2f2df-00db-4b6b-b653-ec8e1cd16ba7 {"role": null} Ethernet1/19 \N t \N \N 0001999999999999Ethernet000019............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377789+00 +f20419da-b4bd-41fb-8424-389ce759b9c6 {"role": null} Ethernet1/20 \N t \N \N 0001999999999999Ethernet000020............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377849+00 +eb38fe60-127e-4b77-8607-6c40da7c17fd {"role": null} Ethernet1/21 \N t \N \N 0001999999999999Ethernet000021............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377907+00 +3ffba5b7-9a07-4846-aff7-8b2b3119aee6 {"role": null} Ethernet1/22 \N t \N \N 0001999999999999Ethernet000022............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.377966+00 +a331c564-b843-4d51-9f93-1e856f09073f {"role": null} Ethernet1/23 \N t \N \N 0001999999999999Ethernet000023............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378026+00 +a483d153-7670-41f6-9824-71b2825c0075 {"role": null} Ethernet1/24 \N t \N \N 0001999999999999Ethernet000024............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378084+00 +98b58c92-038f-49ba-b7cd-5271d66b7c58 {"role": null} Ethernet1/25 \N t \N \N 0001999999999999Ethernet000025............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378143+00 +1a1692a0-8ab4-4fd7-b7c0-029c0172562d {"role": null} Ethernet1/26 \N t \N \N 0001999999999999Ethernet000026............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378202+00 +2af82913-9a7a-466f-8c63-75a806ade3b2 {"role": null} Ethernet1/27 \N t \N \N 0001999999999999Ethernet000027............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37828+00 +4c9d4343-b62a-40c5-ab27-6a89307635c3 {"role": null} Ethernet1/28 \N t \N \N 0001999999999999Ethernet000028............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378344+00 +b7dd602d-6b5b-4351-9fed-5f99242cd304 {"role": null} Ethernet1/29 \N t \N \N 0001999999999999Ethernet000029............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378404+00 +ecd6c988-f121-45b1-8c7f-304082f3b836 {"role": null} Ethernet1/30 \N t \N \N 0001999999999999Ethernet000030............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378463+00 +650030bb-dc3a-49fd-8468-beedb48fae07 {"role": null} Ethernet1/31 \N t \N \N 0001999999999999Ethernet000031............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378523+00 +f61b7c84-a2b9-4543-9081-fb47096c0096 {"role": null} Ethernet1/32 \N t \N \N 0001999999999999Ethernet000032............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378581+00 +7b893a98-696f-4de0-93e3-9b2c19d3885b {"role": null} Ethernet1/33 \N t \N \N 0001999999999999Ethernet000033............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37864+00 +529d8976-eec9-453c-8062-ab9a0778c377 {"role": null} Ethernet1/34 \N t \N \N 0001999999999999Ethernet000034............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378699+00 +a91bb71a-9fae-49a8-b3ee-4a5c0ecfaf1c {"role": null} Ethernet1/35 \N t \N \N 0001999999999999Ethernet000035............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378758+00 +1ca795c7-f85a-4258-9b28-17497d6a2d1c {"role": null} Ethernet1/36 \N t \N \N 0001999999999999Ethernet000036............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378817+00 +abb05964-39ff-4322-9a46-ebb1e0244ad2 {"role": null} Ethernet1/37 \N t \N \N 0001999999999999Ethernet000037............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378877+00 +d49f9ef3-fead-4d98-8a73-b02b25c84e70 {"role": null} Ethernet1/38 \N t \N \N 0001999999999999Ethernet000038............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378935+00 +a7b557e6-4c17-4285-baa9-1335c2e53181 {"role": null} Ethernet1/39 \N t \N \N 0001999999999999Ethernet000039............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.378994+00 +754e5595-5bf7-4b2d-ade0-bcb614e2d049 {"role": null} Ethernet1/40 \N t \N \N 0001999999999999Ethernet000040............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379052+00 +7c8f27bc-ba28-4839-a846-1574c69ec639 {"role": null} Ethernet1/41 \N t \N \N 0001999999999999Ethernet000041............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37911+00 +bdae2381-2818-4a7b-8cbd-0f3d8ddc1c01 {"role": null} Ethernet1/42 \N t \N \N 0001999999999999Ethernet000042............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379169+00 +bfc9bdc6-23dc-40fe-bd01-614f24ea40fe {"role": null} Ethernet1/43 \N t \N \N 0001999999999999Ethernet000043............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379227+00 +1c141d12-cf7f-44c2-a809-59d9d8c65047 {"role": null} Ethernet1/44 \N t \N \N 0001999999999999Ethernet000044............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379285+00 +a7c3007a-6934-4a54-8ac4-045efc07f6c2 {"role": null} Ethernet1/45 \N t \N \N 0001999999999999Ethernet000045............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379343+00 +a0540d07-3ceb-4bbb-8d51-289ae67ee93e {"role": null} Ethernet1/46 \N t \N \N 0001999999999999Ethernet000046............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379401+00 +7fe5b19a-12d7-4a26-a641-7a5a69041f12 {"role": null} Ethernet1/47 \N t \N \N 0001999999999999Ethernet000047............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379459+00 +2a1c7c97-64c6-451a-a965-c1becf3b5242 {"role": null} Ethernet1/48 \N t \N \N 0001999999999999Ethernet000048............ 10gbase-t f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379517+00 +ba1f8e89-196d-4689-9544-f00d78075e65 {"role": null} Ethernet1/49 \N t \N \N 0001999999999999Ethernet000049............ 40gbase-x-qsfpp f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379575+00 +826f9832-b985-4265-a907-63ffcf71fcb3 {"role": null} Ethernet1/50 \N t \N \N 0001999999999999Ethernet000050............ 40gbase-x-qsfpp f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379633+00 +f2ad2692-b614-4fa7-a766-67b04de330bd {"role": null} Ethernet1/51 \N t \N \N 0001999999999999Ethernet000051............ 40gbase-x-qsfpp f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379692+00 +1cb6de16-30af-4667-b6d7-0dd8a7eb20b9 {"role": null} Ethernet1/52 \N t \N \N 0001999999999999Ethernet000052............ 40gbase-x-qsfpp f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379752+00 +c862850a-fc98-4d9d-a245-c53480ae28dc {"role": null} Ethernet1/53 \N t \N \N 0001999999999999Ethernet000053............ 40gbase-x-qsfpp f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.37981+00 +66551c15-078b-4890-8052-79a175761030 {"role": null} Ethernet1/54 \N t \N \N 0001999999999999Ethernet000054............ 40gbase-x-qsfpp f \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379868+00 +5c311ce2-f45d-4a0c-b08d-d44acb3cb841 {"role": null} mgmt0 \N t \N \N 9999999999999999mgmt000000............ 1000base-t t \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N 2023-09-19 2023-09-19 08:10:49.379925+00 +\. + + +-- +-- Data for Name: dcim_interface_tagged_vlans; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_interface_tagged_vlans (id, interface_id, vlan_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_interfacetemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_interfacetemplate (id, _custom_field_data, name, label, description, _name, type, mgmt_only, device_type_id, created, last_updated) FROM stdin; +d969629a-9893-44a1-8dba-8546f5c99140 {} Ethernet1 9999999999999999Ethernet000001............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.936382+00 +3f84940d-f505-4081-99ed-19e20b9c612f {} Ethernet2 9999999999999999Ethernet000002............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.936996+00 +fef78069-702c-4b34-8901-2eb89b30a2f8 {} Ethernet3 9999999999999999Ethernet000003............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937052+00 +48fd33bd-c983-495d-a6ff-541a1a3e85f3 {} Ethernet4 9999999999999999Ethernet000004............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937099+00 +c1dcf15f-be26-463c-a227-1f0f0c3adefc {} Ethernet5 9999999999999999Ethernet000005............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937143+00 +58c6eed9-620c-4f13-9252-10a9ad1eea3b {} Ethernet6 9999999999999999Ethernet000006............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937186+00 +b643b566-b70b-4cd5-92dc-485296a3c9b3 {} Ethernet7 9999999999999999Ethernet000007............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937228+00 +f7cef366-5953-4cdc-9daf-90e7feeb5554 {} Ethernet8 9999999999999999Ethernet000008............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.93727+00 +e762e7a8-9a5a-4a14-93d3-9a18c6009889 {} Ethernet9 9999999999999999Ethernet000009............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.93731+00 +d879fa2d-9db1-40ff-a80f-398f3e8a543b {} Ethernet10 9999999999999999Ethernet000010............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937351+00 +6b4e662e-6e6d-492b-bea0-a7fddb8bd3e4 {} Ethernet11 9999999999999999Ethernet000011............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937393+00 +95df4905-bba0-44bf-bae3-d55eebb28994 {} Ethernet12 9999999999999999Ethernet000012............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937434+00 +7c7a5939-3d97-4016-83d1-80665f69a692 {} Ethernet13 9999999999999999Ethernet000013............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937481+00 +91e70dd0-c746-4bb0-be31-8b69c1ee1e52 {} Ethernet14 9999999999999999Ethernet000014............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937524+00 +97bece81-4175-436f-a7a4-d9acff78c341 {} Ethernet15 9999999999999999Ethernet000015............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937564+00 +2cbf752a-bf9d-445a-84ff-c9f9d142cf34 {} Ethernet16 9999999999999999Ethernet000016............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937605+00 +83bbf785-1dc7-4c27-aa63-49d048b8c497 {} Ethernet17 9999999999999999Ethernet000017............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937646+00 +09add2b8-5fb8-485e-bf17-372ecc636646 {} Ethernet18 9999999999999999Ethernet000018............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937687+00 +c62c2404-c4d6-46bb-9471-e80007fc68bc {} Ethernet19 9999999999999999Ethernet000019............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937727+00 +7eb5d36f-18d6-4805-bb47-89a1da075df8 {} Ethernet20 9999999999999999Ethernet000020............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937767+00 +98822b41-c3f0-4954-a7e7-e996f1a142ab {} Ethernet21 9999999999999999Ethernet000021............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937808+00 +eb050c53-161f-4744-9e79-ca86e0902806 {} Ethernet22 9999999999999999Ethernet000022............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937847+00 +cd00488f-9201-4aa7-83ad-5e72031f401c {} Ethernet23 9999999999999999Ethernet000023............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937888+00 +ea293f5b-d99e-4a5e-8714-5ee9c49d6259 {} Ethernet24 9999999999999999Ethernet000024............ 10gbase-x-sfpp f 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937928+00 +bd0731f3-3d4f-44a5-8a3e-ce0c363ddf42 {} Management1 9999999999999999Management000001............ 1000base-t t 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.937968+00 +b209783e-1742-4b9d-ad69-71b08f555b46 {} Ethernet1/1 0001999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.160868+00 +b48ac373-d5ba-42ee-9a5f-e8a5b2a99c5b {} Ethernet2/1 0002999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.160946+00 +e1464657-850c-4264-97f0-d4602a62846d {} Ethernet3/1 0003999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.160995+00 +618f73e8-6387-4af2-85d7-2ce0e7bc97b4 {} Ethernet4/1 0004999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16104+00 +da9c8db0-78fb-4dc8-bf7c-a68ae6ffbfff {} Ethernet5/1 0005999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161084+00 +12e660d9-8735-4ce1-a65e-b3c202840e47 {} Ethernet6/1 0006999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161126+00 +b4e35bd3-c263-473a-b408-084505d02bb6 {} Ethernet7/1 0007999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161167+00 +b64b60a5-1a04-4059-806d-6c1db4d477c7 {} Ethernet8/1 0008999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161208+00 +d7d99e89-3997-469c-bd5c-7e4edd8dbe64 {} Ethernet9/1 0009999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161249+00 +c8b77e47-9f1b-4252-84f9-0fd142b0cfb9 {} Ethernet10/1 0010999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161289+00 +3250c4ba-1f67-4533-ba60-3429b8c4614e {} Ethernet11/1 0011999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16133+00 +35dbbc78-6db9-4bce-bf9b-5c2e0ec5f9b5 {} Ethernet12/1 0012999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16137+00 +b5fa2da1-6262-472f-9dec-7fb58746b5c8 {} Ethernet13/1 0013999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16141+00 +46bea202-78c1-43d4-9fe5-302cae4fefc2 {} Ethernet14/1 0014999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16145+00 +41ebace7-47b0-46de-8b39-f396f8f7d330 {} Ethernet15/1 0015999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16149+00 +537618c1-2601-4539-8c1e-0d8ab6f099eb {} Ethernet16/1 0016999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16153+00 +73ba2cc1-c1f3-425e-a39b-9590d9ff6e05 {} Ethernet17/1 0017999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16157+00 +d676beac-315f-4552-8120-0d9c814de52b {} Ethernet18/1 0018999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161611+00 +8938ffd0-62ef-4da1-a8f3-5413fb4667ee {} Ethernet19/1 0019999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16165+00 +99451808-e660-42b8-b86f-07cce637721a {} Ethernet20/1 0020999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16169+00 +5d642683-6baf-488f-b47d-7685e8c99db3 {} Ethernet21/1 0021999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16173+00 +aea5c1be-e4cd-45ce-bc43-ca3c50ae1863 {} Ethernet22/1 0022999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161771+00 +15d24423-e22b-42fb-a730-c146fc363381 {} Ethernet23/1 0023999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.161811+00 +466352aa-14e2-44a3-8e26-9b1d59b8915c {} Ethernet24/1 0024999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16185+00 +307e38bf-700e-47a4-b6a0-e37b5a4493d9 {} Ethernet25/1 0025999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16189+00 +c898bd2a-99ef-4885-be82-d3ce90d777c9 {} Ethernet26/1 0026999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16193+00 +1e15e4a8-e11c-435b-99e0-8355cfb97325 {} Ethernet27/1 0027999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16197+00 +305238f2-b2f6-4ebe-879d-fc10bc510306 {} Ethernet28/1 0028999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16201+00 +f6142d12-2bea-4a6c-a4f4-30d6dc30cab8 {} Ethernet29/1 0029999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162049+00 +77eff236-86d5-445f-880b-4eba06786818 {} Ethernet30/1 0030999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162088+00 +f6e02e54-8b2b-4c7e-a075-848562825236 {} Ethernet31/1 0031999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162128+00 +78d3656a-4257-4ecb-9f62-7f30acb3c731 {} Ethernet32/1 0032999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162166+00 +77d41b52-c343-424b-b5e4-f44b5ddf5efe {} Ethernet33/1 0033999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162206+00 +df262af7-1c0e-4092-a64d-cfb0f4dab203 {} Ethernet34/1 0034999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162246+00 +166ab6cb-156d-4127-800d-e7af7ebf9bdc {} Ethernet35/1 0035999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162305+00 +2ea0c581-c464-4adc-884f-1259f26e1a58 {} Ethernet36/1 0036999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162346+00 +44269796-41e3-4472-9bbe-52622db6f126 {} Ethernet37/1 0037999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162387+00 +afebc708-5290-4895-8e21-ca4d2b38f125 {} Ethernet38/1 0038999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162427+00 +09c63f07-1d23-42b8-aff4-bdbf601ffc34 {} Ethernet39/1 0039999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162468+00 +b9f4aa8c-cc54-4d5d-b36d-6c7e1f6527e1 {} Ethernet40/1 0040999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162507+00 +2545b1e2-2e9c-42bb-9462-6cd2f8648b94 {} Ethernet41/1 0041999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162548+00 +ebb21328-1523-4c11-9798-c6e6615ca2ca {} Ethernet42/1 0042999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162589+00 +be283b38-2633-4f09-94fc-6088480eebca {} Ethernet43/1 0043999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162629+00 +9cd7308d-9be8-4c73-b334-f9557498902e {} Ethernet44/1 0044999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162669+00 +26f1d3f2-e016-47e7-8d4f-a24a47604b2c {} Ethernet45/1 0045999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162823+00 +45aa4098-84f5-42ab-b6dc-ed4d01551476 {} Ethernet46/1 0046999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162869+00 +9076302b-970b-4f0e-9fdb-11f6a27a831c {} Ethernet47/1 0047999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162911+00 +2dd1efeb-72ca-4931-bb6e-c600a5f84fdb {} Ethernet48/1 0048999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162953+00 +56df5b9e-8265-408c-902a-b1228d1fac5d {} Ethernet49/1 0049999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.162994+00 +1cb1b4a4-979a-44e2-a589-4592c044d13f {} Ethernet50/1 0050999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163035+00 +f95f3489-92c2-41ff-9d1b-e95f33d491b3 {} Ethernet51/1 0051999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163077+00 +97fea712-44e0-44a1-b3a4-1d5f210dc10c {} Ethernet52/1 0052999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163118+00 +dbb34474-7f7f-4c88-acab-b1034493b80a {} Ethernet53/1 0053999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.16316+00 +11837b42-9464-4b74-81c9-25a238d5dbed {} Ethernet54/1 0054999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163201+00 +9508e163-77bc-4a6c-a537-0d2243cbe44e {} Ethernet55/1 0055999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163241+00 +2579fc0e-331a-4a13-a958-a04ec6d2bfb4 {} Ethernet56/1 0056999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163281+00 +f570b2fd-b825-4eef-895d-9557865a3e33 {} Ethernet57/1 0057999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163322+00 +93d5ace6-3d40-4dc3-ad29-82d86057a8f5 {} Ethernet58/1 0058999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163363+00 +cf9b5a4f-b0af-4231-8e14-6f94bdf0a5d2 {} Ethernet59/1 0059999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163403+00 +0a1e67b9-c928-4a08-aa57-e772a50d714b {} Ethernet60/1 0060999999999999Ethernet000001............ 100gbase-x-qsfp28 f 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163444+00 +283ed102-0889-4f02-8d84-3267f074c286 {} Management1 9999999999999999Management000001............ 1000base-t t 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.163484+00 +61c465be-bfe6-4597-ac5a-78e1965ec151 {} Ethernet1/1 0001999999999999Ethernet000001............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894047+00 +2430ed1b-fa62-4397-9a6d-0c9b94659b93 {} Ethernet1/2 0001999999999999Ethernet000002............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894688+00 +78b25a2c-eb0c-467d-8059-4c92ab2029e1 {} Ethernet1/3 0001999999999999Ethernet000003............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894746+00 +d0e31000-a22c-456e-958a-97da861e97b8 {} Ethernet1/4 0001999999999999Ethernet000004............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894791+00 +9886e940-4378-4941-8d47-2bf8d0eb571b {} Ethernet1/5 0001999999999999Ethernet000005............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894832+00 +7bd336df-104b-4493-9657-cb807b670447 {} Ethernet1/6 0001999999999999Ethernet000006............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894873+00 +f0a8858e-ceb5-4232-bbfc-5c657ed9bc67 {} Ethernet1/7 0001999999999999Ethernet000007............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894915+00 +e03fcefc-68bd-4428-b9c7-ab7f64fc2cb2 {} Ethernet1/8 0001999999999999Ethernet000008............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894955+00 +59a9b638-023c-431a-87f8-97250dcf2951 {} Ethernet1/9 0001999999999999Ethernet000009............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.894995+00 +bbcad3b7-5261-4dd0-b952-352a497d5690 {} Ethernet1/10 0001999999999999Ethernet000010............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895036+00 +f36db83c-4c1b-4b65-bc2e-a03ff19014ef {} Ethernet1/11 0001999999999999Ethernet000011............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895077+00 +b06fc3cd-2a42-4acf-a79a-1e750e06407d {} Ethernet1/12 0001999999999999Ethernet000012............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895117+00 +69ecffb0-e945-458e-9ee6-3125b7dca985 {} Ethernet1/13 0001999999999999Ethernet000013............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895156+00 +902937ad-bda2-4177-a54e-64539ebb0bc6 {} Ethernet1/14 0001999999999999Ethernet000014............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895195+00 +0f36aa92-97e5-42f9-831e-af153a715f70 {} Ethernet1/15 0001999999999999Ethernet000015............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895233+00 +9c59d195-07c7-4292-93a4-7db7cc93c955 {} Ethernet1/16 0001999999999999Ethernet000016............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895272+00 +87902a8b-eff0-4149-931f-ed93f8ba4954 {} Ethernet1/17 0001999999999999Ethernet000017............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895312+00 +ec9a5e57-237a-4966-a46d-8f8a277a6157 {} Ethernet1/18 0001999999999999Ethernet000018............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89535+00 +d40bd933-c638-4f02-b245-f2bc267a2e10 {} Ethernet1/19 0001999999999999Ethernet000019............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89539+00 +5c54f875-1318-45ca-9e55-1dbc6e20b9bb {} Ethernet1/20 0001999999999999Ethernet000020............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895429+00 +93dfddbd-3d3c-4a85-993d-1717a4b25597 {} Ethernet1/21 0001999999999999Ethernet000021............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895467+00 +93f054da-184a-4e2e-b894-8f06e2d348d7 {} Ethernet1/22 0001999999999999Ethernet000022............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895506+00 +04b00b64-cdb1-46bc-ba34-bb8ba426415e {} Ethernet1/23 0001999999999999Ethernet000023............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895543+00 +9d05ba43-a483-44d5-b02b-8daedc8a2127 {} Ethernet1/24 0001999999999999Ethernet000024............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895581+00 +e98cfce5-ff24-4135-a561-20d49f51b836 {} Ethernet1/25 0001999999999999Ethernet000025............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895619+00 +bb8d27a5-c92b-4d52-926b-f9cc928ef1d8 {} Ethernet1/26 0001999999999999Ethernet000026............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895658+00 +14635232-31f3-4566-97e4-479149952dd4 {} Ethernet1/27 0001999999999999Ethernet000027............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895696+00 +b01dfc07-20a3-41c5-a876-7ee25175c555 {} Ethernet1/28 0001999999999999Ethernet000028............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895735+00 +51f1eacf-fba7-4d0e-a0a0-be0fc07bcbc2 {} Ethernet1/29 0001999999999999Ethernet000029............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895774+00 +5645ea9f-84f9-4669-a256-6d7be1d5a113 {} Ethernet1/30 0001999999999999Ethernet000030............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895814+00 +8509f7db-bb5f-44d5-baf5-f107a3ce98a4 {} Ethernet1/31 0001999999999999Ethernet000031............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895853+00 +8d5dcebb-84fd-48a5-b493-ac1f5be2a4ef {} Ethernet1/32 0001999999999999Ethernet000032............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895892+00 +a9f44982-f38a-4a23-81d1-a4a076d1b3ff {} Ethernet1/33 0001999999999999Ethernet000033............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89593+00 +8d03a5ba-618a-4ca4-9272-4dd916c4f847 {} Ethernet1/34 0001999999999999Ethernet000034............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.895968+00 +a94e84ed-47ec-4736-8eda-58bf7ddd9948 {} Ethernet1/35 0001999999999999Ethernet000035............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896007+00 +f79c8906-d2f1-4d53-9922-af3fd6c84c54 {} Ethernet1/36 0001999999999999Ethernet000036............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896044+00 +02282d91-5c08-448c-a6e1-49144226bd89 {} Ethernet1/37 0001999999999999Ethernet000037............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896083+00 +daf33031-7b6a-4672-9d41-3220eee9671c {} Ethernet1/38 0001999999999999Ethernet000038............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896121+00 +6247e94c-b578-4f95-8a58-b88e020aeb6b {} Ethernet1/39 0001999999999999Ethernet000039............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89616+00 +b14cd6e8-d8ca-4cb9-a1c4-f2eeb6d39d5f {} Ethernet1/40 0001999999999999Ethernet000040............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896199+00 +1f241599-6f7b-4239-a9ae-10cc43996c4a {} Ethernet1/41 0001999999999999Ethernet000041............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896238+00 +3544205b-a19d-4525-a7f7-7ab726ce1d59 {} Ethernet1/42 0001999999999999Ethernet000042............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896276+00 +8220983b-5f71-4a83-b934-4c716f0e419b {} Ethernet1/43 0001999999999999Ethernet000043............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896314+00 +9b415696-8293-4699-8fa5-3bda253e548a {} Ethernet1/44 0001999999999999Ethernet000044............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896352+00 +dbe59084-62a9-449e-b0ac-02d019748d1f {} Ethernet1/45 0001999999999999Ethernet000045............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896389+00 +6370b31c-bd3c-40e8-b858-b0536e0d6821 {} Ethernet1/46 0001999999999999Ethernet000046............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896427+00 +377a7837-8302-4cf4-824c-d40a2de74bea {} Ethernet1/47 0001999999999999Ethernet000047............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896465+00 +469a3662-e31e-445d-ae98-55ba1534bb9a {} Ethernet1/48 0001999999999999Ethernet000048............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896502+00 +812e5b76-98a2-4b30-b502-462a3d02f2d3 {} Ethernet1/49 0001999999999999Ethernet000049............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89654+00 +6d8e4950-5883-402b-b875-e6bd7889cc51 {} Ethernet1/50 0001999999999999Ethernet000050............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896579+00 +67d9f172-71e9-4bfd-9274-daf71fdd6de2 {} Ethernet1/51 0001999999999999Ethernet000051............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896617+00 +547563e6-9f43-4925-9ca7-d49eee533837 {} Ethernet1/52 0001999999999999Ethernet000052............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896655+00 +e169bf4f-fbfa-4181-bcdc-94f9f6a1c922 {} Ethernet1/53 0001999999999999Ethernet000053............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896694+00 +1f8efbe8-9a2d-4370-aa03-cd2e11f8ba9c {} Ethernet1/54 0001999999999999Ethernet000054............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896732+00 +d0931f66-18ba-4f30-b883-c76f2c4bdf01 {} Ethernet1/55 0001999999999999Ethernet000055............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896771+00 +998f8546-0aef-4d5e-b5a7-a271ff2ac65e {} Ethernet1/56 0001999999999999Ethernet000056............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89681+00 +97d12f1c-cd6f-4fc2-ac58-8527a03e3d7a {} Ethernet1/57 0001999999999999Ethernet000057............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896848+00 +6947cc97-7fea-458e-b8b2-e77fa00535ff {} Ethernet1/58 0001999999999999Ethernet000058............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896886+00 +0c0f397f-9aa1-4781-b661-c91c47d7241e {} Ethernet1/59 0001999999999999Ethernet000059............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896925+00 +35873f22-3a40-4a0d-a1b3-1ab8b8ab3723 {} Ethernet1/60 0001999999999999Ethernet000060............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.896963+00 +f8e60fa9-3e15-482a-8e3e-b15464d1c418 {} Ethernet1/61 0001999999999999Ethernet000061............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.897002+00 +7a9f9cf4-5b9c-4a8f-94e4-ad3c216893e0 {} Ethernet1/62 0001999999999999Ethernet000062............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.89704+00 +b0f280a1-d9dc-449e-b590-2283f722ae1e {} Ethernet1/63 0001999999999999Ethernet000063............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.897079+00 +fddfa317-cc52-45b6-882e-a286925cba54 {} Ethernet1/64 0001999999999999Ethernet000064............ 1000base-t f fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.897117+00 +99d70139-f051-46da-9eb5-92402689b0c7 {} mgmt0 9999999999999999mgmt000000............ 1000base-t t fd17743d-d509-44c1-b975-cea0bb46f540 2023-09-19 2023-09-19 08:10:35.897155+00 +5f11ba34-a0db-4080-b74f-6df2921263b6 {} Ethernet1 9999999999999999Ethernet000001............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.929815+00 +ced33b94-240f-445d-9776-47ea666c4d08 {} Ethernet2 9999999999999999Ethernet000002............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.929902+00 +5a067ed9-c027-4eaf-b6f2-4643217fc75d {} Ethernet3 9999999999999999Ethernet000003............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.92995+00 +9c977e26-e992-4df0-9999-d59776b65828 {} Ethernet4 9999999999999999Ethernet000004............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.929992+00 +834b7b95-5b9c-4d57-867b-c9d2f18b1528 {} Ethernet5 9999999999999999Ethernet000005............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930033+00 +1dc3ac1d-d6d3-4e13-8376-8938d091f31b {} Ethernet6 9999999999999999Ethernet000006............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930073+00 +ca2e82c5-aec8-43a4-8d82-7af40bc24cb5 {} Ethernet7 9999999999999999Ethernet000007............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930112+00 +7f73ecf5-d97d-4332-a31c-aaf14135c933 {} Ethernet8 9999999999999999Ethernet000008............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930152+00 +c7d18141-5996-4e26-aa29-b9baa818fc28 {} Ethernet9 9999999999999999Ethernet000009............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930192+00 +bd327a54-44e4-4f4a-badf-4827d7fa9c83 {} Ethernet10 9999999999999999Ethernet000010............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930232+00 +7d2a7c3a-4f74-4ea0-9fdb-30ca390afddc {} Ethernet11 9999999999999999Ethernet000011............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.93029+00 +730f49a6-1545-42e6-8305-3baaef1fb7b5 {} Ethernet12 9999999999999999Ethernet000012............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930332+00 +6d286b89-0d54-4c3e-9681-c35c7fa91b02 {} Ethernet13 9999999999999999Ethernet000013............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930372+00 +f0ac5bde-9683-42c4-897d-30fd6f53d4ec {} Ethernet14 9999999999999999Ethernet000014............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930412+00 +a016261b-6df2-47b7-95ee-0c31f80ca122 {} Ethernet15 9999999999999999Ethernet000015............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930452+00 +a1af1ff9-7185-4c6e-8178-e75eb461d19f {} Ethernet16 9999999999999999Ethernet000016............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930492+00 +5b0c71bd-f2be-49cd-b0b7-86e6a7df2b39 {} Ethernet17 9999999999999999Ethernet000017............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930536+00 +d33a3e04-e8f5-478f-8e71-c3c1061f1fef {} Ethernet18 9999999999999999Ethernet000018............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930576+00 +7caddf53-1c59-4f60-9787-c312574f21d3 {} Ethernet19 9999999999999999Ethernet000019............ 1000base-t f ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930616+00 +8887102c-1286-4e84-8c9e-c500b2bfe219 {} Management1 9999999999999999Management000001............ 1000base-t t ad7e3154-b469-4ba1-b111-46c9e82d5746 2023-09-19 2023-09-19 08:10:35.930656+00 +ff3c4a42-236d-450a-98d8-06a26b1a37a6 {} ge-0/0/0 0000000099999999ge-000000............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957335+00 +87e77e52-31c7-4a89-b714-e64483d0d6a7 {} ge-0/0/1 0000000099999999ge-000001............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957416+00 +5fd396a5-5515-4cc8-b2a2-61329a44fa86 {} ge-0/0/2 0000000099999999ge-000002............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957465+00 +3f0bd529-3d19-4c68-9839-d230702a3479 {} ge-0/0/3 0000000099999999ge-000003............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957509+00 +d077009a-772b-418d-9bc3-bc483ab50498 {} ge-0/0/4 0000000099999999ge-000004............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.95755+00 +323b4af4-6dfd-469c-ae10-636df3636b3e {} ge-0/0/5 0000000099999999ge-000005............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.95759+00 +4b401854-0274-4e81-9fe2-ac9cf30d0555 {} ge-0/0/6 0000000099999999ge-000006............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.95763+00 +dd575d9e-5401-4cba-8f17-5c44bf8e3cc4 {} ge-0/0/7 0000000099999999ge-000007............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.95767+00 +386d4240-2a12-4767-81b8-7c2c1702e584 {} ge-0/0/8 0000000099999999ge-000008............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957709+00 +034d6476-447d-453e-9cb0-e290f6bdf4ec {} ge-0/0/9 0000000099999999ge-000009............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957748+00 +96907939-0bff-4b10-87d3-8732dc895f8d {} ge-0/0/10 0000000099999999ge-000010............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957787+00 +c03c9efa-5a69-4572-b668-b1b0e146574c {} ge-0/0/11 0000000099999999ge-000011............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957827+00 +620a2f76-7933-450b-887d-046b5a2ea1f3 {} ge-0/0/12 0000000099999999ge-000012............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957867+00 +3c917d44-ee02-4f38-bf01-13e8e45c1783 {} ge-0/0/13 0000000099999999ge-000013............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957906+00 +279c3529-970c-4526-9e98-41ea50d387dd {} ge-0/0/14 0000000099999999ge-000014............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957946+00 +87c564d9-9ec9-409b-af06-666bd4a49e47 {} ge-0/0/15 0000000099999999ge-000015............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.957985+00 +771a9c18-1d45-40c3-99e6-5f42d11dec37 {} ge-0/0/16 0000000099999999ge-000016............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.958024+00 +ec817a03-0bef-4007-b437-ed9747a1092e {} ge-0/0/17 0000000099999999ge-000017............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.958063+00 +50cf2b53-db52-4244-98f2-a50131614f8c {} ge-0/0/18 0000000099999999ge-000018............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.958102+00 +dcb742ba-9d88-47cb-8dd1-cd6726f95e91 {} ge-0/0/19 0000000099999999ge-000019............ 1000base-t f e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.95814+00 +278acd2e-55fe-4398-ae8f-9b77625f2945 {} fxp0 9999999999999999fxp000000............ 1000base-t t e202cd25-c9a0-4680-9692-b06523061f75 2023-09-19 2023-09-19 08:10:35.958179+00 +4f0085a7-a4f1-4dd9-80a8-df3c4a7cd225 {} GigabitEthernet1 9999999999999999GigabitEthernet000001............ 1000base-t t 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979416+00 +2a617d6f-83da-4fd7-8b78-5e00f864d40f {} GigabitEthernet2 9999999999999999GigabitEthernet000002............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979495+00 +0bc473db-720e-48c0-964f-ff4ce004a49a {} GigabitEthernet3 9999999999999999GigabitEthernet000003............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979542+00 +50daf7c5-1f15-41cf-8f58-fe4041d028c0 {} GigabitEthernet4 9999999999999999GigabitEthernet000004............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979584+00 +5979fde1-5c94-488a-8302-0916b03c8775 {} GigabitEthernet5 9999999999999999GigabitEthernet000005............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979623+00 +4872ff92-be43-41b2-a484-8c0c3115eb2d {} GigabitEthernet6 9999999999999999GigabitEthernet000006............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979662+00 +27021daa-e5ed-4664-9296-dea8c77a356e {} GigabitEthernet7 9999999999999999GigabitEthernet000007............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979702+00 +d434b1bd-c691-4e38-b718-07e1a9328835 {} GigabitEthernet8 9999999999999999GigabitEthernet000008............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979741+00 +dc6bda4f-e768-4f83-9e74-03b14792e157 {} GigabitEthernet9 9999999999999999GigabitEthernet000009............ 1000base-t f 5e6c528b-fc44-4c84-8432-e29d8dd9e544 2023-09-19 2023-09-19 08:10:35.979781+00 +ca6c17d9-a723-426c-b46b-919ad34db46a {} Ethernet1/1 0001999999999999Ethernet000001............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.224343+00 +26e72077-4a33-4608-8fa0-c01a2318b781 {} Ethernet1/2 0001999999999999Ethernet000002............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.376937+00 +490b0b16-4d63-41bf-83bc-1c92e6811055 {} Ethernet1/3 0001999999999999Ethernet000003............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377009+00 +3d2af855-7bd8-414a-8728-4f26da0cb75d {} Ethernet1/4 0001999999999999Ethernet000004............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377054+00 +5315b791-f4ef-4992-b309-173e640f2871 {} Ethernet1/5 0001999999999999Ethernet000005............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377097+00 +bc28f002-9f2b-4133-a722-e1ed978838f9 {} Ethernet1/6 0001999999999999Ethernet000006............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377138+00 +52101d4a-1ea8-4792-8f59-36bd51fb8329 {} Ethernet1/7 0001999999999999Ethernet000007............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377181+00 +35fd78fd-7536-4f72-be91-27a8935a7263 {} Ethernet1/8 0001999999999999Ethernet000008............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377222+00 +e59f2987-1355-42f8-aa36-973fabcdb7bf {} Ethernet1/9 0001999999999999Ethernet000009............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377263+00 +af0807f7-9299-427d-9328-da0b31c5a602 {} Ethernet1/10 0001999999999999Ethernet000010............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377303+00 +3ed0c3a6-fac4-447f-b61b-842255ec00d9 {} Ethernet1/11 0001999999999999Ethernet000011............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377344+00 +49cd7174-b435-466c-81aa-bff5c1fa51f5 {} Ethernet1/12 0001999999999999Ethernet000012............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377384+00 +7bdae140-b748-46c3-80e0-eafafe1eda59 {} Ethernet1/13 0001999999999999Ethernet000013............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377424+00 +e942c7bc-3fd4-4c1e-8360-36322b3295f2 {} Ethernet1/14 0001999999999999Ethernet000014............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377463+00 +d4d3389d-da5a-4ed5-97d7-0d7fd38f3630 {} Ethernet1/15 0001999999999999Ethernet000015............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377503+00 +06928571-9b48-4a17-82d0-acd667262e70 {} Ethernet1/16 0001999999999999Ethernet000016............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377543+00 +da728665-b3a9-4e0c-8215-2800d1de9413 {} Ethernet1/17 0001999999999999Ethernet000017............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377583+00 +526fef86-252b-4128-a99c-4e0f7fe0d446 {} Ethernet1/18 0001999999999999Ethernet000018............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377622+00 +a21f83c9-7ca3-4525-844c-b5ed404918be {} Ethernet1/19 0001999999999999Ethernet000019............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377661+00 +627a06cc-8dcb-4fb5-8fad-4b059e3f4322 {} Ethernet1/20 0001999999999999Ethernet000020............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.3777+00 +a29cbc38-7a20-47c5-bf54-01220eb64bf7 {} Ethernet1/21 0001999999999999Ethernet000021............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377738+00 +2181c5be-5aed-44c5-9911-7f50d4e30643 {} Ethernet1/22 0001999999999999Ethernet000022............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377777+00 +ff5d54dd-3166-400a-af57-6fcd4f94b2f0 {} Ethernet1/23 0001999999999999Ethernet000023............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377816+00 +58f43daf-f590-48d7-a54f-879c552c4bca {} Ethernet1/24 0001999999999999Ethernet000024............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377855+00 +adec8e90-7b0c-4136-99b4-72a8ca1dd074 {} Ethernet1/25 0001999999999999Ethernet000025............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377894+00 +0b147fc9-57ec-43d0-a7e6-d01d90a152e4 {} Ethernet1/26 0001999999999999Ethernet000026............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377933+00 +c0cce0d4-988a-4cbd-86a1-49bfd14348dd {} Ethernet1/27 0001999999999999Ethernet000027............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.377972+00 +2f80e788-25fe-4c9f-bcbe-1012a9178ccf {} Ethernet1/28 0001999999999999Ethernet000028............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378011+00 +22f1a5e3-541a-4076-b24a-f49e39f2a6ad {} Ethernet1/29 0001999999999999Ethernet000029............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.37805+00 +93dfdf54-cd16-4106-846e-acb5fd53a575 {} Ethernet1/30 0001999999999999Ethernet000030............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378088+00 +94a92ad2-371d-450a-9fbe-d7573fc8ae67 {} Ethernet1/31 0001999999999999Ethernet000031............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378126+00 +a2d6afc4-8139-4ff0-838c-4cf6fa10dc18 {} Ethernet1/32 0001999999999999Ethernet000032............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378165+00 +c685eb00-c947-4d81-9cf3-e4c78888c3a6 {} Ethernet1/33 0001999999999999Ethernet000033............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378203+00 +13fc9843-c422-4454-8719-c2ac8ba8fd51 {} Ethernet1/34 0001999999999999Ethernet000034............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378242+00 +dc91c4d3-4cae-4928-b0d2-a92998e94cbf {} Ethernet1/35 0001999999999999Ethernet000035............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378308+00 +30adef8e-abfe-4459-92ca-2ca12f2df18e {} Ethernet1/36 0001999999999999Ethernet000036............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.37835+00 +c4bb9318-f18c-43c4-b81d-a34798cc2f58 {} Ethernet1/37 0001999999999999Ethernet000037............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378391+00 +84b065b9-3057-4335-876f-1a6b470d2c9b {} Ethernet1/38 0001999999999999Ethernet000038............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378431+00 +9a19c4ca-9749-4457-9176-a5c5b20527ef {} Ethernet1/39 0001999999999999Ethernet000039............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378471+00 +82217b7e-406a-400c-a5ba-3b82d31387c0 {} Ethernet1/40 0001999999999999Ethernet000040............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.37851+00 +1bf71290-737b-492b-8707-82d99801289e {} Ethernet1/41 0001999999999999Ethernet000041............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378549+00 +046d8ea8-5e92-448f-be40-db0a0820c3af {} Ethernet1/42 0001999999999999Ethernet000042............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378588+00 +ac5f74df-6459-4992-b42f-e3be20bd0d79 {} Ethernet1/43 0001999999999999Ethernet000043............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378628+00 +df49a6f7-af2e-46c9-80ba-ce4334dd12f9 {} Ethernet1/44 0001999999999999Ethernet000044............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378669+00 +bf82652f-7f66-4059-9f34-b712fe495bcb {} Ethernet1/45 0001999999999999Ethernet000045............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378709+00 +29cc6c62-a30e-4e6a-89ab-0e0967544100 {} Ethernet1/46 0001999999999999Ethernet000046............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378749+00 +cf1da76a-d5d8-4b0f-8392-100e97d185aa {} Ethernet1/47 0001999999999999Ethernet000047............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378788+00 +d2d651ad-6764-45ce-b865-21635b15ea99 {} Ethernet1/48 0001999999999999Ethernet000048............ 10gbase-t f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378828+00 +460e4e86-91d8-4eba-8235-9859cbffcc8c {} Ethernet1/49 0001999999999999Ethernet000049............ 40gbase-x-qsfpp f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378867+00 +6d268194-6895-495b-8971-82bbcd5fd7b9 {} Ethernet1/50 0001999999999999Ethernet000050............ 40gbase-x-qsfpp f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378907+00 +92e34c45-7690-4534-9ac0-6f7bc5a2c39b {} Ethernet1/51 0001999999999999Ethernet000051............ 40gbase-x-qsfpp f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378945+00 +93aff4f8-27c9-4277-857b-068c2fa49eae {} Ethernet1/52 0001999999999999Ethernet000052............ 40gbase-x-qsfpp f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.378984+00 +78e714ec-77aa-4c59-b810-a6e59d012ecb {} Ethernet1/53 0001999999999999Ethernet000053............ 40gbase-x-qsfpp f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.379022+00 +ec0dddd4-b00e-4fc1-a29a-84d072d76851 {} Ethernet1/54 0001999999999999Ethernet000054............ 40gbase-x-qsfpp f 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.379061+00 +0b0de9c5-413c-4f56-8484-a94600f96a54 {} mgmt0 9999999999999999mgmt000000............ 1000base-t t 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.3791+00 +6b59860e-136a-4426-8c55-cfa763355c8c {} Ethernet1 9999999999999999Ethernet000001............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566137+00 +b9826ea3-949c-47e1-b316-892b5b8d20f5 {} Ethernet2 9999999999999999Ethernet000002............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566213+00 +0ead1932-f911-466b-ae5c-e01ec880fe60 {} Ethernet3 9999999999999999Ethernet000003............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56628+00 +e9ccc89a-3852-4232-864e-4f29030e6490 {} Ethernet4 9999999999999999Ethernet000004............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566326+00 +f337ec41-ccba-4e18-bfa4-cc9ade702a95 {} Ethernet5 9999999999999999Ethernet000005............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566369+00 +14217941-4ded-49f8-a8ff-f4a46daa21e0 {} Ethernet6 9999999999999999Ethernet000006............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56641+00 +c42f3a2d-363f-424c-815f-882f5a671879 {} Ethernet7 9999999999999999Ethernet000007............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566451+00 +1ab6fa09-b613-4d0b-905f-a16d4355a6a5 {} Ethernet8 9999999999999999Ethernet000008............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566491+00 +5e1560b1-2e1f-4005-91b1-651f37b5fb17 {} Ethernet9 9999999999999999Ethernet000009............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566531+00 +9704f7b0-baf7-4a76-a260-5f6d9014b029 {} Ethernet10 9999999999999999Ethernet000010............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566571+00 +929a787c-7a33-4710-b5fe-14b2e55fcbf3 {} Ethernet11 9999999999999999Ethernet000011............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566611+00 +5708212b-f094-46a8-9c31-06c70e2b7d3b {} Ethernet12 9999999999999999Ethernet000012............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566651+00 +1800b5c6-a2da-49af-ae05-752c23962357 {} Ethernet13 9999999999999999Ethernet000013............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566691+00 +4510a54a-d2d5-4223-b6c9-e676ffd5927f {} Ethernet14 9999999999999999Ethernet000014............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566731+00 +79c907c5-1ec8-43f5-b4dc-e2009039b1bf {} Ethernet15 9999999999999999Ethernet000015............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566771+00 +6823243b-4af4-4d23-8c85-c3f42a9f1ec0 {} Ethernet16 9999999999999999Ethernet000016............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566811+00 +3268c68b-0949-4128-bcc3-58e2e6f49ff4 {} Ethernet17 9999999999999999Ethernet000017............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566851+00 +dab1dfb7-3b9b-4d2c-99bf-45f1a19b9b25 {} Ethernet18 9999999999999999Ethernet000018............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566892+00 +ee1ec89c-e927-4f74-ba0c-f02ebc15dcbe {} Ethernet19 9999999999999999Ethernet000019............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566931+00 +2bae91f8-8951-4fac-ac72-281359e432a3 {} Ethernet20 9999999999999999Ethernet000020............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.566971+00 +4549c05c-dfcc-438f-99fd-1fa35730fb6a {} Ethernet21 9999999999999999Ethernet000021............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56701+00 +84ce60e6-64d1-4217-b960-b5ca2e9b62c9 {} Ethernet22 9999999999999999Ethernet000022............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56705+00 +00ae3926-1c4e-4d07-ba10-8442c1b8d3c7 {} Ethernet23 9999999999999999Ethernet000023............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567089+00 +d688b134-7557-4ff2-b79f-e52386721b33 {} Ethernet24 9999999999999999Ethernet000024............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567129+00 +7806fb85-75eb-4fec-b6f6-9ac3a606c34a {} Ethernet25 9999999999999999Ethernet000025............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56717+00 +4252b758-a95d-4fd6-9014-b5819c4e6e03 {} Ethernet26 9999999999999999Ethernet000026............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567211+00 +4c08dc69-1e77-4655-85cc-5cae9bd75db0 {} Ethernet27 9999999999999999Ethernet000027............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567252+00 +90082f81-77c3-4e34-89dd-89f4411a1144 {} Ethernet28 9999999999999999Ethernet000028............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567291+00 +73fcf4b0-7fc2-48e0-b629-223f5c9788a0 {} Ethernet29 9999999999999999Ethernet000029............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567331+00 +7afd32fe-1bc2-4633-9701-98f3e9fda504 {} Ethernet30 9999999999999999Ethernet000030............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567372+00 +4f2a4ef0-d3e3-4495-a119-629a69f7d925 {} Ethernet31 9999999999999999Ethernet000031............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56741+00 +188480a4-ac0e-420b-a5ba-435efb17dd6a {} Ethernet32 9999999999999999Ethernet000032............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567449+00 +9af09902-1a31-47de-adfa-19f7e85b9e53 {} Ethernet33 9999999999999999Ethernet000033............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567487+00 +96b95c74-7552-4821-93a9-460386eaf02f {} Ethernet34 9999999999999999Ethernet000034............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567526+00 +ef2c387b-6bf0-4741-8113-b1834d1c9f19 {} Ethernet35 9999999999999999Ethernet000035............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567565+00 +24f5314f-afa4-4af8-b9c8-4014cec369a9 {} Ethernet36 9999999999999999Ethernet000036............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567604+00 +571af78f-c206-4807-a8f6-8a7dfd37c4e7 {} Ethernet37 9999999999999999Ethernet000037............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567643+00 +a23bd16a-fa20-453b-aaad-bab0df15c523 {} Ethernet38 9999999999999999Ethernet000038............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567682+00 +e546ede6-045b-4c7c-8230-8df35c5e8429 {} Ethernet39 9999999999999999Ethernet000039............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56772+00 +1ef38803-aa55-4c7a-9bb4-21878448c347 {} Ethernet40 9999999999999999Ethernet000040............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567759+00 +89a17bef-66af-4473-bad3-196a6303e314 {} Ethernet41 9999999999999999Ethernet000041............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567797+00 +5791932a-5708-4655-9f11-cb65ce93d46f {} Ethernet42 9999999999999999Ethernet000042............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567835+00 +1141715f-eb9e-4655-b18e-d6e2cfc6de38 {} Ethernet43 9999999999999999Ethernet000043............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567874+00 +18c0d447-8b65-4433-8b96-a348eb12034d {} Ethernet44 9999999999999999Ethernet000044............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567912+00 +5cf8fe31-219d-4376-b7d7-5bebafbbb693 {} Ethernet45 9999999999999999Ethernet000045............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567951+00 +5dabdc6d-c8f4-498a-8cc2-e396ab6e616d {} Ethernet46 9999999999999999Ethernet000046............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.567989+00 +1a6288f9-a778-4b4a-a6b8-468bcef69bf7 {} Ethernet47 9999999999999999Ethernet000047............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.568026+00 +c4d29ef6-17c3-4e84-8124-b94f6a7c2bd0 {} Ethernet48 9999999999999999Ethernet000048............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.568065+00 +895c19cb-4e82-4fc5-92a9-ef1864993157 {} Ethernet49 9999999999999999Ethernet000049............ 10gbase-x-sfpp f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.568104+00 +6df56c0b-1c53-4e16-8e75-ee398d71fccc {} Ethernet50 9999999999999999Ethernet000050............ 10gbase-x-sfpp f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.568142+00 +2ec4d4c8-1697-46c4-882f-229f52328933 {} Ethernet51 9999999999999999Ethernet000051............ 10gbase-x-sfpp f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.56818+00 +2a53b3e2-36db-4d01-8516-a28607ccc64b {} Ethernet52 9999999999999999Ethernet000052............ 10gbase-x-sfpp f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.568218+00 +d4f56e0a-a132-4655-9dbd-40acfd7716e1 {} Management1 9999999999999999Management000001............ 1000base-t f bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.568256+00 +\. + + +-- +-- Data for Name: dcim_inventoryitem; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_inventoryitem (id, _custom_field_data, name, _name, label, description, part_id, serial, asset_tag, discovered, lft, rght, tree_id, level, device_id, manufacturer_id, parent_id, created, last_updated) FROM stdin; +be0fe922-f660-483a-b305-92106f09c597 {} Supervisor Engine 720 Supervisor Engine 00000720 Primary WS-SUP720-3BXL \N f 1 2 1 0 06448d2a-efc7-46ed-835c-b5dcf8178556 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 \N 2023-09-19 2023-09-19 08:11:10.569537+00 +4dfda64d-518c-4be1-b7fe-6b94a4302699 {} Supervisor Engine 720 Supervisor Engine 00000720 Primary WS-SUP720-3BXL \N f 1 2 2 0 c1ad30ce-4757-4bc7-96f1-77522ca019d4 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 \N 2023-09-19 2023-09-19 08:11:10.578084+00 +17857e38-779b-46a8-ab2a-d0f875be7719 {} Supervisor Engine 720 Supervisor Engine 00000720 Primary WS-SUP720-3BXL \N f 1 2 3 0 b150f1d5-6b4c-46a4-8a0e-e6c79280b63b 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 \N 2023-09-19 2023-09-19 08:11:10.583213+00 +e498552c-6beb-4701-9e59-3c4bafc9ee75 {} Supervisor Engine 720 Supervisor Engine 00000720 Primary WS-SUP720-3BXL \N f 1 2 4 0 2646bbfd-1134-4b76-af3d-6ae0927d5916 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 \N 2023-09-19 2023-09-19 08:11:10.588379+00 +a13df2d7-35f0-4849-9411-7ce4f8359a49 {} Supervisor Engine 720 Supervisor Engine 00000720 Primary WS-SUP720-3BXL \N f 1 2 5 0 beabae34-b69a-4aaa-bf44-33ebd7d2e4f9 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 \N 2023-09-19 2023-09-19 08:11:10.593419+00 +4e17c8d1-0263-4fe6-aa5f-9654c0c9b89f {} Supervisor Engine 720 Supervisor Engine 00000720 Primary WS-SUP720-3BXL \N f 1 2 6 0 fa7f3228-db3e-449a-9e99-c5185b5de9b7 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 \N 2023-09-19 2023-09-19 08:11:10.598399+00 +\. + + +-- +-- Data for Name: dcim_location; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_location (id, created, last_updated, _custom_field_data, name, _name, slug, description, location_type_id, parent_id, site_id, status_id, tenant_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_locationtype; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_locationtype (id, created, last_updated, _custom_field_data, name, slug, description, parent_id, nestable) FROM stdin; +\. + + +-- +-- Data for Name: dcim_locationtype_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_locationtype_content_types (id, locationtype_id, contenttype_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_manufacturer; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_manufacturer (id, created, last_updated, _custom_field_data, name, slug, description) FROM stdin; +9e60ff6f-17bc-4041-8576-9503cd63cbf0 2023-09-19 2023-09-19 08:09:43.374488+00 {} Arista arista +3dea386b-6ceb-4eb7-8ec5-065308dc44f8 2023-09-19 2023-09-19 08:09:43.378422+00 {} Cisco cisco +aa792efd-5108-432a-98ff-c8e0d0b27067 2023-09-19 2023-09-19 08:09:43.381739+00 {} Juniper juniper +7178284d-4e11-4fbf-8c68-3765bd9cb499 2023-09-19 2023-09-19 08:09:43.385056+00 {} HP hp +7619d654-bb4b-43fa-a523-dece23b85f04 2023-09-19 2023-09-19 08:09:43.388481+00 {} Mellanox mellanox +78d0bd10-bfff-4e37-acdc-0793fd516053 2023-09-19 2023-09-19 08:09:43.391746+00 {} Meraki meraki +965e30b9-4824-4382-b727-7cca24dc5782 2023-09-19 2023-09-19 08:09:43.395093+00 {} NVIDIA nvidia +7beacfc5-818d-4fbc-97b6-d89305d17455 2023-09-19 2023-09-19 08:09:43.398457+00 {} Opengear opengear +dba4c531-3993-4c17-9b9a-2112d81f3dd6 2023-09-19 2023-09-19 08:09:43.401741+00 {} Palo Alto pan +\. + + +-- +-- Data for Name: dcim_platform; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_platform (id, created, last_updated, _custom_field_data, name, slug, napalm_driver, napalm_args, description, manufacturer_id) FROM stdin; +747f56fb-3012-43e4-923c-aed6195b585c 2023-09-19 2023-09-19 08:09:43.407167+00 {} Cisco IOS cisco_ios ios \N 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +1cd95e01-9d7f-441f-895d-b43b9538e7c1 2023-09-19 2023-09-19 08:09:43.412946+00 {} Cisco ASA cisco_asa asa \N 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +f172062f-db2e-498a-a221-30ea027e8a7b 2023-09-19 2023-09-19 08:09:43.417567+00 {} Cisco IOS-XE cisco_xe ios \N 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +b520bf9c-90ff-4742-a840-9339fec2aaae 2023-09-19 2023-09-19 08:09:43.422141+00 {} Cisco IOS-XR cisco_xr ios \N 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +6868b094-e65b-4476-ba1c-2a047ffd5ca0 2023-09-19 2023-09-19 08:09:43.426962+00 {} Cisco NX-OS cisco_nxos nxos \N 3dea386b-6ceb-4eb7-8ec5-065308dc44f8 +92ba0e90-cfdd-46f2-8607-1365a0bbd9bb 2023-09-19 2023-09-19 08:09:43.431739+00 {} Arista EOS arista_eos eos \N 9e60ff6f-17bc-4041-8576-9503cd63cbf0 +8758fe0f-e52e-43f6-ae17-5b9ebe650914 2023-09-19 2023-09-19 08:09:43.436473+00 {} Juniper Junos juniper_junos junos \N aa792efd-5108-432a-98ff-c8e0d0b27067 +\. + + +-- +-- Data for Name: dcim_powerfeed; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_powerfeed (id, created, last_updated, _custom_field_data, _cable_peer_id, name, type, supply, phase, voltage, amperage, max_utilization, available_power, comments, _cable_peer_type_id, _path_id, cable_id, power_panel_id, rack_id, status_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_poweroutlet; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_poweroutlet (id, _custom_field_data, name, _name, label, description, _cable_peer_id, type, feed_leg, _cable_peer_type_id, _path_id, cable_id, device_id, power_port_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_poweroutlettemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_poweroutlettemplate (id, _custom_field_data, name, _name, label, description, type, feed_leg, device_type_id, power_port_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_powerpanel; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_powerpanel (id, created, last_updated, _custom_field_data, name, rack_group_id, site_id, location_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_powerport; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_powerport (id, _custom_field_data, name, _name, label, description, _cable_peer_id, type, maximum_draw, allocated_draw, _cable_peer_type_id, _path_id, cable_id, device_id, created, last_updated) FROM stdin; +a86994dc-64af-4f33-b9ae-0ec23d33ca26 {} PS1 PS00000001 \N iec-60320-c20 1900 1660 \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 2023-09-19 2023-09-19 08:09:56.476387+00 +64887bd9-9e60-4f9c-898f-ed766bb62d7b {} PS2 PS00000002 \N iec-60320-c20 1900 1660 \N \N \N 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 2023-09-19 2023-09-19 08:09:56.476479+00 +1c638c19-f214-46de-a57c-29999da2fe9e {} PS1 PS00000001 \N iec-60320-c20 1900 1660 \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 2023-09-19 2023-09-19 08:09:57.086017+00 +c12a17aa-97a7-4236-a75d-8597aa277f5c {} PS2 PS00000002 \N iec-60320-c20 1900 1660 \N \N \N bed003a4-068f-493c-8519-b7ff3ab94f63 2023-09-19 2023-09-19 08:09:57.086113+00 +4bbab8ec-3994-4cc3-8128-bbaa44336b46 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c 2023-09-19 2023-09-19 08:09:57.673597+00 +266f8765-d5ac-4dec-a996-a132af33d4dc {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N a6751a1a-e274-445d-ab2f-06ead1cb6d3c 2023-09-19 2023-09-19 08:09:57.673827+00 +b517374c-d171-4534-b6a7-33a84c4347c1 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 2023-09-19 2023-09-19 08:09:58.315878+00 +d9e4039c-cc49-4b72-bb78-2e123eed2eac {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 6be296b5-5db3-407b-915b-ebcfa5d73aa3 2023-09-19 2023-09-19 08:09:58.315963+00 +d75588ee-fdce-4b38-9ab1-44a698064539 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 2023-09-19 2023-09-19 08:09:58.948148+00 +57b80628-3fd4-4903-8041-1768f295fe7f {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 5aa04755-8fbe-4378-97ed-b23f0ac0e928 2023-09-19 2023-09-19 08:09:58.948233+00 +a1684a61-b686-4789-ab4e-f6873af90d8f {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 2023-09-19 2023-09-19 08:09:59.676316+00 +7a614148-435a-4521-b5d7-204930b66972 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 17fa82e4-d0ad-4092-b3c0-1f597bc84883 2023-09-19 2023-09-19 08:09:59.676413+00 +48e2743d-0c3b-491f-8df0-9b080b80d313 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a 2023-09-19 2023-09-19 08:10:00.747501+00 +27cb8989-9a88-4bd9-9d1a-b606f75f9aa6 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 684ba856-7ace-4a36-9c56-e646e71ebb6a 2023-09-19 2023-09-19 08:10:00.747595+00 +e2829adb-4b53-4852-9c44-85aedb90940c {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 2023-09-19 2023-09-19 08:10:01.871437+00 +425fb035-4bb3-4a0b-a0a3-6ccdbb93deb3 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N bb5af4d5-3007-4d6a-8965-10db2ec91b76 2023-09-19 2023-09-19 08:10:01.871526+00 +784fd807-1fdd-4ffb-9cb0-6b0362dd3c08 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 2023-09-19 2023-09-19 08:10:02.929103+00 +2f787645-3c59-4c20-b670-8df78e71bbf4 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 2023-09-19 2023-09-19 08:10:02.929192+00 +32184c65-059f-4613-84f5-db10c5090e6e {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 2023-09-19 2023-09-19 08:10:04.061551+00 +03f16384-5857-434d-a14f-1a21371902a6 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N c2fe5345-d2c7-4214-8406-31b2b2b87aa2 2023-09-19 2023-09-19 08:10:04.061643+00 +0f19917f-19ff-484f-9f52-6dba092db182 {} PS1 PS00000001 \N iec-60320-c20 1900 1660 \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 2023-09-19 2023-09-19 08:10:07.667496+00 +46f5a4c0-e2ce-487c-9ff4-04ec6de39699 {} PS2 PS00000002 \N iec-60320-c20 1900 1660 \N \N \N 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 2023-09-19 2023-09-19 08:10:07.667589+00 +f2e8e7cc-04b9-4496-9180-e6504f7446f3 {} PS1 PS00000001 \N iec-60320-c20 1900 1660 \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc 2023-09-19 2023-09-19 08:10:08.247721+00 +9d62936c-f411-4d54-9ae9-24fcdd8211e5 {} PS2 PS00000002 \N iec-60320-c20 1900 1660 \N \N \N b1d1e038-acb3-468f-810b-5d0f549a66cc 2023-09-19 2023-09-19 08:10:08.247808+00 +c6a783b8-5aef-4ad1-a89f-068e161e3a63 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 2023-09-19 2023-09-19 08:10:08.829589+00 +929dff77-f430-4d96-9ac1-718b7b5cd3f3 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N c2bb0304-fcac-4397-9d63-e7503688aae6 2023-09-19 2023-09-19 08:10:08.829677+00 +48d0fd19-5048-45c8-aec1-ee302f9a45ac {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 2023-09-19 2023-09-19 08:10:09.459142+00 +09374f80-0a31-42db-97fe-c55566a27d10 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 2023-09-19 2023-09-19 08:10:09.459223+00 +99b34e7c-8506-4bc6-b3cb-0fca896ced31 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a 2023-09-19 2023-09-19 08:10:10.097504+00 +65a84682-0474-498b-95ae-1c16e513a04d {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N dbf9eba6-2713-48f9-94df-7fa36fd3880a 2023-09-19 2023-09-19 08:10:10.097592+00 +0d0d11c4-4464-4666-8520-db65d307306b {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 2023-09-19 2023-09-19 08:10:10.792991+00 +79fbb801-6e5a-407a-8b69-0042a4ea0ed1 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N bf032a0f-20ad-4ae4-a37b-a4971292c8b3 2023-09-19 2023-09-19 08:10:10.793074+00 +27b1d912-2779-41cc-92a2-4f33a609993e {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 2023-09-19 2023-09-19 08:10:11.413245+00 +b434abff-985f-49aa-a674-8ce18b0e01d1 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 06fa92a5-cddc-47aa-9a02-22b140d16be6 2023-09-19 2023-09-19 08:10:11.413327+00 +7b2cdce7-bdc8-461a-afc5-589d33c5809f {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 2023-09-19 2023-09-19 08:10:12.039808+00 +3345a1b0-b902-413d-bf72-8469eaa36cb4 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N ebe97465-935f-4bf8-b29a-d0e1100d5528 2023-09-19 2023-09-19 08:10:12.039896+00 +55dbc352-5bfd-4b26-9c56-75b040844a18 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 2023-09-19 2023-09-19 08:10:12.831199+00 +1646ba3d-0772-41b1-8778-fa8ad1d8992e {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 1724a7eb-1663-47da-abaa-00b6271c9754 2023-09-19 2023-09-19 08:10:12.831281+00 +ece0ff24-2819-4f01-aea7-72e07cd901e0 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf 2023-09-19 2023-09-19 08:10:13.456339+00 +a1e91708-d64c-4da1-adbc-bb0cd1053002 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N bf4037a6-1802-48e9-8e95-3fd2326f4bdf 2023-09-19 2023-09-19 08:10:13.456422+00 +7cbd23da-ca1c-4816-a6e4-afd2421c463e {} PS1 PS00000001 \N iec-60320-c20 1900 1660 \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 2023-09-19 2023-09-19 08:10:23.802064+00 +5c8b9786-961b-4c67-8282-020bef13f2a8 {} PS2 PS00000002 \N iec-60320-c20 1900 1660 \N \N \N 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 2023-09-19 2023-09-19 08:10:23.802147+00 +b9cf5502-3e16-4a33-b8cc-8c65f29614ce {} PS1 PS00000001 \N iec-60320-c20 1900 1660 \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 2023-09-19 2023-09-19 08:10:24.34046+00 +97f93a3b-567b-44d4-b46c-8d03434b14be {} PS2 PS00000002 \N iec-60320-c20 1900 1660 \N \N \N 16745b0e-5964-4f3e-99e3-aa1646f275f5 2023-09-19 2023-09-19 08:10:24.340539+00 +823d523b-68c8-4a2a-a481-85eab454b324 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 2023-09-19 2023-09-19 08:10:24.878741+00 +0eef14eb-a374-482f-ada6-f6f6c16b5bb6 {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N ec08f4ed-e461-4aac-8015-9a1daa49fae6 2023-09-19 2023-09-19 08:10:24.87882+00 +a0993d32-d8e3-4cc5-9960-910b57bcec5b {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 2023-09-19 2023-09-19 08:10:25.507355+00 +73a14bcd-ecc8-4855-9606-c63b4906cb8b {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 2023-09-19 2023-09-19 08:10:25.507437+00 +25d7c6eb-3f79-4414-a16f-2ac9b2b35792 {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc 2023-09-19 2023-09-19 08:10:26.090428+00 +096d243a-702e-4b8e-9b74-21af2e4ed7ee {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N 1642541a-a832-42b8-b80b-c661b9fdd9dc 2023-09-19 2023-09-19 08:10:26.090509+00 +ec396809-3bb7-4a51-9125-e3d43998f89d {} PS1 PS00000001 \N iec-60320-c14 334 191 \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 2023-09-19 2023-09-19 08:10:26.680866+00 +2870b7ee-0f4a-40b7-91d9-560ae0a27d7f {} PS2 PS00000002 \N iec-60320-c14 334 191 \N \N \N f23f0755-7e34-4610-a5af-d21f4d669186 2023-09-19 2023-09-19 08:10:26.680948+00 +31c46378-c392-42cf-a168-46c2f70860bc {} PS1 PS00000001 \N iec-60320-c14 460 150 \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 2023-09-19 2023-09-19 08:10:48.608951+00 +a7d443ab-0970-43db-ba96-b7b3936a8d19 {} PS2 PS00000002 \N iec-60320-c14 460 150 \N \N \N cdece2fc-4010-45d0-9949-3de52bb707c5 2023-09-19 2023-09-19 08:10:48.609034+00 +6bc26669-2655-40a1-88f4-2d1c61bcdbff {} Power Supply 1 Power Supply 00000001 \N iec-60320-c14 \N \N \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 2023-09-19 2023-09-19 08:10:48.927325+00 +cdad53f6-68b4-4dfd-af07-8f98a7607740 {} Power Supply 2 Power Supply 00000002 \N iec-60320-c14 \N \N \N \N \N a420d520-ef19-46a3-90a8-6f47be57b3d6 2023-09-19 2023-09-19 08:10:48.927404+00 +0098ddee-9541-4c1c-ac59-616de2fb7e88 {} Power Supply 1 Power Supply 00000001 \N iec-60320-c14 \N \N \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 2023-09-19 2023-09-19 08:10:49.236219+00 +894df6ef-d7c1-40da-b37c-1eafd547f503 {} Power Supply 2 Power Supply 00000002 \N iec-60320-c14 \N \N \N \N \N 4620c38c-b222-443c-9e31-98ef97b2e756 2023-09-19 2023-09-19 08:10:49.236303+00 +\. + + +-- +-- Data for Name: dcim_powerporttemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_powerporttemplate (id, _custom_field_data, name, _name, label, description, type, maximum_draw, allocated_draw, device_type_id, created, last_updated) FROM stdin; +4d4526cd-30f2-4054-af62-5906681cc8b8 {} PS1 PS00000001 iec-60320-c14 334 191 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.933539+00 +d4f65d76-806e-4451-ae47-b2340d1eefc1 {} PS2 PS00000002 iec-60320-c14 334 191 08030f83-dcbe-4351-b98a-d5e735fade66 2023-09-19 2023-09-19 08:09:47.933612+00 +7d2b94f4-c6bd-46a3-be05-7213775fafc3 {} PS1 PS00000001 iec-60320-c20 1900 1660 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.157871+00 +695d3107-a31d-4ee0-90e9-d058c1644c65 {} PS2 PS00000002 iec-60320-c20 1900 1660 4102bba0-6355-4099-8dbc-ade709900a05 2023-09-19 2023-09-19 08:09:48.157944+00 +197361e1-e4e1-4c6f-9a86-a55f29d31285 {} Power Supply 1 Power Supply 00000001 iec-60320-c14 \N \N 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.220858+00 +38c8a38f-8624-43b8-86fd-69e2c42b2651 {} Power Supply 2 Power Supply 00000002 iec-60320-c14 \N \N 3da7fc03-2e5e-480e-8fcd-68f626c79f08 2023-09-19 2023-09-19 08:10:48.220928+00 +c458a824-26ac-4302-9052-bec772166cde {} PS1 PS00000001 iec-60320-c14 460 150 bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.563374+00 +57ce8810-8392-4824-8870-7c128cdcdcb9 {} PS2 PS00000002 iec-60320-c14 460 150 bd0220a8-c7d5-4216-b069-b3d866f11bf0 2023-09-19 2023-09-19 08:10:48.563442+00 +\. + + +-- +-- Data for Name: dcim_rack; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_rack (id, created, last_updated, _custom_field_data, name, _name, facility_id, serial, asset_tag, type, width, u_height, desc_units, outer_width, outer_depth, outer_unit, comments, group_id, role_id, site_id, status_id, tenant_id, location_id) FROM stdin; +4851d57f-400b-45d5-8254-a30968ce665f 2023-09-19 2023-09-19 08:09:56.405758+00 {} atl01-101 atl00000001-00000101 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d2a5a9f0-76dd-4032-a792-f94320744e9c 2023-09-19 2023-09-19 08:09:56.410457+00 {} atl01-102 atl00000001-00000102 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +f557ec08-708c-4543-b0bb-805ba238bdb5 2023-09-19 2023-09-19 08:09:56.413854+00 {} atl01-103 atl00000001-00000103 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +b8ab72ab-df4c-415d-be75-acf759283693 2023-09-19 2023-09-19 08:09:56.417091+00 {} atl01-104 atl00000001-00000104 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7260bc91-417a-4237-8865-b46f12fa71ae 2023-09-19 2023-09-19 08:09:56.420484+00 {} atl01-105 atl00000001-00000105 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +477ad3e2-6bc9-4b7f-bbaa-3756bfe7803f 2023-09-19 2023-09-19 08:09:56.423731+00 {} atl01-106 atl00000001-00000106 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +4aa7ed1d-24b6-429a-985c-1f15e48dd55d 2023-09-19 2023-09-19 08:09:56.426998+00 {} atl01-107 atl00000001-00000107 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +1645f307-4c50-4d94-93cc-1870ddb3a4d5 2023-09-19 2023-09-19 08:09:56.43024+00 {} atl01-108 atl00000001-00000108 \N \N 4-post-frame 19 48 f \N \N \N \N b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +cfc25d49-505e-4d41-a238-45212229fb5c 2023-09-19 2023-09-19 08:10:07.620388+00 {} pek01-101 pek00000001-00000101 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ad31bac2-a109-4cb3-aac7-5b0168201718 2023-09-19 2023-09-19 08:10:07.623396+00 {} pek01-102 pek00000001-00000102 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +669ff4b2-3613-4126-8c94-6ec633605908 2023-09-19 2023-09-19 08:10:07.626393+00 {} pek01-103 pek00000001-00000103 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6ee94af6-bcc4-4a83-a50c-9f24f280f11e 2023-09-19 2023-09-19 08:10:07.629441+00 {} pek01-104 pek00000001-00000104 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +71119628-1f47-412c-93c6-6e5d54d14a89 2023-09-19 2023-09-19 08:10:07.632543+00 {} pek01-105 pek00000001-00000105 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +f02932bb-a31d-4063-8a01-2e03135942ea 2023-09-19 2023-09-19 08:10:07.635545+00 {} pek01-106 pek00000001-00000106 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ad48dcdb-4af9-4696-9110-03d203a534ac 2023-09-19 2023-09-19 08:10:07.638527+00 {} pek01-107 pek00000001-00000107 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c64be28e-8586-47b4-9f83-6d203ac60cd9 2023-09-19 2023-09-19 08:10:07.641581+00 {} pek01-108 pek00000001-00000108 \N \N 4-post-frame 19 48 f \N \N \N \N ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +714ca75d-083d-4de2-86ec-91462e454f88 2023-09-19 2023-09-19 08:10:23.752114+00 {} bre01-101 bre00000001-00000101 \N \N 4-post-frame 19 48 f \N \N \N \N fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +79101516-edd8-4fc4-8ac8-8f03881c14aa 2023-09-19 2023-09-19 08:10:23.75557+00 {} bre01-102 bre00000001-00000102 \N \N 4-post-frame 19 48 f \N \N \N \N fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +e6bddf2a-db84-4400-b5f6-fb86ba385f48 2023-09-19 2023-09-19 08:10:23.758621+00 {} bre01-103 bre00000001-00000103 \N \N 4-post-frame 19 48 f \N \N \N \N fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +5dddf39b-002a-4561-8596-6e9f9fbdc2c1 2023-09-19 2023-09-19 08:10:23.761633+00 {} bre01-104 bre00000001-00000104 \N \N 4-post-frame 19 48 f \N \N \N \N fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +c6952bd7-9c1b-42fa-affb-918ab3205eb2 2023-09-19 2023-09-19 08:10:39.9584+00 {} jcy-rack-01 jcy-rack-00000001 \N \N 4-post-frame 19 24 f \N \N \N \N a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +11a03141-2d38-4aff-8c12-ad5d5643949b 2023-09-19 2023-09-19 08:10:39.976089+00 {} jcy-rack-02 jcy-rack-00000002 \N \N 4-post-frame 19 48 f \N \N \N \N a84d3000-72c6-48f5-adcd-245491ddd6f3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +4e48af22-9aea-42d4-b3f8-d457274fd1d5 2023-09-19 2023-09-19 08:10:39.994744+00 {} nyc-rack-01 nyc-rack-00000001 \N \N 4-post-frame 19 48 f \N \N \N \N ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +2e016756-1b1c-4f73-80ac-0f4f845815a7 2023-09-19 2023-09-19 08:10:40.012326+00 {} nyc-rack-02 nyc-rack-00000002 \N \N 4-post-frame 19 48 f \N \N \N \N ceb86423-d80f-4f63-b489-220ba69449c9 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +83872b5c-1a21-44dc-aca6-1995a9c3daa3 2023-09-19 2023-09-19 08:10:49.557119+00 {} wee-101 wee-00000101 \N \N 4-post-frame 19 42 f \N \N \N \N 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +ba225b65-68b4-4724-bcad-cc5715e22666 2023-09-19 2023-09-19 08:10:49.573767+00 {} wee-102 wee-00000102 \N \N 4-post-frame 19 42 f \N \N \N \N 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +1ef378ee-b3c0-4ee6-acca-21ed786a8613 2023-09-19 2023-09-19 08:10:49.590341+00 {} wee-103 wee-00000103 \N \N 4-post-frame 19 42 f \N \N \N \N 505853a9-1db0-4c36-826a-0d03e5ea21b0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +\. + + +-- +-- Data for Name: dcim_rackgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_rackgroup (id, created, last_updated, _custom_field_data, name, slug, description, lft, rght, tree_id, level, parent_id, site_id, location_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_rackreservation; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_rackreservation (id, created, last_updated, _custom_field_data, units, description, rack_id, tenant_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: dcim_rackrole; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_rackrole (id, created, last_updated, _custom_field_data, name, slug, color, description) FROM stdin; +\. + + +-- +-- Data for Name: dcim_rearport; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_rearport (id, _custom_field_data, name, _name, label, description, _cable_peer_id, type, positions, _cable_peer_type_id, cable_id, device_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_rearporttemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_rearporttemplate (id, _custom_field_data, name, _name, label, description, type, positions, device_type_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: dcim_region; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_region (id, created, last_updated, _custom_field_data, name, slug, description, lft, rght, tree_id, level, parent_id) FROM stdin; +c4152749-4144-49a5-aad8-6fff492a11e1 2023-09-19 2023-09-19 08:10:35.646402+00 {} networktocode networktocode 1 2 6 0 \N +ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb 2023-09-19 2023-09-19 08:09:41.209197+00 {} Oceania oceania 1 48 5 0 \N +76b4b137-424b-4452-bcab-3798bbc2fca4 2023-09-19 2023-09-19 08:09:41.25228+00 {} Tokelau tokelau 38 39 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +77f710ff-d4bb-46bc-8036-01ac230c74b7 2023-09-19 2023-09-19 08:09:41.30368+00 {} Niue niue 26 27 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +12fdc16b-7c4d-4327-a4a1-714060328c3c 2023-09-19 2023-09-19 08:09:41.479086+00 {} Nauru nauru 20 21 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +72a7286f-305f-4a22-975b-83dd50bf62f5 2023-09-19 2023-09-19 08:09:41.491399+00 {} Wallis and Futuna wallis-and-futuna 46 47 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +66c44f6e-7738-408b-971f-03b0d8fdc630 2023-09-19 2023-09-19 08:09:41.223196+00 {} Americas americas 1 110 2 0 \N +1b8f3c77-ed64-40bc-bc83-d5cf79d25693 2023-09-19 2023-09-19 08:09:41.501017+00 {} Tuvalu tuvalu 42 43 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +f3115d77-2f2a-489a-959d-669d02195420 2023-09-19 2023-09-19 08:09:41.630487+00 {} Northern Mariana Islands northern-mariana-islands 28 29 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +b5435dab-445c-485f-a631-f1feedb22267 2023-09-19 2023-09-19 08:09:41.518765+00 {} Cook Islands cook-islands 6 7 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +c381b7f0-bf20-4282-8fb9-b7fdb943ab2e 2023-09-19 2023-09-19 08:09:41.526728+00 {} Palau palau 30 31 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +bd3daf26-1ebd-45f2-980d-42c206d8b08a 2023-09-19 2023-09-19 08:09:41.639211+00 {} Marshall Islands marshall-islands 16 17 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +32406986-75d3-449b-ae3a-42a040495f5b 2023-09-19 2023-09-19 08:09:41.510719+00 {} Anguilla anguilla 2 3 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 2023-09-19 2023-09-19 08:09:41.229507+00 {} Asia asia 1 102 3 0 \N +d50af888-7cf2-4bbc-b160-9ecda6b952e2 2023-09-19 2023-09-19 08:09:41.216733+00 {} Europe europe 1 98 4 0 \N +3ba3f388-70f2-475d-8e66-2fd468d4b228 2023-09-19 2023-09-19 08:09:41.243258+00 {} Vatican City vatican-city 96 97 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +a621319c-89a8-4eaa-a182-15133f7f5511 2023-09-19 2023-09-19 08:09:41.551988+00 {} San Marino san-marino 78 79 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +52194985-340f-4a0f-9cf3-901e32bbcddd 2023-09-19 2023-09-19 08:09:41.236383+00 {} Africa africa 1 116 1 0 \N +51dce7f5-cdca-4fa8-97de-78ffd4cc7fdf 2023-09-19 2023-09-19 08:09:41.442893+00 {} Falkland Islands falkland-islands 46 47 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +3ff0ce93-7a04-4f6b-bd83-2af0c3de29a0 2023-09-19 2023-09-19 08:09:41.452749+00 {} Montserrat montserrat 70 71 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +2f8709af-cdb0-4089-9404-24c562319d83 2023-09-19 2023-09-19 08:09:41.460977+00 {} Saint Pierre and Miquelon saint-pierre-and-miquelon 90 91 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +0dd25bcf-57cf-4a56-a231-104343fb56a3 2023-09-19 2023-09-19 08:09:41.614332+00 {} American Samoa american-samoa 2 3 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +5e1d7d2b-67aa-4ee0-90d6-4f8dbb82d783 2023-09-19 2023-09-19 08:09:41.544509+00 {} Gibraltar gibraltar 34 35 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +21f56b07-9887-4fdd-89dd-23caca392847 2023-09-19 2023-09-19 08:09:41.559463+00 {} Liechtenstein liechtenstein 50 51 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +5f35e611-d17b-4ecf-88c6-7d2bf4b85186 2023-09-19 2023-09-19 08:09:41.58215+00 {} Monaco monaco 62 63 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +70055c09-9ff5-405c-bc58-891af609f98e 2023-09-19 2023-09-19 08:09:41.469684+00 {} Saint Barthelemy saint-barthelemy 82 83 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +c495cce1-2b43-4976-979a-e696b59283f1 2023-09-19 2023-09-19 08:09:41.62274+00 {} Greenland greenland 50 51 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +27c4f497-2a21-4487-be84-72a8e535db30 2023-09-19 2023-09-19 08:09:41.567015+00 {} Turks and Caicos Islands turks-and-caicos-islands 100 101 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +5fff5ef7-bae7-4f8e-a0de-4c69208c5459 2023-09-19 2023-09-19 08:09:41.536572+00 {} British Virgin Islands british-virgin-islands 22 23 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +81223be8-bf5a-41ac-a51f-7daa92ac04eb 2023-09-19 2023-09-19 08:09:41.597713+00 {} Faroe Islands faroe-islands 26 27 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +38ae7f4f-7fe1-467a-9534-700c88c29e14 2023-09-19 2023-09-19 08:09:41.671098+00 {} Andorra andorra 4 5 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +e7bfe8f8-5028-42cd-b37a-239d432829f1 2023-09-19 2023-09-19 08:09:41.686828+00 {} Antigua and Barbuda antigua-and-barbuda 4 5 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +c9ed497d-98bc-44f3-a96a-ab626063f6b5 2023-09-19 2023-09-19 08:09:41.678991+00 {} Isle of Man isle-of-man 44 45 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +43d6b529-31e5-48cc-b847-68562398d8be 2023-09-19 2023-09-19 08:09:41.87514+00 {} Iceland iceland 40 41 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +2f9249cc-da21-4711-9ac4-1a2fef6a0912 2023-09-19 2023-09-19 08:09:41.713198+00 {} Tonga tonga 40 41 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +362e83ff-99e9-4a24-a1a7-733bc4df613a 2023-09-19 2023-09-19 08:09:41.852641+00 {} New Caledonia new-caledonia 22 23 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +7eb3f035-bfac-4147-8f5b-b4ddbeefe2a4 2023-09-19 2023-09-19 08:09:41.745589+00 {} Micronesia micronesia 18 19 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +68380237-02c3-41c7-93f5-cf8550dc55b5 2023-09-19 2023-09-19 08:09:41.759132+00 {} Kiribati kiribati 14 15 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +9f9a1dcc-44b3-4a34-be59-991daa2b5e2d 2023-09-19 2023-09-19 08:09:41.77986+00 {} Guam guam 12 13 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +76ade67b-b74d-4234-9a14-5bfd1d0dce27 2023-09-19 2023-09-19 08:09:41.867629+00 {} Vanuatu vanuatu 44 45 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +56b0d234-bf06-4be9-8263-6c4358b3898c 2023-09-19 2023-09-19 08:09:41.796126+00 {} Samoa samoa 34 35 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +c0491152-8407-43e4-a9fd-e2c0a468285e 2023-09-19 2023-09-19 08:09:41.833728+00 {} French Polynesia french-polynesia 10 11 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +c0c6b828-25a6-4c59-a6cc-3c75a50f7d68 2023-09-19 2023-09-19 08:09:41.817698+00 {} Mayotte mayotte 66 67 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +2b6a9e79-f770-4e84-9674-d354cc33d57e 2023-09-19 2023-09-19 08:09:41.694888+00 {} Seychelles seychelles 88 89 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +73695f2d-69e2-4767-b3a5-922d2842f327 2023-09-19 2023-09-19 08:09:41.806431+00 {} Sao Tome and Principe sao-tome-and-principe 84 85 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +cf65c461-2f3a-4c7d-84ad-0ecb7d82c26b 2023-09-19 2023-09-19 08:09:41.606411+00 {} Saint Kitts and Nevis saint-kitts-and-nevis 84 85 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +c736a546-36fe-49e0-86ae-5a232f0c042f 2023-09-19 2023-09-19 08:09:41.655372+00 {} Cayman Islands cayman-islands 26 27 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +049d7c0f-59c8-4e4b-9b1c-7a3ed426f0f6 2023-09-19 2023-09-19 08:09:41.647159+00 {} Bermuda bermuda 16 17 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +288171a4-6cd7-48fe-aa7e-7a830cdda6b6 2023-09-19 2023-09-19 08:09:41.663103+00 {} Dominica dominica 38 39 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +1b537393-bd87-4b9b-b2c3-5efbe60eba43 2023-09-19 2023-09-19 08:09:41.729662+00 {} Saint Vincent and the Grenadines saint-vincent-and-the-grenadines 92 93 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +29ea86c3-0f3d-4eb1-8d15-d6d54ceb2d02 2023-09-19 2023-09-19 08:09:41.7377+00 {} Grenada grenada 52 53 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +9fd2e4cb-6a8c-4b35-a8c7-a853f942c0a5 2023-09-19 2023-09-19 08:09:41.72121+00 {} Aruba aruba 8 9 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +df56fb6a-adcb-423d-a89e-0d07edbe98f2 2023-09-19 2023-09-19 08:09:41.845159+00 {} Barbados barbados 12 13 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +cb84c25b-9ee7-48a3-9679-f6ea6e2c5149 2023-09-19 2023-09-19 08:09:41.574359+00 {} Saint Martin saint-martin 88 89 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +7679b330-438f-402b-8ab7-3e9e4b987645 2023-09-19 2023-09-19 08:09:41.705339+00 {} United States Virgin Islands united-states-virgin-islands 104 105 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +e982e51e-614a-4f72-84eb-cdd04cd7d869 2023-09-19 2023-09-19 08:09:41.956298+00 {} Western Sahara western-sahara 110 111 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +d2a37e3f-7f0c-49f4-aeb6-74c7d718e57f 2023-09-19 2023-09-19 08:09:42.037522+00 {} Reunion reunion 80 81 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +bd9d9156-6466-4a91-b9ca-9fa5d7ea8e57 2023-09-19 2023-09-19 08:09:41.59009+00 {} Sint Maarten sint-maarten 94 95 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +f6710e07-c373-4d61-99eb-f9c460307658 2023-09-19 2023-09-19 08:09:42.205015+00 {} Namibia namibia 72 73 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +303a07ef-d446-4c11-802c-ab8ae96b7215 2023-09-19 2023-09-19 08:09:42.098571+00 {} Timor-Leste timor-leste 88 89 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +73293666-7b28-4e77-85cb-22361bc9410b 2023-09-19 2023-09-19 08:09:41.921067+00 {} Malta malta 58 59 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +6795058e-30e2-4a85-9d17-1c15bc4d974b 2023-09-19 2023-09-19 08:09:42.179898+00 {} Gabon gabon 36 37 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +145e3020-ddfa-48c5-b0ea-986293a4ccbd 2023-09-19 2023-09-19 08:09:41.890457+00 {} Bahamas bahamas 10 11 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +b017c28d-6d80-4fde-bb40-5fc617434d16 2023-09-19 2023-09-19 08:09:41.990777+00 {} Solomon Islands solomon-islands 36 37 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +e0785111-e863-426b-a7dd-fc8b42710ded 2023-09-19 2023-09-19 08:09:42.046298+00 {} Fiji fiji 8 9 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +ba1982aa-e6d0-46b8-8d97-e996ffb4ffbc 2023-09-19 2023-09-19 08:09:42.348984+00 {} New Zealand new-zealand 24 25 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +689e14b5-a5c8-4355-8d35-c1bff2a62592 2023-09-19 2023-09-19 08:09:41.965083+00 {} Montenegro montenegro 64 65 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +b30ce259-2038-4dce-980a-856a77f7dc81 2023-09-19 2023-09-19 08:09:41.973758+00 {} Luxembourg luxembourg 54 55 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +eb9a7aed-5e17-4963-acee-59af23428f3d 2023-09-19 2023-09-19 08:09:41.770559+00 {} Curacao curacao 36 37 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +ff644e7f-ea3d-49d6-9100-4a032135cb4e 2023-09-19 2023-09-19 08:09:41.905536+00 {} Belize belize 14 15 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +23e12e77-0eed-4e3b-9951-1dbe4d23749f 2023-09-19 2023-09-19 08:09:42.134238+00 {} Latvia latvia 48 49 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +0aa6e5a4-d2e9-4285-8459-9dcee5cf0bc0 2023-09-19 2023-09-19 08:09:41.860295+00 {} French Guiana french-guiana 48 49 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +86ce383d-1ff3-4a1a-920b-616625af1bcd 2023-09-19 2023-09-19 08:09:41.929521+00 {} Maldives maldives 52 53 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +2269322e-7118-493b-a27a-db53ccbc9a1b 2023-09-19 2023-09-19 08:09:41.982251+00 {} Macau macau 48 49 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +0607a83d-3987-4186-8f77-f6593dd18706 2023-09-19 2023-09-19 08:09:41.788085+00 {} Saint Lucia saint-lucia 86 87 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +f77c4393-d54c-4f35-8353-48218d97a3f5 2023-09-19 2023-09-19 08:09:42.213369+00 {} Lithuania lithuania 52 53 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +bdc0e230-fbee-45b7-bce9-b6efa2809699 2023-09-19 2023-09-19 08:09:41.882695+00 {} Martinique martinique 66 67 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +7b8c1a8c-b638-45ff-9f53-2ea80598d030 2023-09-19 2023-09-19 08:09:42.238275+00 {} Qatar qatar 70 71 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +dc07f616-2e41-492a-b232-fbbcd274dc9c 2023-09-19 2023-09-19 08:09:42.107363+00 {} Trinidad and Tobago trinidad-and-tobago 98 99 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +27b396b8-98e7-4e6f-a60d-535a21bdc3fd 2023-09-19 2023-09-19 08:09:42.124808+00 {} Bahrain bahrain 8 9 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +f1ffe974-7f95-46cc-a538-8ad7086f6a3a 2023-09-19 2023-09-19 08:09:42.323054+00 {} Kuwait kuwait 40 41 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +612e4dfe-8423-46e1-bf4f-80badf5ddb58 2023-09-19 2023-09-19 08:09:41.897988+00 {} Guadeloupe guadeloupe 54 55 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +5c70b260-aa68-4380-a1c2-120286890f6a 2023-09-19 2023-09-19 08:09:42.296585+00 {} Georgia georgia 20 21 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +19eb7251-de46-42e9-a87f-28619ca44acb 2023-09-19 2023-09-19 08:09:42.271402+00 {} Mongolia mongolia 54 55 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1c4bc43f-d1c3-40f7-a531-56879ef5966a 2023-09-19 2023-09-19 08:09:42.246572+00 {} Armenia armenia 4 5 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +7a7545db-40a3-48c9-a6d1-eb069906b4c0 2023-09-19 2023-09-19 08:09:42.072511+00 {} Cyprus cyprus 18 19 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +7908518e-0203-48f3-afa6-525ff9e450e1 2023-09-19 2023-09-19 08:09:42.089733+00 {} Estonia estonia 24 25 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +d5e6d2dd-d8ee-4b0c-baba-ff488881b40c 2023-09-19 2023-09-19 08:09:42.229987+00 {} Albania albania 2 3 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +13e0023a-80ca-4aa8-8280-25d93791d2e4 2023-09-19 2023-09-19 08:09:42.263329+00 {} Bosnia and Herzegovina bosnia-and-herzegovina 12 13 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +2dda2fb5-e9ef-47af-b747-507720ba5857 2023-09-19 2023-09-19 08:09:42.153528+00 {} Slovenia slovenia 84 85 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +42883d80-7674-421c-b86a-d7c6a5c7d1a3 2023-09-19 2023-09-19 08:09:41.912746+00 {} Brunei brunei 14 15 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +82ddd471-2b10-4902-ae9d-cc96ed4a38b0 2023-09-19 2023-09-19 08:09:41.938811+00 {} Cape Verde cape-verde 16 17 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +d0680cb9-b565-48ba-ad5f-bd476fdb20eb 2023-09-19 2023-09-19 08:09:41.999117+00 {} Bhutan bhutan 12 13 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +dbd390d7-a74f-471c-a0f2-620caddbdaea 2023-09-19 2023-09-19 08:09:42.116347+00 {} Equatorial Guinea equatorial-guinea 30 31 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +0bc944b0-a140-4a37-ac8a-d330ba469ea8 2023-09-19 2023-09-19 08:09:42.025945+00 {} Comoros comoros 22 23 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +dc6d93d1-8807-407a-aaf4-53ef77f507dd 2023-09-19 2023-09-19 08:09:42.577376+00 {} Papua New Guinea papua-new-guinea 32 33 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +6f62c170-7de8-48bc-af92-de75931957f9 2023-09-19 2023-09-19 08:09:42.288443+00 {} Eritrea eritrea 32 33 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +5c35f3ee-6bf0-49fa-b958-627ea8dea854 2023-09-19 2023-09-19 08:09:42.388515+00 {} Palestine palestine 66 67 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +caeab7bc-9f3e-4fed-b0eb-1fcb0ce117c4 2023-09-19 2023-09-19 08:09:42.602157+00 {} Tajikistan tajikistan 84 85 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +0d22519b-c2c3-4f6d-9d90-e741f4cbd07c 2023-09-19 2023-09-19 08:09:42.396203+00 {} Oman oman 62 63 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +4391a5bc-654b-41f2-b92b-019c0ff3464b 2023-09-19 2023-09-19 08:09:42.489438+00 {} Bulgaria bulgaria 14 15 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +05686981-246f-42c2-8f1b-306ea6b42bfe 2023-09-19 2023-09-19 08:09:42.420061+00 {} Finland finland 28 29 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +c3bae020-26df-412c-92ab-9fd95610b827 2023-09-19 2023-09-19 08:09:42.610133+00 {} United Arab Emirates united-arab-emirates 94 95 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +66810cf1-0045-4286-82b2-6e313b7c6ea6 2023-09-19 2023-09-19 08:09:42.081044+00 {} Mauritius mauritius 64 65 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +e52d11a1-bde2-4325-be99-d9d36e0c8ba7 2023-09-19 2023-09-19 08:09:42.144012+00 {} Guinea-Bissau guinea-bissau 44 45 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +6cddb128-129c-41a9-992c-bd6e4a142fd1 2023-09-19 2023-09-19 08:09:42.171375+00 {} Lesotho lesotho 50 51 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +27ad971b-4c84-4895-b102-d010f80fcacb 2023-09-19 2023-09-19 08:09:42.585489+00 {} Belarus belarus 8 9 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +716f3afa-af1b-4f08-b51d-7359662412bc 2023-09-19 2023-09-19 08:09:42.443177+00 {} Singapore singapore 74 75 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +a2d4fe0e-9eb9-4b35-93b3-30738d78ec3c 2023-09-19 2023-09-19 08:09:42.365314+00 {} Ireland ireland 42 43 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +5bc36599-2f9d-44d1-b13a-9ffcedd0d364 2023-09-19 2023-09-19 08:09:42.063805+00 {} Swaziland swaziland 100 101 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +62afc1e7-1f03-496a-95da-4bfb6e5dd132 2023-09-19 2023-09-19 08:09:41.947347+00 {} Suriname suriname 96 97 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +5bba0f2e-e8da-49ad-972c-51bc5ae21678 2023-09-19 2023-09-19 08:09:42.280355+00 {} Uruguay uruguay 106 107 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +16f8ffdd-e6ce-4315-b43f-3081e06bcbbc 2023-09-19 2023-09-19 08:09:42.569215+00 {} Austria austria 6 7 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +b775ae96-8544-489d-bd18-764fa22d6582 2023-09-19 2023-09-19 08:09:42.450785+00 {} Turkmenistan turkmenistan 92 93 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1c884df4-0c59-4e39-9869-1ef072151653 2023-09-19 2023-09-19 08:09:42.19666+00 {} Gambia gambia 38 39 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +41327cec-7085-4116-9db2-e9a3a19f1244 2023-09-19 2023-09-19 08:09:42.340123+00 {} Mauritania mauritania 62 63 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +0a4b5450-fbf0-4dd5-ab6c-e0fed5e237be 2023-09-19 2023-09-19 08:09:42.466161+00 {} Kyrgyzstan kyrgyzstan 42 43 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +8ae8b8ac-5298-4ee6-a1ed-c7f2561c93af 2023-09-19 2023-09-19 08:09:42.007784+00 {} Guyana guyana 58 59 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +d725f940-f365-423d-8f66-3c195559592d 2023-09-19 2023-09-19 08:09:42.56113+00 {} Israel israel 32 33 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +78274e26-b911-4728-a03b-09ba46292bb5 2023-09-19 2023-09-19 08:09:42.435583+00 {} Denmark denmark 22 23 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +cc6af87a-c88a-492c-b393-0f7852aabb75 2023-09-19 2023-09-19 08:09:42.481518+00 {} Lebanon lebanon 46 47 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +a7c09290-005c-4914-abce-df8ef72013a3 2023-09-19 2023-09-19 08:09:42.513071+00 {} Laos laos 44 45 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +ad9d20aa-6d90-43bf-af5c-ac8f06a89b68 2023-09-19 2023-09-19 08:09:42.221491+00 {} Puerto Rico puerto-rico 80 81 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +dfb93cf9-e4bd-4b7a-b701-1341c6914922 2023-09-19 2023-09-19 08:09:42.331514+00 {} Panama panama 74 75 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +c813adc7-8f3c-47db-8a01-c8644e38994f 2023-09-19 2023-09-19 08:09:42.412365+00 {} Norway norway 68 69 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +6b89c94f-1e4a-4d48-931d-ce8b1e1ee1df 2023-09-19 2023-09-19 08:09:42.254897+00 {} Jamaica jamaica 64 65 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +3f611d4b-23c7-46c8-9fff-1e85e69e46c5 2023-09-19 2023-09-19 08:09:42.314795+00 {} Croatia croatia 16 17 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +61619256-8a35-41da-bc0d-ec4e6d09c8a5 2023-09-19 2023-09-19 08:09:42.404066+00 {} Slovakia slovakia 82 83 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +c6ad36cf-5d9e-48e8-8b3f-c813e95600f8 2023-09-19 2023-09-19 08:09:42.544742+00 {} Serbia serbia 80 81 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +2ba7f5ce-98ff-472e-bbc7-99ef25bbe71e 2023-09-19 2023-09-19 08:09:42.373154+00 {} Costa Rica costa-rica 32 33 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +dbb5f14a-a9ac-4373-89d4-5800057641a4 2023-09-19 2023-09-19 08:09:42.635538+00 {} Portugal portugal 72 73 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +0ad8f3ae-da6a-4a75-bd59-a7b9405a8f47 2023-09-19 2023-09-19 08:09:42.16303+00 {} Macedonia macedonia 56 57 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +731bcce3-ee1b-449d-a40f-7508fab2632f 2023-09-19 2023-09-19 08:09:42.553007+00 {} Switzerland switzerland 90 91 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +0dbcbe4e-c1c7-41f2-8d3c-ba0e255ff04f 2023-09-19 2023-09-19 08:09:42.627648+00 {} Sweden sweden 88 89 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +5b7191d2-b195-4b6b-953f-41f34cfc3d93 2023-09-19 2023-09-19 08:09:42.458536+00 {} El Salvador el-salvador 44 45 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +dda595a8-d0ea-442f-b9dd-041fd9e5f200 2023-09-19 2023-09-19 08:09:42.473682+00 {} Nicaragua nicaragua 72 73 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +adaf6f41-62f6-40d5-b3bc-d853f15e33fd 2023-09-19 2023-09-19 08:09:42.5051+00 {} Paraguay paraguay 76 77 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +29a1c45f-05aa-42f9-9486-a72da76ea1b0 2023-09-19 2023-09-19 08:09:42.306057+00 {} Moldova moldova 60 61 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +7e324514-2570-47f7-96c6-56cf6bb5413b 2023-09-19 2023-09-19 08:09:42.61939+00 {} Honduras honduras 62 63 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +ffdea4a9-73bb-4514-a566-f3740fe954ff 2023-09-19 2023-09-19 08:09:42.680995+00 {} Dominican Republic dominican-republic 40 41 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +6283b6a2-9c19-47fc-9996-0fa4d70e2d93 2023-09-19 2023-09-19 08:09:42.690086+00 {} Cuba cuba 34 35 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +3a671640-fb6c-45df-b8aa-bfbce847e036 2023-09-19 2023-09-19 08:09:42.667115+00 {} Czech Republic czech-republic 20 21 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +2cdb1309-63e0-408c-8b09-3e837ffd7530 2023-09-19 2023-09-19 08:09:42.716473+00 {} Belgium belgium 10 11 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +515ea91c-e96c-4443-96b5-a014d039e561 2023-09-19 2023-09-19 08:09:42.707647+00 {} Haiti haiti 60 61 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +1d1fd8a8-9efd-4b53-93e8-563569c23567 2023-09-19 2023-09-19 08:09:42.876641+00 {} Chile chile 28 29 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +2284143a-bdc8-4fc9-8bd6-d45f74d93086 2023-09-19 2023-09-19 08:09:42.827138+00 {} Ecuador ecuador 42 43 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +29b0cdbb-e802-44bb-912f-f4d38ef9c6e8 2023-09-19 2023-09-19 08:09:42.835502+00 {} Guatemala guatemala 56 57 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +405e8d22-db45-4eb6-846c-3a55ce628b82 2023-09-19 2023-09-19 08:09:42.742903+00 {} Burundi burundi 12 13 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +8a0f2790-a081-4a23-b121-ff05a37cad73 2023-09-19 2023-09-19 08:09:42.751795+00 {} Benin benin 6 7 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +43acb703-da05-4c76-82f4-8b8d6ae445c4 2023-09-19 2023-09-19 08:09:42.936093+00 {} Australia australia 4 5 5 1 ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb +34aa244f-b9f4-48f7-b69f-5277e891885e 2023-09-19 2023-09-19 08:09:42.768752+00 {} Guinea guinea 42 43 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +0a91dbc5-d56a-4e1e-a020-53c802a7f7bf 2023-09-19 2023-09-19 08:09:42.884805+00 {} Malawi malawi 58 59 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +86964c82-7377-4782-88dd-eb5beb9396d3 2023-09-19 2023-09-19 08:09:42.901287+00 {} Burkina Faso burkina-faso 10 11 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +00dbba09-2e20-45e5-a019-a718dc2d82df 2023-09-19 2023-09-19 08:09:42.520959+00 {} Hong Kong hong-kong 22 23 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +4b18f6c0-0932-46c1-84c9-93780b5e148e 2023-09-19 2023-09-19 08:09:42.651291+00 {} Jordan jordan 36 37 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +3db51529-94c6-4397-b766-cd190271e304 2023-09-19 2023-09-19 08:09:42.801874+00 {} Cambodia cambodia 16 17 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +e32f864b-8ab1-4be2-8777-12e2a562f5fd 2023-09-19 2023-09-19 08:09:42.698929+00 {} South Sudan south-sudan 96 97 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +7fb619bd-78f9-480a-974a-187a1ef1fb53 2023-09-19 2023-09-19 08:09:42.734216+00 {} Tunisia tunisia 106 107 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +b5e39acb-1660-4dfb-bbf6-1d7604d4174a 2023-09-19 2023-09-19 08:09:42.760387+00 {} Rwanda rwanda 82 83 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +f45e6e23-331e-4be2-b7e9-0dad480c87af 2023-09-19 2023-09-19 08:09:42.72535+00 {} Bolivia bolivia 18 19 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +7268d17f-ba0e-4c0c-9280-d222606f1651 2023-09-19 2023-09-19 08:09:42.776998+00 {} Zimbabwe zimbabwe 114 115 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +e3fda1c8-41b7-429a-9fef-7fc01bf50ac4 2023-09-19 2023-09-19 08:09:42.785199+00 {} Somalia somalia 92 93 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +9fbfe418-2199-46e8-8066-356c192b1319 2023-09-19 2023-09-19 08:09:42.912134+00 {} Sri Lanka sri-lanka 78 79 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +5f099a00-f8b4-496b-bb86-148d9f794eb5 2023-09-19 2023-09-19 08:09:42.920114+00 {} Taiwan taiwan 82 83 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +935d2f95-1767-4c03-94cd-75b5eaaafa9c 2023-09-19 2023-09-19 08:09:42.94395+00 {} North Korea north-korea 60 61 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +2a2d546d-073e-4d42-add6-3ae1d3707551 2023-09-19 2023-09-19 08:09:42.659146+00 {} Greece greece 36 37 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +bea00263-7788-4f46-8810-c866d806020a 2023-09-19 2023-09-19 08:09:42.868317+00 {} Romania romania 74 75 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +32964463-9343-4376-bd14-e0fd2f629403 2023-09-19 2023-09-19 08:09:42.810413+00 {} Netherlands netherlands 66 67 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +9f62cfc1-c9d2-469c-b481-486fa8923f27 2023-09-19 2023-09-19 08:09:42.643444+00 {} Azerbaijan azerbaijan 6 7 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1429d86d-789b-47ae-9592-3c34ed3990fd 2023-09-19 2023-09-19 08:09:42.843792+00 {} Syria syria 80 81 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1a5bcdc8-7a0a-49f5-b3e8-7782f939e5b9 2023-09-19 2023-09-19 08:09:42.860189+00 {} Kazakhstan kazakhstan 38 39 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +bbe8deec-ce7e-44d2-9266-f4f2f03ba656 2023-09-19 2023-09-19 08:09:43.089987+00 {} Ukraine ukraine 92 93 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +9b390f3e-f4e4-4cc8-af50-18de0f954a4d 2023-09-19 2023-09-19 08:09:43.123077+00 {} Spain spain 86 87 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +07ada7da-687f-410e-b0e9-af0b7fa71ec4 2023-09-19 2023-09-19 08:09:43.074097+00 {} Afghanistan afghanistan 2 3 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +b3752a63-e0dc-438e-b0f6-25ab17c107cb 2023-09-19 2023-09-19 08:09:42.982642+00 {} Nepal nepal 58 59 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +7f9d805e-8a54-4751-a958-edd7a01b25c3 2023-09-19 2023-09-19 08:09:42.989826+00 {} Yemen yemen 100 101 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +75101118-e081-44bb-9518-8d7b29147ffa 2023-09-19 2023-09-19 08:09:43.012383+00 {} Malaysia malaysia 50 51 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +9216c22b-4fdc-46c2-8bd7-c022a36ff9c6 2023-09-19 2023-09-19 08:09:43.082179+00 {} Iraq iraq 30 31 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1634033d-259a-4366-aac7-50e477da76fe 2023-09-19 2023-09-19 08:09:43.03506+00 {} Uzbekistan uzbekistan 96 97 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +f3563523-67b1-47d0-bbf4-e1ecb375cf28 2023-09-19 2023-09-19 08:09:43.04289+00 {} Saudi Arabia saudi-arabia 72 73 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +0e5c6956-0143-4593-b6f8-e9a7cdc9f22f 2023-09-19 2023-09-19 08:09:42.893056+00 {} Mali mali 60 61 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +d6bb0fda-0123-4c3f-ac30-66d0d79e1b6d 2023-09-19 2023-09-19 08:09:42.952285+00 {} Ivory Coast ivory-coast 46 47 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +e52904ae-842d-407d-b856-b66eeff0d619 2023-09-19 2023-09-19 08:09:43.114306+00 {} Argentina argentina 6 7 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +1b77c572-577d-42aa-b5d4-558e536b71b0 2023-09-19 2023-09-19 08:09:42.967781+00 {} Madagascar madagascar 56 57 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +6f7303f7-6af4-436e-b783-91a2b40ffeed 2023-09-19 2023-09-19 08:09:43.147119+00 {} South Korea south-korea 76 77 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +7717db8d-0bb8-454e-b9be-00fb5c555925 2023-09-19 2023-09-19 08:09:43.158542+00 {} Myanmar myanmar 56 57 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +2eaa2a58-054d-4806-aa08-8997e231d816 2023-09-19 2023-09-19 08:09:42.188226+00 {} Botswana botswana 8 9 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +ab1e9624-7790-4ec8-bfe1-ddb2636f20a7 2023-09-19 2023-09-19 08:09:42.793505+00 {} Chad chad 20 21 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +a2590f5a-1f48-426f-b015-013063726956 2023-09-19 2023-09-19 08:09:42.997315+00 {} Ghana ghana 40 41 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +e14a4d1f-9b03-4f85-812c-f56d420a7855 2023-09-19 2023-09-19 08:09:43.004859+00 {} Mozambique mozambique 70 71 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +2f8c3420-f51b-459f-b960-2c6e53e80f6c 2023-09-19 2023-09-19 08:09:42.054976+00 {} Djibouti djibouti 26 27 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +deec35ff-f2d8-4f92-8e8b-4d2be1662c64 2023-09-19 2023-09-19 08:09:43.05822+00 {} Poland poland 70 71 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +81e60064-8796-4435-abdf-031cbbda5ee1 2023-09-19 2023-09-19 08:09:42.960079+00 {} Cameroon cameroon 14 15 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +bf5cb384-137a-4ae2-96cd-0968498199d7 2023-09-19 2023-09-19 08:09:42.357063+00 {} Central African Republic central-african-republic 18 19 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +6d2c74f7-4a98-4350-beba-1c424666d57b 2023-09-19 2023-09-19 08:09:42.975104+00 {} Venezuela venezuela 108 109 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +27386a1f-b4e2-4e62-8867-706b0f290d75 2023-09-19 2023-09-19 08:09:43.02769+00 {} Angola angola 4 5 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +2fdec9b5-27e4-4017-adee-aca5821b15bc 2023-09-19 2023-09-19 08:09:43.098058+00 {} Algeria algeria 2 3 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +e216e031-5a4a-4198-8c2e-0c3ab849e12b 2023-09-19 2023-09-19 08:09:42.427801+00 {} Republic of the Congo republic-of-the-congo 78 79 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +e96dfc73-64b3-4902-b007-fce05667f57f 2023-09-19 2023-09-19 08:09:42.818618+00 {} Senegal senegal 86 87 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +67e7aefb-a916-49e3-95a8-fe58b18bdb1d 2023-09-19 2023-09-19 08:09:42.851976+00 {} Zambia zambia 112 113 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +9ebbde71-817f-4874-9c47-4e878a718ca4 2023-09-19 2023-09-19 08:09:43.106086+00 {} Sudan sudan 98 99 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +7d61d8de-967d-47bd-a601-c2acc37459e8 2023-09-19 2023-09-19 08:09:42.528932+00 {} Sierra Leone sierra-leone 90 91 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +07af8432-1e4b-4a3c-ba89-05467422cadf 2023-09-19 2023-09-19 08:09:42.536835+00 {} Togo togo 104 105 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +a4173e9f-fc30-4cb1-bdfe-d4be8acbb07c 2023-09-19 2023-09-19 08:09:43.01988+00 {} Peru peru 78 79 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +93b012a8-7700-45a5-9a9f-823534538ec4 2023-09-19 2023-09-19 08:09:43.139013+00 {} Colombia colombia 30 31 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +fd7ac99b-0156-43e9-b015-b3ed6d8435a7 2023-09-19 2023-09-19 08:09:43.066187+00 {} Canada canada 24 25 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +b1a72dac-6ec8-44ec-b8fb-c3c8de1f9b64 2023-09-19 2023-09-19 08:09:43.130917+00 {} Uganda uganda 108 109 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +14b24bdc-cd73-418a-b529-4da4bb60a898 2023-09-19 2023-09-19 08:09:43.175193+00 {} South Africa south-africa 94 95 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +bf381b74-f1c9-4e8c-bcff-d54a13c5b7ed 2023-09-19 2023-09-19 08:09:43.191125+00 {} Tanzania tanzania 102 103 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +dccada15-a7fa-457c-9c3b-9d5c7c8fe771 2023-09-19 2023-09-19 08:09:43.199149+00 {} France france 30 31 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +4c1346b9-4524-4f9b-b6db-52aed127d1c9 2023-09-19 2023-09-19 08:09:42.594079+00 {} Hungary hungary 38 39 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +cf0f9eaf-8fc6-4ae1-bb53-4540cafd6a4f 2023-09-19 2023-09-19 08:09:43.183237+00 {} Italy italy 46 47 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +c1f3285b-a9c0-49a0-9fb7-1a73e742fdf7 2023-09-19 2023-09-19 08:09:43.318387+00 {} Nigeria nigeria 76 77 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +433db14f-a8f5-4d45-940d-296b5dd29575 2023-09-19 2023-09-19 08:09:43.223044+00 {} Germany germany 32 33 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +24a44999-d607-4841-922a-745df76ab9fd 2023-09-19 2023-09-19 08:09:43.294608+00 {} Mexico mexico 68 69 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +7de9bc1f-f2d7-4fd0-b9f0-1231ddd6a9f2 2023-09-19 2023-09-19 08:09:43.326276+00 {} Brazil brazil 20 21 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +6743689c-cde1-4c86-8e2e-c1854fe7aec5 2023-09-19 2023-09-19 08:09:43.246904+00 {} DR Congo dr-congo 24 25 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +1df229f3-d627-48aa-9a92-cb8147d74375 2023-09-19 2023-09-19 08:09:43.351263+00 {} United States united-states 102 103 2 1 66c44f6e-7738-408b-971f-03b0d8fdc630 +2ae794e9-5aea-46e4-81b5-c2de1f91def4 2023-09-19 2023-09-19 08:09:43.262456+00 {} Egypt egypt 28 29 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +dd055ab5-240a-4c22-8aed-7618ff1dd9d2 2023-09-19 2023-09-19 08:09:42.380899+00 {} Liberia liberia 52 53 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +53409ed0-ccdf-426e-b7c2-9d7742c837d7 2023-09-19 2023-09-19 08:09:42.497306+00 {} Libya libya 54 55 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +c9665e5c-39a3-4c3e-9a8f-f1376e4e9740 2023-09-19 2023-09-19 08:09:43.050594+00 {} Morocco morocco 68 69 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +c30dd4f6-2a0f-4ce4-81c6-a567dd159211 2023-09-19 2023-09-19 08:09:43.166905+00 {} Kenya kenya 48 49 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +a93a0939-c259-488f-806a-b418a94858d0 2023-09-19 2023-09-19 08:09:42.928057+00 {} Niger niger 74 75 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +1f82f225-245d-40a2-abec-adca5a3eefee 2023-09-19 2023-09-19 08:09:43.278369+00 {} Ethiopia ethiopia 34 35 1 1 52194985-340f-4a0f-9cf3-901e32bbcddd +563ed103-99bb-498b-89cf-4070f737c9b2 2023-09-19 2023-09-19 08:09:43.207009+00 {} United Kingdom united-kingdom 94 95 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +4829ee10-0867-4093-8079-191b75a9cba1 2023-09-19 2023-09-19 08:09:43.302471+00 {} Russia russia 76 77 4 1 d50af888-7cf2-4bbc-b160-9ecda6b952e2 +b3832eff-e017-4cc3-9aff-76b5d2b1cd9c 2023-09-19 2023-09-19 08:09:43.310502+00 {} Bangladesh bangladesh 10 11 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +7c6af516-9448-4f63-a1e4-31b6b2118320 2023-09-19 2023-09-19 08:09:43.214893+00 {} Thailand thailand 86 87 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +bd27078a-faf3-4682-9960-cb2beaae5b7f 2023-09-19 2023-09-19 08:09:43.231157+00 {} Iran iran 28 29 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +2791f65e-647e-405b-addc-a34aebc77462 2023-09-19 2023-09-19 08:09:43.238979+00 {} Turkey turkey 90 91 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +52116db2-69db-4b90-ab0d-d28426036041 2023-09-19 2023-09-19 08:09:43.335532+00 {} Pakistan pakistan 64 65 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +66138e69-8c3d-4802-97aa-49b0e4d5f0e5 2023-09-19 2023-09-19 08:09:43.254603+00 {} Vietnam vietnam 98 99 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1b2279bf-1fa9-44ba-9dbf-821f51a890cb 2023-09-19 2023-09-19 08:09:43.343405+00 {} Indonesia indonesia 26 27 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +d4bcc90a-cb3b-4f34-99d5-97e5eac0989b 2023-09-19 2023-09-19 08:09:43.27045+00 {} Philippines philippines 68 69 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1ece1dae-f0ff-4482-953e-6f7a51a50c55 2023-09-19 2023-09-19 08:09:43.286652+00 {} Japan japan 34 35 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +b036cdaa-c3f4-4d30-83c1-6a8898852fa8 2023-09-19 2023-09-19 08:09:43.359775+00 {} India india 24 25 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +1762d848-f7c1-42c5-b18f-a3e9b1775def 2023-09-19 2023-09-19 08:09:43.367867+00 {} China china 18 19 3 1 fc6ba3cf-c89e-4d4f-a770-0ec3653fb012 +\. + + +-- +-- Data for Name: dcim_site; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_site (id, created, last_updated, _custom_field_data, name, _name, slug, facility, asn, time_zone, description, physical_address, shipping_address, latitude, longitude, contact_name, contact_phone, contact_email, comments, region_id, status_id, tenant_id) FROM stdin; +b909f1f1-c702-4adc-80f1-ec5018737592 2023-09-19 2023-09-19 08:09:56.348055+00 {"site_type": "POP"} ATL01 ATL00000001 atl01 Hartsfield–Jackson Atlanta International Airport \N 33.636100 -84.429400 1df229f3-d627-48aa-9a92-cb8147d74375 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 +ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2023-09-19 2023-09-19 08:10:07.578979+00 {"site_type": "POP"} PEK01 PEK00000001 pek01 Beijing Capital International Airport \N 40.079900 116.603100 1762d848-f7c1-42c5-b18f-a3e9b1775def 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 +fdcd398c-6a1b-4713-89d2-de930637a38b 2023-09-19 2023-09-19 08:10:23.696173+00 {"site_type": "POP"} BRE01 BRE00000001 bre01 American Family Field \N 43.028200 -87.971300 1df229f3-d627-48aa-9a92-cb8147d74375 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e +a84d3000-72c6-48f5-adcd-245491ddd6f3 2023-09-19 2023-09-19 08:10:35.678061+00 {} Jersey City Jersey City jcy \N \N \N c4152749-4144-49a5-aad8-6fff492a11e1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf +ceb86423-d80f-4f63-b489-220ba69449c9 2023-09-19 2023-09-19 08:10:35.694461+00 {} New York City New York City nyc \N \N \N c4152749-4144-49a5-aad8-6fff492a11e1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf +505853a9-1db0-4c36-826a-0d03e5ea21b0 2023-09-19 2023-09-19 08:10:48.021498+00 {} Weehawken Weehawken weehawken \N \N \N c4152749-4144-49a5-aad8-6fff492a11e1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf +05652ede-65a8-43bf-baf0-b00fa4e18e46 2023-09-19 2023-09-19 08:11:40.195085+00 {} DFW DFW dfw \N \N \N \N \N \N +f91a3e5e-0819-463e-8755-f372352febaa 2023-09-19 2023-09-19 08:11:40.197205+00 {} HOU HOU hou \N \N \N \N \N \N +\. + + +-- +-- Data for Name: dcim_virtualchassis; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.dcim_virtualchassis (id, created, last_updated, _custom_field_data, name, domain, master_id) FROM stdin; +\. + + +-- +-- Data for Name: django_admin_log; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_admin_log (id, action_time, object_id, object_repr, action_flag, change_message, content_type_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: django_celery_beat_clockedschedule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_celery_beat_clockedschedule (id, clocked_time) FROM stdin; +\. + + +-- +-- Data for Name: django_celery_beat_crontabschedule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_celery_beat_crontabschedule (id, minute, hour, day_of_week, day_of_month, month_of_year, timezone) FROM stdin; +\. + + +-- +-- Data for Name: django_celery_beat_intervalschedule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_celery_beat_intervalschedule (id, every, period) FROM stdin; +\. + + +-- +-- Data for Name: django_celery_beat_periodictask; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_celery_beat_periodictask (id, name, task, args, kwargs, queue, exchange, routing_key, expires, enabled, last_run_at, total_run_count, date_changed, description, crontab_id, interval_id, solar_id, one_off, start_time, priority, headers, clocked_id, expire_seconds) FROM stdin; +\. + + +-- +-- Data for Name: django_celery_beat_periodictasks; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_celery_beat_periodictasks (ident, last_update) FROM stdin; +\. + + +-- +-- Data for Name: django_celery_beat_solarschedule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_celery_beat_solarschedule (id, event, latitude, longitude) FROM stdin; +\. + + +-- +-- Data for Name: django_content_type; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_content_type (id, app_label, model) FROM stdin; +1 circuits circuit +2 dcim cable +3 dcim device +4 dcim interface +5 dcim location +6 dcim powerfeed +7 dcim rack +8 dcim deviceredundancygroup +9 dcim site +10 ipam ipaddress +11 ipam prefix +12 ipam vlan +13 virtualization virtualmachine +14 virtualization vminterface +15 extras customfield +16 extras job +17 nautobot_firewall_models addressobject +18 nautobot_firewall_models addressobjectgroup +19 nautobot_firewall_models fqdn +20 nautobot_firewall_models policy +21 nautobot_firewall_models policyrule +22 nautobot_firewall_models serviceobject +23 nautobot_firewall_models serviceobjectgroup +24 nautobot_firewall_models userobject +25 nautobot_firewall_models userobjectgroup +26 nautobot_firewall_models zone +27 nautobot_firewall_models iprange +28 nautobot_firewall_models natpolicy +29 nautobot_firewall_models natpolicyrule +30 nautobot_firewall_models destaddrgroupm2m +31 nautobot_firewall_models destaddrm2m +32 nautobot_firewall_models zonevrfm2m +33 nautobot_firewall_models zoneinterfacem2m +34 nautobot_firewall_models userobjectgroupm2m +35 nautobot_firewall_models srcuserm2m +36 nautobot_firewall_models srcusergroupm2m +37 nautobot_firewall_models srcaddrm2m +38 nautobot_firewall_models srcaddrgroupm2m +39 nautobot_firewall_models serviceobjectgroupm2m +40 nautobot_firewall_models policyrulem2m +41 nautobot_firewall_models policydynamicgroupm2m +42 nautobot_firewall_models policydevicem2m +43 nautobot_firewall_models fqdnipaddressm2m +44 nautobot_firewall_models addressobjectgroupm2m +45 nautobot_firewall_models capircapolicy +46 nautobot_firewall_models destsvcgroupm2m +47 nautobot_firewall_models destsvcm2m +48 nautobot_firewall_models srcsvcm2m +49 nautobot_firewall_models srcsvcgroupm2m +50 nautobot_firewall_models natorigdestaddrgroupm2m +51 nautobot_firewall_models natorigdestaddrm2m +52 nautobot_firewall_models natorigdestsvcgroupm2m +53 nautobot_firewall_models natorigdestsvcm2m +54 nautobot_firewall_models natorigsrcaddrgroupm2m +55 nautobot_firewall_models natorigsrcaddrm2m +56 nautobot_firewall_models natorigsrcsvcgroupm2m +57 nautobot_firewall_models natorigsrcsvcm2m +58 nautobot_firewall_models nattranssrcsvcm2m +59 nautobot_firewall_models nattranssrcsvcgroupm2m +60 nautobot_firewall_models nattranssrcaddrm2m +61 nautobot_firewall_models nattranssrcaddrgroupm2m +62 nautobot_firewall_models nattransdestsvcm2m +63 nautobot_firewall_models nattransdestsvcgroupm2m +64 nautobot_firewall_models nattransdestaddrm2m +65 nautobot_firewall_models nattransdestaddrgroupm2m +66 nautobot_firewall_models natsrcuserm2m +67 nautobot_firewall_models natsrcusergroupm2m +68 nautobot_firewall_models natpolicyrulem2m +69 nautobot_firewall_models natpolicynatrulem2m +70 nautobot_firewall_models natpolicydynamicgroupm2m +71 nautobot_firewall_models natpolicydevicem2m +72 nautobot_firewall_models applicationobject +73 nautobot_firewall_models applicationobjectgroup +74 auth permission +75 auth group +77 contenttypes contenttype +78 sessions session +79 social_django association +80 social_django code +81 social_django nonce +82 social_django usersocialauth +83 social_django partial +84 taggit tag +85 taggit taggeditem +86 nautobot_device_lifecycle_mgmt softwarelcm +87 dcim inventoryitem +88 nautobot_device_lifecycle_mgmt contractlcm +89 nautobot_device_lifecycle_mgmt cvelcm +90 admin logentry +91 django_celery_beat crontabschedule +92 django_celery_beat intervalschedule +93 django_celery_beat periodictask +94 django_celery_beat periodictasks +95 django_celery_beat solarschedule +96 django_celery_beat clockedschedule +97 circuits circuittermination +98 circuits circuittype +99 circuits provider +100 circuits providernetwork +101 dcim cablepath +102 dcim consoleport +103 dcim consoleporttemplate +104 dcim consoleserverport +105 dcim consoleserverporttemplate +106 dcim devicebay +107 dcim devicebaytemplate +108 dcim devicerole +109 dcim devicetype +110 dcim frontport +111 dcim frontporttemplate +112 dcim interfacetemplate +113 dcim manufacturer +114 dcim platform +115 dcim poweroutlet +116 dcim poweroutlettemplate +117 dcim powerpanel +118 dcim powerport +119 dcim powerporttemplate +120 dcim rackgroup +121 dcim rackreservation +122 dcim rackrole +123 dcim rearport +124 dcim rearporttemplate +125 dcim region +126 dcim virtualchassis +127 dcim locationtype +128 ipam aggregate +129 ipam rir +130 ipam role +131 ipam routetarget +132 ipam vrf +133 ipam vlangroup +134 ipam service +135 extras configcontext +136 extras customfieldchoice +137 extras customlink +138 extras exporttemplate +139 extras gitrepository +140 extras imageattachment +141 extras jobresult +142 extras relationship +143 extras tag +144 extras webhook +145 extras taggeditem +146 extras status +147 extras relationshipassociation +148 extras objectchange +149 extras graphqlquery +150 extras configcontextschema +151 extras computedfield +152 extras fileattachment +153 extras fileproxy +154 extras healthchecktestmodel +155 extras scheduledjobs +156 extras scheduledjob +157 extras secret +158 extras secretsgroup +159 extras secretsgroupassociation +160 extras joblogentry +161 extras dynamicgroup +162 extras dynamicgroupmembership +163 extras note +164 extras jobhook +165 extras jobbutton +166 tenancy tenantgroup +167 tenancy tenant +168 users user +169 users admingroup +170 users token +171 users objectpermission +172 virtualization cluster +173 virtualization clustergroup +174 virtualization clustertype +175 django_rq queue +176 database constance +177 nautobot_chatops accessgrant +178 nautobot_chatops commandlog +179 nautobot_chatops commandtoken +180 nautobot_data_validation_engine regularexpressionvalidationrule +181 nautobot_data_validation_engine minmaxvalidationrule +182 nautobot_data_validation_engine uniquevalidationrule +183 nautobot_data_validation_engine requiredvalidationrule +184 nautobot_data_validation_engine datacompliance +185 nautobot_device_onboarding onboardingtask +186 nautobot_device_onboarding onboardingdevice +187 nautobot_firewall_models applicationobjectgroupm2m +188 nautobot_firewall_models applicationm2m +189 nautobot_firewall_models applicationgroupm2m +190 nautobot_golden_config compliancefeature +191 nautobot_golden_config compliancerule +192 nautobot_golden_config goldenconfigsetting +193 nautobot_golden_config goldenconfig +194 nautobot_golden_config configreplace +195 nautobot_golden_config configremove +196 nautobot_golden_config configcompliance +197 nautobot_ssot sync +198 nautobot_ssot synclogentry +199 nautobot_bgp_models autonomoussystem +200 nautobot_bgp_models bgproutinginstance +201 nautobot_bgp_models peeringrole +202 nautobot_bgp_models peering +203 nautobot_bgp_models peergrouptemplate +204 nautobot_bgp_models peergroup +205 nautobot_bgp_models peerendpoint +206 nautobot_bgp_models addressfamily +207 nautobot_device_lifecycle_mgmt hardwarelcm +208 nautobot_device_lifecycle_mgmt validatedsoftwarelcm +209 nautobot_device_lifecycle_mgmt providerlcm +210 nautobot_device_lifecycle_mgmt contactlcm +211 nautobot_device_lifecycle_mgmt inventoryitemsoftwarevalidationresult +212 nautobot_device_lifecycle_mgmt devicesoftwarevalidationresult +213 nautobot_device_lifecycle_mgmt vulnerabilitylcm +214 nautobot_device_lifecycle_mgmt softwareimagelcm +\. + + +-- +-- Data for Name: django_migrations; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_migrations (id, app, name, applied) FROM stdin; +1 contenttypes 0001_initial 2023-09-19 08:07:45.860069+00 +2 contenttypes 0002_remove_content_type_name 2023-09-19 08:07:45.869257+00 +3 auth 0001_initial 2023-09-19 08:07:45.905805+00 +4 auth 0002_alter_permission_name_max_length 2023-09-19 08:07:45.911264+00 +5 auth 0003_alter_user_email_max_length 2023-09-19 08:07:45.916827+00 +6 auth 0004_alter_user_username_opts 2023-09-19 08:07:45.923112+00 +7 auth 0005_alter_user_last_login_null 2023-09-19 08:07:45.928417+00 +8 auth 0006_require_contenttypes_0002 2023-09-19 08:07:45.930377+00 +9 auth 0007_alter_validators_add_error_messages 2023-09-19 08:07:45.935617+00 +10 auth 0008_alter_user_username_max_length 2023-09-19 08:07:45.941041+00 +11 auth 0009_alter_user_last_name_max_length 2023-09-19 08:07:45.946519+00 +12 auth 0010_alter_group_name_max_length 2023-09-19 08:07:45.95387+00 +13 auth 0011_update_proxy_permissions 2023-09-19 08:07:45.959295+00 +14 auth 0012_alter_user_first_name_max_length 2023-09-19 08:07:45.964727+00 +15 users 0001_initial 2023-09-19 08:07:46.059072+00 +16 admin 0001_initial 2023-09-19 08:07:46.082527+00 +17 admin 0002_logentry_remove_auto_add 2023-09-19 08:07:46.094105+00 +18 admin 0003_logentry_add_action_flag_choices 2023-09-19 08:07:46.104899+00 +19 extras 0001_initial_part_1 2023-09-19 08:07:46.337538+00 +20 tenancy 0001_initial 2023-09-19 08:07:46.39046+00 +21 dcim 0001_initial_part_1 2023-09-19 08:07:46.66045+00 +22 dcim 0002_initial_part_2 2023-09-19 08:07:46.962386+00 +23 ipam 0001_initial_part_1 2023-09-19 08:07:47.234676+00 +24 extras 0002_initial_part_2 2023-09-19 08:07:47.786856+00 +25 dcim 0003_initial_part_3 2023-09-19 08:07:51.171422+00 +26 virtualization 0001_initial 2023-09-19 08:07:51.942903+00 +27 dcim 0004_initial_part_4 2023-09-19 08:07:55.864575+00 +28 extras 0003_initial_part_3 2023-09-19 08:07:57.214294+00 +29 extras 0004_populate_default_status_records 2023-09-19 08:07:57.881342+00 +30 extras 0005_configcontext_device_types 2023-09-19 08:07:57.9805+00 +31 extras 0006_graphqlquery 2023-09-19 08:07:57.995398+00 +32 extras 0007_configcontextschema 2023-09-19 08:07:58.171523+00 +33 extras 0008_jobresult__custom_field_data 2023-09-19 08:07:58.220571+00 +34 extras 0009_computedfield 2023-09-19 08:07:58.312151+00 +35 extras 0010_change_cf_validation_max_min_field_to_bigint 2023-09-19 08:07:58.423169+00 +36 extras 0011_fileattachment_fileproxy 2023-09-19 08:07:58.483232+00 +37 extras 0012_healthchecktestmodel 2023-09-19 08:07:58.490603+00 +38 extras 0013_default_fallback_value_computedfield 2023-09-19 08:07:58.532915+00 +39 extras 0014_auto_slug 2023-09-19 08:07:58.756382+00 +40 extras 0015_scheduled_job 2023-09-19 08:07:59.188755+00 +41 extras 0016_secret 2023-09-19 08:07:59.559303+00 +42 extras 0017_joblogentry 2023-09-19 08:07:59.652655+00 +43 extras 0018_joblog_data_migration 2023-09-19 08:07:59.740389+00 +44 extras 0019_joblogentry__meta_options__related_name 2023-09-19 08:07:59.833395+00 +45 extras 0020_customfield_changelog 2023-09-19 08:07:59.947438+00 +46 extras 0021_customfield_changelog_data 2023-09-19 08:08:00.267197+00 +47 extras 0022_objectchange_object_datav2 2023-09-19 08:08:00.317455+00 +48 extras 0023_job_model 2023-09-19 08:08:00.733273+00 +49 extras 0024_job_data_migration 2023-09-19 08:08:00.827777+00 +50 extras 0025_add_advanced_ui_boolean_to_customfield_conputedfield_and_relationship 2023-09-19 08:08:00.960061+00 +51 extras 0026_job_add_gitrepository_fk 2023-09-19 08:08:01.386025+00 +52 extras 0027_job_gitrepository_data_migration 2023-09-19 08:08:01.475638+00 +53 extras 0028_job_reduce_source 2023-09-19 08:08:01.545976+00 +54 extras 0029_dynamicgroup 2023-09-19 08:08:01.647217+00 +55 extras 0030_webhook_alter_unique_together 2023-09-19 08:08:01.695852+00 +56 extras 0031_tag_content_types 2023-09-19 08:08:01.793985+00 +57 extras 0032_tag_content_types_data_migration 2023-09-19 08:08:01.905874+00 +58 extras 0033_add__optimized_indexing 2023-09-19 08:08:02.974311+00 +59 extras 0034_alter_fileattachment_mimetype 2023-09-19 08:08:02.982494+00 +60 extras 0035_scheduledjob_crontab 2023-09-19 08:08:03.004119+00 +61 extras 0036_job_add_has_sensitive_variables 2023-09-19 08:08:03.106359+00 +62 extras 0037_configcontextschema__remove_name_unique__create_constraint_unique_name_owner 2023-09-19 08:08:03.203709+00 +63 dcim 0005_device_local_context_schema 2023-09-19 08:08:03.303291+00 +64 dcim 0006_auto_slug 2023-09-19 08:08:03.995336+00 +65 dcim 0007_device_secrets_group 2023-09-19 08:08:04.09582+00 +66 dcim 0008_increase_all_serial_lengths 2023-09-19 08:08:04.282055+00 +67 dcim 0009_add_natural_indexing 2023-09-19 08:08:06.652417+00 +68 dcim 0010_interface_status 2023-09-19 08:08:07.055799+00 +69 dcim 0011_interface_status_data_migration 2023-09-19 08:08:07.163389+00 +70 dcim 0012_interface_parent_bridge 2023-09-19 08:08:07.352459+00 +71 dcim 0013_location_location_type 2023-09-19 08:08:08.250069+00 +72 circuits 0001_initial_part_1 2023-09-19 08:08:08.290875+00 +73 circuits 0002_initial_part_2 2023-09-19 08:08:09.693247+00 +74 circuits 0003_auto_slug 2023-09-19 08:08:09.752966+00 +75 circuits 0004_increase_provider_account_length 2023-09-19 08:08:09.807634+00 +76 circuits 0005_providernetwork 2023-09-19 08:08:10.672019+00 +77 circuits 0006_cache_circuit_terminations 2023-09-19 08:08:10.775192+00 +78 circuits 0007_circuitterminations_primary_model 2023-09-19 08:08:11.060683+00 +79 circuits 0008_add_natural_indexing 2023-09-19 08:08:11.119117+00 +80 circuits 0009_circuittermination_location 2023-09-19 08:08:11.459163+00 +81 database 0001_initial 2023-09-19 08:08:11.474095+00 +82 database 0002_auto_20190129_2304 2023-09-19 08:08:11.482772+00 +83 extras 0038_configcontext_locations 2023-09-19 08:08:11.60158+00 +84 extras 0039_objectchange__add_change_context 2023-09-19 08:08:11.71671+00 +85 extras 0040_dynamicgroup__dynamicgroupmembership 2023-09-19 08:08:11.926276+00 +86 extras 0041_jobresult_job_kwargs 2023-09-19 08:08:11.985497+00 +87 extras 0042_job__add_is_job_hook_receiver 2023-09-19 08:08:12.046191+00 +88 extras 0043_note 2023-09-19 08:08:12.165101+00 +89 extras 0044_add_job_hook 2023-09-19 08:08:12.287758+00 +90 extras 0045_add_custom_field_slug 2023-09-19 08:08:12.342901+00 +91 extras 0046_populate_custom_field_slug_label 2023-09-19 08:08:12.68319+00 +92 extras 0047_enforce_custom_field_slug 2023-09-19 08:08:12.74237+00 +93 extras 0048_alter_objectchange_change_context_detail 2023-09-19 08:08:12.803002+00 +94 extras 0049_alter_tag_slug 2023-09-19 08:08:12.902667+00 +95 extras 0050_customfield_grouping 2023-09-19 08:08:12.958307+00 +96 extras 0051_add_job_task_queues 2023-09-19 08:08:13.07967+00 +97 dcim 0014_location_status_data_migration 2023-09-19 08:08:13.194803+00 +98 dcim 0015_device_components__changeloggedmodel 2023-09-19 08:08:15.397983+00 +99 dcim 0016_device_components__timestamp_data_migration 2023-09-19 08:08:15.521282+00 +100 dcim 0017_locationtype_nestable 2023-09-19 08:08:15.577423+00 +101 dcim 0018_device_redundancy_group 2023-09-19 08:08:16.191472+00 +102 dcim 0019_device_redundancy_group_data_migration 2023-09-19 08:08:16.308242+00 +103 django_celery_beat 0001_initial 2023-09-19 08:08:16.351419+00 +104 django_celery_beat 0002_auto_20161118_0346 2023-09-19 08:08:16.371491+00 +105 django_celery_beat 0003_auto_20161209_0049 2023-09-19 08:08:16.394413+00 +106 django_celery_beat 0004_auto_20170221_0000 2023-09-19 08:08:16.403433+00 +107 django_celery_beat 0005_add_solarschedule_events_choices 2023-09-19 08:08:16.412136+00 +108 django_celery_beat 0006_auto_20180322_0932 2023-09-19 08:08:16.452083+00 +109 django_celery_beat 0007_auto_20180521_0826 2023-09-19 08:08:16.470123+00 +110 django_celery_beat 0008_auto_20180914_1922 2023-09-19 08:08:16.507582+00 +111 django_celery_beat 0006_auto_20180210_1226 2023-09-19 08:08:16.53086+00 +112 django_celery_beat 0006_periodictask_priority 2023-09-19 08:08:16.542853+00 +113 django_celery_beat 0009_periodictask_headers 2023-09-19 08:08:16.553393+00 +114 django_celery_beat 0010_auto_20190429_0326 2023-09-19 08:08:16.781573+00 +115 django_celery_beat 0011_auto_20190508_0153 2023-09-19 08:08:16.802652+00 +116 django_celery_beat 0012_periodictask_expire_seconds 2023-09-19 08:08:16.815046+00 +117 django_celery_beat 0013_auto_20200609_0727 2023-09-19 08:08:16.824424+00 +118 django_celery_beat 0014_remove_clockedschedule_enabled 2023-09-19 08:08:16.832951+00 +119 django_celery_beat 0015_edit_solarschedule_events_choices 2023-09-19 08:08:16.841789+00 +120 django_rq 0001_initial 2023-09-19 08:08:16.847098+00 +121 extras 0052_configcontext_device_redundancy_groups 2023-09-19 08:08:16.972443+00 +122 extras 0053_relationship_required_on 2023-09-19 08:08:17.029421+00 +123 extras 0054_scheduledjob_kwargs_request_user_change 2023-09-19 08:08:17.143103+00 +124 extras 0055_configcontext_dynamic_groups 2023-09-19 08:08:17.271151+00 +125 extras 0056_objectchange_add_reverse_time_idx 2023-09-19 08:08:17.334781+00 +126 extras 0057_jobbutton 2023-09-19 08:08:17.528462+00 +127 extras 0058_jobresult_add_time_status_idxs 2023-09-19 08:08:18.302163+00 +128 ipam 0002_initial_part_2 2023-09-19 08:08:20.914071+00 +129 ipam 0003_remove_max_length 2023-09-19 08:08:21.633122+00 +130 ipam 0004_fixup_p2p_broadcast 2023-09-19 08:08:21.75557+00 +131 ipam 0005_auto_slug 2023-09-19 08:08:21.805458+00 +132 ipam 0006_ipaddress_nat_outside_list 2023-09-19 08:08:21.941266+00 +133 ipam 0007_add_natural_indexing 2023-09-19 08:08:22.837597+00 +134 ipam 0008_prefix_vlan_vlangroup_location 2023-09-19 08:08:23.181755+00 +135 ipam 0009_alter_vlan_name 2023-09-19 08:08:23.300174+00 +136 nautobot_bgp_models 0001_initial 2023-09-19 08:08:24.462002+00 +137 nautobot_chatops 0001_initial 2023-09-19 08:08:24.497297+00 +138 nautobot_chatops 0002_commandlog_params1 2023-09-19 08:08:24.506772+00 +139 nautobot_chatops 0003_params_to_params1 2023-09-19 08:08:24.856528+00 +140 nautobot_chatops 0004_remove_params_rename_params1 2023-09-19 08:08:24.872407+00 +141 nautobot_data_validation_engine 0001_initial 2023-09-19 08:08:25.137492+00 +142 nautobot_data_validation_engine 0002_required_unique_types_regex_context 2023-09-19 08:08:26.164284+00 +143 nautobot_data_validation_engine 0003_datacompliance 2023-09-19 08:08:26.297961+00 +144 nautobot_device_lifecycle_mgmt 0001_hardwarelcm 2023-09-19 08:08:26.753077+00 +145 nautobot_device_lifecycle_mgmt 0002_softwarelcm 2023-09-19 08:08:27.269558+00 +146 nautobot_device_lifecycle_mgmt 0003_service_contracts 2023-09-19 08:08:27.556318+00 +147 nautobot_device_lifecycle_mgmt 0004_validated_software_m2m 2023-09-19 08:08:28.928128+00 +148 nautobot_device_lifecycle_mgmt 0005_software_reporting 2023-09-19 08:08:29.470796+00 +149 nautobot_device_lifecycle_mgmt 0006_cvelcm_vulnerabilitylcm 2023-09-19 08:08:29.785768+00 +150 nautobot_device_lifecycle_mgmt 0007_softwareimagelcm 2023-09-19 08:08:29.967084+00 +151 nautobot_device_lifecycle_mgmt 0008_software_image_data_migration 2023-09-19 08:08:30.1109+00 +152 nautobot_device_lifecycle_mgmt 0009_software_remove_image_fields 2023-09-19 08:08:30.628883+00 +153 nautobot_device_lifecycle_mgmt 0010_softwareimagelcm_hash_algorithm 2023-09-19 08:08:30.726505+00 +154 nautobot_device_lifecycle_mgmt 0011_add_valid_software_field_to_result 2023-09-19 08:08:31.03189+00 +155 nautobot_device_lifecycle_mgmt 0012_add_related_name_to_results_model 2023-09-19 08:08:31.316228+00 +156 nautobot_device_onboarding 0001_initial 2023-09-19 08:08:31.867755+00 +157 nautobot_device_onboarding 0002_create_onboardingdevice 2023-09-19 08:08:32.016838+00 +158 nautobot_device_onboarding 0003_onboardingtask_label 2023-09-19 08:08:32.229374+00 +159 tenancy 0002_auto_slug 2023-09-19 08:08:32.742004+00 +160 nautobot_firewall_models 0001_initial 2023-09-19 08:08:45.039154+00 +161 nautobot_firewall_models 0002_custom_status 2023-09-19 08:08:45.453383+00 +162 nautobot_firewall_models 0003_default_status 2023-09-19 08:08:47.821973+00 +163 nautobot_firewall_models 0004_add_description 2023-09-19 08:08:48.040393+00 +164 nautobot_firewall_models 0005_capircapolicy 2023-09-19 08:08:48.470909+00 +165 nautobot_firewall_models 0006_renaming_part1 2023-09-19 08:08:52.386965+00 +166 nautobot_firewall_models 0007_renaming_part2 2023-09-19 08:08:52.561044+00 +167 nautobot_firewall_models 0008_renaming_part3 2023-09-19 08:08:52.793967+00 +168 nautobot_firewall_models 0009_proper_ordering_on_through 2023-09-19 08:08:52.826665+00 +169 nautobot_firewall_models 0010_nat_policy 2023-09-19 08:09:03.197373+00 +170 nautobot_firewall_models 0011_custom_status_nat 2023-09-19 08:09:03.662905+00 +171 nautobot_firewall_models 0012_remove_status_m2m_through_models 2023-09-19 08:09:04.060606+00 +172 nautobot_firewall_models 0013_applications 2023-09-19 08:09:06.693413+00 +173 nautobot_firewall_models 0014_custom_status_application 2023-09-19 08:09:06.895489+00 +174 nautobot_firewall_models 0015_alter_capircapolicy_device 2023-09-19 08:09:07.078926+00 +175 nautobot_golden_config 0001_initial 2023-09-19 08:09:08.963948+00 +176 nautobot_golden_config 0002_custom_data 2023-09-19 08:09:09.154405+00 +177 nautobot_golden_config 0003_auto_20210510_2356 2023-09-19 08:09:09.712445+00 +178 nautobot_golden_config 0004_auto_20210616_2234 2023-09-19 08:09:10.581187+00 +179 nautobot_golden_config 0005_json_compliance_rule 2023-09-19 08:09:11.69014+00 +180 nautobot_golden_config 0006_multi_repo_support_temp_field 2023-09-19 08:09:12.56072+00 +181 nautobot_golden_config 0007_multi_repo_support_convert_many 2023-09-19 08:09:14.074226+00 +182 nautobot_golden_config 0008_multi_repo_support_final 2023-09-19 08:09:14.577851+00 +183 nautobot_golden_config 0009_multiple_gc_settings_part_1 2023-09-19 08:09:16.380122+00 +184 nautobot_golden_config 0010_multiple_gc_settings_part_2 2023-09-19 08:09:16.582631+00 +185 nautobot_golden_config 0011_multiple_gc_settings_part_3 2023-09-19 08:09:17.646287+00 +186 nautobot_golden_config 0012_multiple_gc_settings_part_4 2023-09-19 08:09:17.835549+00 +187 nautobot_golden_config 0013_multiple_gc_settings_part_5 2023-09-19 08:09:18.22544+00 +188 nautobot_golden_config 0014_convert_sotagg_queries_part1 2023-09-19 08:09:18.344645+00 +189 nautobot_golden_config 0015_convert_sotagg_queries_part2 2023-09-19 08:09:18.811852+00 +190 nautobot_golden_config 0016_convert_sotagg_queries_part3 2023-09-19 08:09:19.121882+00 +191 nautobot_golden_config 0017_convert_sotagg_queries_part4 2023-09-19 08:09:19.309751+00 +192 nautobot_golden_config 0018_convert_sotagg_queries_part5 2023-09-19 08:09:19.428116+00 +193 nautobot_golden_config 0019_convert_dynamicgroup_part_1 2023-09-19 08:09:19.629914+00 +194 nautobot_golden_config 0020_convert_dynamicgroup_part_2 2023-09-19 08:09:20.17152+00 +195 nautobot_golden_config 0021_convert_dynamicgroup_part_3 2023-09-19 08:09:20.494273+00 +196 nautobot_golden_config 0022_alter_configcompliance_options 2023-09-19 08:09:20.616608+00 +197 nautobot_ssot 0001_initial 2023-09-19 08:09:21.045463+00 +198 nautobot_ssot 0002_performance_metrics 2023-09-19 08:09:21.572234+00 +199 nautobot_ssot 0003_alter_synclogentry_textfields 2023-09-19 08:09:21.710351+00 +200 nautobot_ssot 0004_sync_summary 2023-09-19 08:09:21.732595+00 +201 sessions 0001_initial 2023-09-19 08:09:21.747539+00 +202 default 0001_initial 2023-09-19 08:09:22.020289+00 +203 social_auth 0001_initial 2023-09-19 08:09:22.022654+00 +204 default 0002_add_related_name 2023-09-19 08:09:22.213933+00 +205 social_auth 0002_add_related_name 2023-09-19 08:09:22.216041+00 +206 default 0003_alter_email_max_length 2023-09-19 08:09:22.231816+00 +207 social_auth 0003_alter_email_max_length 2023-09-19 08:09:22.233727+00 +208 default 0004_auto_20160423_0400 2023-09-19 08:09:22.259054+00 +209 social_auth 0004_auto_20160423_0400 2023-09-19 08:09:22.261204+00 +210 social_auth 0005_auto_20160727_2333 2023-09-19 08:09:22.273704+00 +211 social_django 0006_partial 2023-09-19 08:09:22.289221+00 +212 social_django 0007_code_timestamp 2023-09-19 08:09:22.302624+00 +213 social_django 0008_partial_timestamp 2023-09-19 08:09:22.316132+00 +214 social_django 0009_auto_20191118_0520 2023-09-19 08:09:22.36414+00 +215 social_django 0010_uid_db_index 2023-09-19 08:09:22.394143+00 +216 taggit 0001_initial 2023-09-19 08:09:22.611135+00 +217 taggit 0002_auto_20150616_2121 2023-09-19 08:09:22.681449+00 +218 taggit 0003_taggeditem_add_unique_index 2023-09-19 08:09:23.033912+00 +219 taggit 0004_alter_taggeditem_content_type_alter_taggeditem_tag 2023-09-19 08:09:23.42259+00 +220 taggit 0005_auto_20220424_2025 2023-09-19 08:09:23.438109+00 +221 users 0002_token_ordering_by_created 2023-09-19 08:09:23.461099+00 +222 virtualization 0002_virtualmachine_local_context_schema 2023-09-19 08:09:23.668109+00 +223 virtualization 0003_vminterface_verbose_name 2023-09-19 08:09:23.788375+00 +224 virtualization 0004_auto_slug 2023-09-19 08:09:23.991481+00 +225 virtualization 0005_add_natural_indexing 2023-09-19 08:09:24.680309+00 +226 virtualization 0006_vminterface_status 2023-09-19 08:09:24.881189+00 +227 virtualization 0007_vminterface_status_data_migration 2023-09-19 08:09:25.087385+00 +228 virtualization 0008_vminterface_parent 2023-09-19 08:09:25.769444+00 +229 virtualization 0009_cluster_location 2023-09-19 08:09:25.973931+00 +230 social_django 0005_auto_20160727_2333 2023-09-19 08:09:25.981648+00 +231 social_django 0003_alter_email_max_length 2023-09-19 08:09:25.983887+00 +232 social_django 0002_add_related_name 2023-09-19 08:09:25.985867+00 +233 social_django 0001_initial 2023-09-19 08:09:25.9879+00 +234 social_django 0004_auto_20160423_0400 2023-09-19 08:09:25.989813+00 +\. + + +-- +-- Data for Name: django_session; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.django_session (session_key, session_data, expire_date) FROM stdin; +\. + + +-- +-- Data for Name: extras_computedfield; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_computedfield (id, created, last_updated, slug, label, description, template, fallback_value, weight, content_type_id, advanced_ui) FROM stdin; +b64d5102-795d-4737-bf3e-e97d8cd95af0 2023-09-19 2023-09-19 08:09:43.714323+00 ntc_description NTC Description Add information on connected device/circuit {{ obj | ntc_description }} Unable to generate the NTC description 100 4 f +3cec5a20-868c-45cc-80de-45d7fccedbef 2023-09-19 2023-09-19 08:09:43.721307+00 ip_ptr_record PTR Record Calculate the PTR record for a given IP address {{ obj.address.ip | ipaddress_address('reverse_pointer') }} Unable to generate the PTR record 100 10 f +24bd5de6-14c9-4575-a59c-6a48ae95d6cf 2023-09-19 2023-09-19 08:09:43.72866+00 ansible_network_os Ansible Network OS Generate the ansible_network_os field for use in Ansible {% if obj.slug == 'arista_eos' %}\narista.eos.eos\n{% elif obj.slug == 'cisco_asa' %}\ncisco.asa.asa\n{% elif obj.slug == 'cisco_ios' %}\ncisco.ios.ios\n{% elif obj.slug == 'cisco_xr' %}\ncisco.iosxr.iosxr\n{% elif obj.slug == 'cisco_xe' %}\ncisco.ios.ios\n{% elif obj.slug == 'cisco_nxos' %}\ncisco.nxos.nxos\n{% elif obj.slug == 'juniper_junos' %}\njunipernetworks.junos.junos\n{% else %}\n{% endif %} not defined 100 114 f +\. + + +-- +-- Data for Name: extras_configcontext; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext (id, created, last_updated, name, owner_object_id, weight, description, is_active, data, owner_content_type_id, schema_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_cluster_groups; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_cluster_groups (id, configcontext_id, clustergroup_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_clusters; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_clusters (id, configcontext_id, cluster_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_device_redundancy_groups; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_device_redundancy_groups (id, configcontext_id, deviceredundancygroup_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_device_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_device_types (id, configcontext_id, devicetype_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_dynamic_groups; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_dynamic_groups (id, configcontext_id, dynamicgroup_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_locations; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_locations (id, configcontext_id, location_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_platforms; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_platforms (id, configcontext_id, platform_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_regions; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_regions (id, configcontext_id, region_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_roles; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_roles (id, configcontext_id, devicerole_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_sites; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_sites (id, configcontext_id, site_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_tags; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_tags (id, configcontext_id, tag_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_tenant_groups; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_tenant_groups (id, configcontext_id, tenantgroup_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontext_tenants; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontext_tenants (id, configcontext_id, tenant_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_configcontextschema; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_configcontextschema (id, created, last_updated, _custom_field_data, name, description, slug, data_schema, owner_object_id, owner_content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_customfield; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_customfield (id, type, name, label, description, required, filter_logic, "default", weight, validation_minimum, validation_maximum, validation_regex, created, last_updated, advanced_ui, slug, "grouping") FROM stdin; +b3635ce9-2c1a-493d-a365-9f33157e397f text role Role f loose \N 100 \N \N 2023-09-19 2023-09-19 08:10:23.651735+00 f role +96f9294d-bcbb-4774-8991-ffbd15c169a7 text site_type Type of Site f loose \N 100 \N \N 2023-09-19 2023-09-19 08:10:23.66477+00 f site_type +\. + + +-- +-- Data for Name: extras_customfield_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_customfield_content_types (id, customfield_id, contenttype_id) FROM stdin; +1 b3635ce9-2c1a-493d-a365-9f33157e397f 4 +2 96f9294d-bcbb-4774-8991-ffbd15c169a7 9 +\. + + +-- +-- Data for Name: extras_customfieldchoice; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_customfieldchoice (id, value, weight, field_id, created, last_updated) FROM stdin; +\. + + +-- +-- Data for Name: extras_customlink; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_customlink (id, created, last_updated, name, text, target_url, weight, group_name, button_class, new_window, content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_dynamicgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_dynamicgroup (_custom_field_data, id, created, last_updated, name, slug, description, filter, content_type_id) FROM stdin; +{} de8dd8c0-7c9a-4b12-872c-f37be374739f 2023-09-19 2023-09-19 08:11:01.481044+00 GoldenConfigSetting Default Settings scope goldenconfigsetting-default-settings-scope Automatically generated for nautobot_golden_config version 1.2.0. {"platform": ["cisco_ios", "cisco_nxos", "arista_eos", "juniper_junos"]} 3 +\. + + +-- +-- Data for Name: extras_dynamicgroupmembership; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_dynamicgroupmembership (id, operator, weight, group_id, parent_group_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_exporttemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_exporttemplate (id, created, last_updated, owner_object_id, name, description, template_code, mime_type, file_extension, content_type_id, owner_content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_fileattachment; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_fileattachment (id, bytes, filename, mimetype) FROM stdin; +\. + + +-- +-- Data for Name: extras_fileproxy; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_fileproxy (id, name, file, uploaded_at) FROM stdin; +\. + + +-- +-- Data for Name: extras_gitrepository; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_gitrepository (id, created, last_updated, _custom_field_data, name, slug, remote_url, branch, current_head, _token, username, provided_contents, secrets_group_id) FROM stdin; +3222e431-ec39-4e67-9c59-86368d52be1b 2023-09-19 2023-09-19 08:11:02.116954+00 {} backups backups https://github.com/nautobot/demo-gc-backups main c8de9fa3fd917a23acb2c2c06d95da03d6912cdd \\x80000000006509579690c0a9c807da0452b10aa38726e47b1401caf375f425979179461adc627847b87c12359ba7beca6d2e5e2c215448f0e340e2182a4c653040a9f1baf37178e8b0 nautobot-gc ["nautobot_golden_config.backupconfigs"] \N +c764f880-fd8e-4b77-a1ed-568d45648629 2023-09-19 2023-09-19 08:11:02.200386+00 {} configs configs https://github.com/nautobot/demo-gc-generated-configs main 7bf95185aea430ce78c8b91d1b4bf48faa43aa7f \\x80000000006509579652c3fcb3ff8e907ea0e3f2b7b958181a6ef6b95241e4940a5ec836b7165d04c224a8436c1c7f3f1927d60cb46463053e2248c92fb60150da1ac4c265c784492a nautobot-gc ["nautobot_golden_config.intendedconfigs"] \N +de7bcb0e-e532-41a6-a98f-39b46fad33e7 2023-09-19 2023-09-19 08:11:03.130364+00 {} data data https://github.com/nautobot/demo-git-datasource main 8235f62de37c23f0bbd408cf117c847ab5f1ba2a \\x800000000065095797a68d3c7b6ed657a79ec72529356142623dcac6320a327fb6cc3afa6eeb7263a6de3a456f6bcd4c6058f2309df488a59a7436d420b0dbba8252ce83d195b84419 nautobot-gc ["extras.configcontext"] \N +79252280-04a5-43e1-a472-9c6d193cace7 2023-09-19 2023-09-19 08:11:06.59208+00 {} templates templates https://github.com/nautobot/demo-gc-templates main c79d9dcaba5cb6dbdf8a70c21f5c7b6861d1d6a2 \\x80000000006509579a90c6a1e2ace1a3b22dc405f0c3f50381508ac7142fe47581cef25f7d0cefc39d10ce6233d78b16a9fded74bd6fb7c026436fb25b86880bc11244d47b12dc2d83 nautobot-gc ["nautobot_golden_config.jinjatemplate"] \N +\. + + +-- +-- Data for Name: extras_graphqlquery; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_graphqlquery (id, created, last_updated, name, slug, query, variables) FROM stdin; +d1d87ebe-4720-4f87-b9c7-096a36ab5d33 2023-09-19 2023-09-19 08:09:47.679056+00 Device Info device-info query ($device_id: ID!) {\n device(id: $device_id) {\n config_context\n hostname: name\n position\n serial\n primary_ip4 {\n id\n primary_ip4_for {\n id\n name\n }\n }\n tenant {\n name\n }\n tags {\n name\n slug\n }\n device_role {\n name\n }\n platform {\n name\n slug\n manufacturer {\n name\n }\n napalm_driver\n }\n site {\n name\n slug\n vlans {\n id\n name\n vid\n }\n vlan_groups {\n id\n }\n }\n interfaces {\n description\n mac_address\n enabled\n name\n ip_addresses {\n address\n tags {\n id\n }\n }\n connected_circuit_termination {\n circuit {\n cid\n commit_rate\n provider {\n name\n }\n }\n }\n tagged_vlans {\n id\n }\n untagged_vlan {\n id\n }\n cable {\n termination_a_type\n status {\n name\n }\n color\n }\n tagged_vlans {\n site {\n name\n }\n id\n }\n tags {\n id\n }\n }\n }\n} {"device_id": ""} +8dc2c8dc-07ef-43ce-9e77-0975744a5115 2023-09-19 2023-09-19 08:09:47.682566+00 Baseball Stadiums baseball-stadiums query {\n sites(tenant: "nautobot-baseball-stadiums") {\n facility\n }\n} {} +9198cd67-0b57-4dc3-9c9a-c01fbd161fb4 2023-09-19 2023-09-19 08:09:47.685549+00 Airports airports query {\n sites(tenant: "nautobot-airports") {\n facility\n }\n} {} +7d94abcf-e5b8-44e0-ae9d-41f66fbc790e 2023-09-19 2023-09-19 08:11:01.178316+00 GoldenConfig SoTAgg Query goldenconfig-sotagg-query query ($device_id: ID!) {\n device(id: $device_id) {\n config_context\n hostname: name\n position\n serial\n primary_ip4 {\n id\n primary_ip4_for {\n id\n name\n }\n }\n tenant {\n name\n }\n tags {\n name\n slug\n }\n device_role {\n name\n }\n platform {\n name\n slug\n manufacturer {\n name\n }\n napalm_driver\n }\n site {\n name\n slug\n vlans {\n id\n name\n vid\n }\n vlan_groups {\n id\n }\n }\n interfaces {\n description\n mac_address\n enabled\n name\n cpf_ntc_description\n ip_addresses {\n address\n tags {\n id\n }\n }\n connected_circuit_termination {\n circuit {\n cid\n commit_rate\n provider {\n name\n }\n }\n }\n tagged_vlans {\n id\n }\n untagged_vlan {\n id\n }\n cable {\n termination_a_type\n status {\n name\n }\n color\n }\n tagged_vlans {\n site {\n name\n }\n id\n }\n tags {\n id\n }\n }\n }\n} {"device_id": ""} +\. + + +-- +-- Data for Name: extras_healthchecktestmodel; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_healthchecktestmodel (id, title) FROM stdin; +\. + + +-- +-- Data for Name: extras_imageattachment; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_imageattachment (id, object_id, image, image_height, image_width, name, created, content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_job; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_job (id, created, last_updated, _custom_field_data, source, module_name, job_class_name, slug, "grouping", name, description, installed, enabled, commit_default, hidden, read_only, approval_required, soft_time_limit, time_limit, grouping_override, name_override, description_override, commit_default_override, hidden_override, read_only_override, approval_required_override, soft_time_limit_override, time_limit_override, git_repository_id, has_sensitive_variables, has_sensitive_variables_override, is_job_hook_receiver, task_queues, task_queues_override, is_job_button_receiver) FROM stdin; +7772a32d-58b5-42a8-bc21-70517d86231e 2023-09-19 2023-09-19 08:09:40.555501+00 {} plugins nautobot_device_lifecycle_mgmt.jobs.lifecycle_reporting DeviceSoftwareValidationFullReport plugins-nautobot_device_lifecycle_mgmt-jobs-lifecycle_reporting-devicesoftwarevalidationfullreport Device/Software Lifecycle Reporting Device Software Validation Report Validates software version on devices. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +3f1dd1b6-5292-4a67-8c88-7c15dccdd39d 2023-09-19 2023-09-19 08:09:40.558495+00 {} plugins nautobot_device_lifecycle_mgmt.jobs.lifecycle_reporting InventoryItemSoftwareValidationFullReport plugins-nautobot_device_lifecycle_mgmt-jobs-lifecycle_reporting-inventoryitemsoftwarevalidationfullreport Device/Software Lifecycle Reporting Inventory Item Software Validation Report Validates software version on inventory items. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +717d1c5c-0cbe-4d7a-ba3b-6eeb6eee6edc 2023-09-19 2023-09-19 08:09:40.524998+00 {} plugins nautobot_data_validation_engine.jobs RunRegisteredDataComplianceRules plugins-nautobot_data_validation_engine-jobs-runregistereddatacompliancerules nautobot_data_validation_engine.jobs Run Registered Data Compliance Rules Runs selected Data Compliance rule classes. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +c8e901d2-8451-414f-9d21-2b6882f48dc6 2023-09-19 2023-09-19 08:09:40.528088+00 {} plugins nautobot_data_validation_engine.jobs DeleteOrphanedDataComplianceData plugins-nautobot_data_validation_engine-jobs-deleteorphaneddatacompliancedata nautobot_data_validation_engine.jobs Delete Orphaned Data Compliance Data Delete any Data Compliance objects where its validated object no longer exists. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +982aa166-c6ae-47d8-89f5-44a9c146e81e 2023-09-19 2023-09-19 08:09:40.531187+00 {} plugins nautobot_firewall_models.jobs RunCapircaJob plugins-nautobot_firewall_models-jobs-runcapircajob Capirca Jobs Generate FW Config via Capirca. Generate FW Config via Capirca and update the models. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +21aa0489-5c8c-421b-b538-41eda8c1d7a6 2023-09-19 2023-09-19 08:09:40.540165+00 {} plugins nautobot_golden_config.jobs ComplianceJob plugins-nautobot_golden_config-jobs-compliancejob Golden Configuration Perform Configuration Compliance Run configuration compliance on your network infrastructure. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +055ac73c-3281-4000-b675-563c820f0948 2023-09-19 2023-09-19 08:09:40.561563+00 {} plugins nautobot_device_lifecycle_mgmt.jobs.cve_tracking GenerateVulnerabilities plugins-nautobot_device_lifecycle_mgmt-jobs-cve_tracking-generatevulnerabilities CVE Tracking Generate Vulnerabilities Generates any missing Vulnerability objects. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +f26d50f8-37bf-45da-8f72-c56e9b8e91eb 2023-09-19 2023-09-19 08:09:40.543196+00 {} plugins nautobot_golden_config.jobs AllGoldenConfig plugins-nautobot_golden_config-jobs-allgoldenconfig Golden Configuration Execute All Golden Configuration Jobs - Single Device Process to run all Golden Configuration jobs configured. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +ccccfa9d-ef40-4a35-a342-565daef4b945 2023-09-19 2023-09-19 08:09:40.546188+00 {} plugins nautobot_golden_config.jobs AllDevicesGoldenConfig plugins-nautobot_golden_config-jobs-alldevicesgoldenconfig Golden Configuration Execute All Golden Configuration Jobs - Multiple Device Process to run all Golden Configuration jobs configured against multiple devices. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +a1ff94ef-9fb5-4644-ac17-158c1038a5c6 2023-09-19 2023-09-19 08:09:40.517886+00 {} plugins nautobot_gizmo.jobs.create_pop CreatePop plugins-nautobot_gizmo-jobs-create_pop-createpop Create POP Create a POP Create a new Site of Type POP with 2 Edge Routers and N leaf switches.\nA new /16 will automatically be allocated from the 'POP Global Pool' Prefix t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +e5949e2e-d84a-4d08-a176-40850511cacb 2023-09-19 2023-09-19 08:09:40.521898+00 {} plugins nautobot_gizmo.jobs.import_device_type ImportDeviceType plugins-nautobot_gizmo-jobs-import_device_type-importdevicetype Gizmo Jobs Import Device Type Import a new Device Type from a GitHub repository t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +c09f67b6-9814-4a14-86be-35674ea5a1d8 2023-09-19 2023-09-19 08:09:40.53421+00 {} plugins nautobot_golden_config.jobs BackupJob plugins-nautobot_golden_config-jobs-backupjob Golden Configuration Backup Configurations Backup the configurations of your network devices. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +f64849eb-1d1c-4b7d-a1e5-7e16d4c5d1f6 2023-09-19 2023-09-19 08:09:40.549302+00 {} plugins nautobot_ssot.jobs.examples ExampleDataSource plugins-nautobot_ssot-jobs-examples-exampledatasource SSoT Examples Example Data Source Example "data source" Job for loading data into Nautobot from another system. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +e30d7430-0568-499f-b910-01f47e9948e5 2023-09-19 2023-09-19 08:09:40.537224+00 {} plugins nautobot_golden_config.jobs IntendedJob plugins-nautobot_golden_config-jobs-intendedjob Golden Configuration Generate Intended Configurations Generate the configuration for your intended state. t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +f991ec69-83b9-45b4-b697-359e4b3cb879 2023-09-19 2023-09-19 08:09:40.552465+00 {} plugins nautobot_ssot.jobs.examples ExampleDataTarget plugins-nautobot_ssot-jobs-examples-exampledatatarget SSoT Examples Example Data Target Example "data target" Job for syncing data from Nautobot to another system t t t f f f 0 0 f f f f f f f f f \N t f f [] f f +\. + + +-- +-- Data for Name: extras_jobbutton; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_jobbutton (id, created, last_updated, name, text, weight, group_name, button_class, confirmation, job_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_jobbutton_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_jobbutton_content_types (id, jobbutton_id, contenttype_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_jobhook; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_jobhook (id, created, last_updated, _custom_field_data, enabled, name, slug, type_create, type_delete, type_update, job_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_jobhook_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_jobhook_content_types (id, jobhook_id, contenttype_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_joblogentry; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_joblogentry (id, log_level, "grouping", message, created, log_object, absolute_url, job_result_id) FROM stdin; +38e2db45-001c-4d86-ab84-7e4865f01a67 info main Creating Permissions. 2023-09-19 08:09:39.666599+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +ba09132b-cf47-4e24-b5d9-00fbc85b5ab1 warning main Content Type for model django_celery_beat.clocked was not found. 2023-09-19 08:09:39.706925+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +2c49d111-f7d1-4d65-b778-9c9d4611afc7 warning main Content Type for model django_celery_beat.crontab was not found. 2023-09-19 08:09:39.71072+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +7067a314-0323-4b6b-92aa-82e3f1d90acc warning main Content Type for model django_celery_beat.interval was not found. 2023-09-19 08:09:39.713966+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +95684557-e6dd-4b45-b947-712723fbb169 warning main Content Type for model django_celery_beat.solarevent was not found. 2023-09-19 08:09:39.718557+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +da58db40-739b-41d8-997f-3c3ce5c34cc7 warning main Content Type for model nautobot_golden_config.goldenconfiguration was not found. 2023-09-19 08:09:39.748693+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +8a8f1155-b8b9-484e-b1d9-bfc10404a8e4 warning main Content Type for model nautobot_circuit_maintenance.circuitmaintenance was not found. 2023-09-19 08:09:39.753166+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +540669c5-e5cb-4860-8892-b9ec50226a97 warning main Content Type for model nautobot_circuit_maintenance.circuitimpact was not found. 2023-09-19 08:09:39.756559+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +d25c6ef0-c641-4dbb-8343-0149c8983153 warning main Content Type for model nautobot_circuit_maintenance.note was not found. 2023-09-19 08:09:39.7598+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +fff221b9-f34e-4e7a-98a6-7c450d40515a warning main Content Type for model nautobot_circuit_maintenance.rawnotification was not found. 2023-09-19 08:09:39.762918+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +00d94057-85fb-4e30-958a-20e197f5a315 warning main Content Type for model nautobot_circuit_maintenance.parsednotification was not found. 2023-09-19 08:09:39.766088+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +9bdcf850-4b00-4da9-8a84-77111fa200b3 warning main Content Type for model nautobot_circuit_maintenance.notificationsource was not found. 2023-09-19 08:09:39.769546+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +98672fc5-ac0f-4b03-8b19-c5d2f4414d47 success main Permission demo successfully created 2023-09-19 08:09:39.824797+00 demo \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +5b86cc33-8b4e-4105-ac3c-ffc192d4d002 warning main Content Type for model db.testmodel was not found. 2023-09-19 08:09:39.853862+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +bc3ad0ee-a6c9-48c6-b191-e62d255c236a warning main Content Type for model django_celery_beat.clocked was not found. 2023-09-19 08:09:39.881044+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +86e2ef15-f205-47a5-a41f-ba3f951d6ba8 warning main Content Type for model django_celery_beat.crontab was not found. 2023-09-19 08:09:39.884026+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +6f67e0d4-1984-4310-910c-1dfd28d752b5 warning main Content Type for model django_celery_beat.interval was not found. 2023-09-19 08:09:39.886834+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +c56b6acf-b77c-430d-b9ff-cb5c5ef3329c warning main Content Type for model django_celery_beat.solarevent was not found. 2023-09-19 08:09:39.890613+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +af98f77e-dffa-49fd-a276-6db4b8728423 warning main Content Type for model nautobot_golden_config.goldenconfiguration was not found. 2023-09-19 08:09:39.927177+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +d834002d-5465-4f52-8bec-62ec1e45235a warning main Content Type for model nautobot_circuit_maintenance.circuitmaintenance was not found. 2023-09-19 08:09:39.931475+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +3dc7442e-2032-43ec-807a-70c1f0cb2606 warning main Content Type for model nautobot_circuit_maintenance.circuitimpact was not found. 2023-09-19 08:09:39.934107+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +747af34c-6ab4-446e-97e5-f2c6b6ef0429 warning main Content Type for model nautobot_circuit_maintenance.note was not found. 2023-09-19 08:09:39.936479+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +88387b23-c0ae-4491-927f-e23c5a539ccd warning main Content Type for model nautobot_circuit_maintenance.rawnotification was not found. 2023-09-19 08:09:39.938929+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +87b28abd-3494-427f-9cb5-e7ad28ac19b6 warning main Content Type for model nautobot_circuit_maintenance.parsednotification was not found. 2023-09-19 08:09:39.941238+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +421bb0ab-b099-4a11-8d13-52d75737590c warning main Content Type for model nautobot_circuit_maintenance.notificationsource was not found. 2023-09-19 08:09:39.943599+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +356e7555-70b3-4d7c-aa46-6d7699dd1d1a warning main Content Type for model nautobot_bgp_models.peersession was not found. 2023-09-19 08:09:40.106148+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +f022756a-2c33-41b2-b887-b478569afb80 success main Permission demo_read_only successfully created 2023-09-19 08:09:40.124939+00 demo_read_only \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +fa635adb-2a2a-4d98-9a1b-60deeefe08b5 success main Permission demo_run_jobs successfully created 2023-09-19 08:09:40.14771+00 demo_run_jobs \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +85e06f67-a360-46ab-87aa-9282c31b778e info main Creating Groups. 2023-09-19 08:09:40.153462+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +23d44b07-662e-4dcf-b67b-d4aaea6dfec1 success main Group Group 1 successfully created 2023-09-19 08:09:40.158177+00 Group 1 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +9978b24b-1b2b-4e8b-8a36-cba10dc51aa0 success main Group Group 2 successfully created 2023-09-19 08:09:40.161954+00 Group 2 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +244c65f4-6e84-4ab1-9308-edd4551cdd71 success main Group demo successfully created 2023-09-19 08:09:40.165655+00 demo \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +eab2f769-a72a-43be-9f92-4c1fe0406e49 success main Group Group 3 successfully created 2023-09-19 08:09:40.179512+00 Group 3 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +bef6ff0e-1de6-4ed4-8472-2bb6092b8e10 info main Creating Users. 2023-09-19 08:09:40.181896+00 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +7d5d8b3c-02ca-4f8b-ae3b-0f87de05384d success main User user1 successfully created 2023-09-19 08:09:40.187184+00 user1 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +f82ff072-866d-4368-b673-db7f63a27a1f success main Token for user1 successfully created 2023-09-19 08:09:40.434047+00 111111 (user1) \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +c82b4098-9c42-4adf-bbb0-158248948303 success main User user2 successfully created 2023-09-19 08:09:40.446998+00 user2 \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +0f88f3f4-8cb4-4c33-bfd0-d5cc30684020 success main Token for user2 successfully created 2023-09-19 08:09:40.690546+00 222222 (user2) \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +73176592-6d24-4263-973d-da6d87f2bbcf success main User demo successfully created 2023-09-19 08:09:40.695121+00 demo \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +850eee8f-8756-42c6-a366-952fbb4293b7 success main Token for demo successfully created 2023-09-19 08:09:40.917799+00 aaaaaa (demo) \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +33c4ddcf-592e-4e35-a902-099fe3beab53 success main User ntc successfully created 2023-09-19 08:09:40.921605+00 ntc \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +0be94e7c-787d-4b12-8746-48a25afbff21 success main Token for ntc successfully created 2023-09-19 08:09:41.153757+00 nnnnnn (ntc) \N ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 +f352aeda-10ab-4e51-98ea-6140447c71e3 success main Region Oceania successfully created 2023-09-19 08:09:41.210496+00 Oceania /dcim/regions/ed5395b7-5cb0-4cc5-8061-5cedcdf7e2cb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +92242a56-75ee-48ce-8673-b0b876dcba33 success main Region Europe successfully created 2023-09-19 08:09:41.217579+00 Europe /dcim/regions/d50af888-7cf2-4bbc-b160-9ecda6b952e2/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1ac4c4a3-3b3b-4476-90ef-7b7a5f87c788 success main Region Americas successfully created 2023-09-19 08:09:41.224073+00 Americas /dcim/regions/66c44f6e-7738-408b-971f-03b0d8fdc630/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a24150e9-7fb4-40fc-a5da-387c4ceffe6b success main Region Asia successfully created 2023-09-19 08:09:41.230311+00 Asia /dcim/regions/fc6ba3cf-c89e-4d4f-a770-0ec3653fb012/ 3239c1c3-b924-4b28-885e-dfc6f684999e +94ee043d-d5e3-4142-a556-f764db177ae7 success main Region Africa successfully created 2023-09-19 08:09:41.237246+00 Africa /dcim/regions/52194985-340f-4a0f-9cf3-901e32bbcddd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8475eed6-9faa-4cff-9ba5-9684f415de37 success main Country Vatican City successfully created 2023-09-19 08:09:41.244293+00 Vatican City /dcim/regions/3ba3f388-70f2-475d-8e66-2fd468d4b228/ 3239c1c3-b924-4b28-885e-dfc6f684999e +20650f6d-12bb-4ba6-9ae5-5a9417ffedf2 success main Country Tokelau successfully created 2023-09-19 08:09:41.270769+00 Tokelau /dcim/regions/76b4b137-424b-4452-bcab-3798bbc2fca4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +f5997fe7-71bd-49d3-ab4d-e1712da35816 success main Country Niue successfully created 2023-09-19 08:09:41.436316+00 Niue /dcim/regions/77f710ff-d4bb-46bc-8036-01ac230c74b7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ef27b79e-fd2e-4489-863c-a8c608abc6ff success main Country Falkland Islands successfully created 2023-09-19 08:09:41.443993+00 Falkland Islands /dcim/regions/51dce7f5-cdca-4fa8-97de-78ffd4cc7fdf/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4c9b59fa-c034-4ed6-ae20-12b503683881 success main Country Montserrat successfully created 2023-09-19 08:09:41.453714+00 Montserrat /dcim/regions/3ff0ce93-7a04-4f6b-bd83-2af0c3de29a0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a85eb035-e172-482a-95db-5085b2bd5bb2 success main Country Saint Pierre and Miquelon successfully created 2023-09-19 08:09:41.461944+00 Saint Pierre and Miquelon /dcim/regions/2f8709af-cdb0-4089-9404-24c562319d83/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ebf52526-4f1e-421d-ad78-2f409aac11d0 success main Country Saint Barthelemy successfully created 2023-09-19 08:09:41.47106+00 Saint Barthelemy /dcim/regions/70055c09-9ff5-405c-bc58-891af609f98e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7dc67e95-5e13-4e02-b488-05d4c7df5964 success main Country Nauru successfully created 2023-09-19 08:09:41.480376+00 Nauru /dcim/regions/12fdc16b-7c4d-4327-a4a1-714060328c3c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8d5c7a18-f38e-4454-a97c-89d9c9a4f8d5 success main Country Wallis and Futuna successfully created 2023-09-19 08:09:41.492326+00 Wallis and Futuna /dcim/regions/72a7286f-305f-4a22-975b-83dd50bf62f5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +fa26bef1-8860-40b7-b0c7-b4a6bb13f6cd success main Country Tuvalu successfully created 2023-09-19 08:09:41.502793+00 Tuvalu /dcim/regions/1b8f3c77-ed64-40bc-bc83-d5cf79d25693/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ebca14fa-a358-45fc-b851-b24013e93746 success main Country Anguilla successfully created 2023-09-19 08:09:41.511618+00 Anguilla /dcim/regions/32406986-75d3-449b-ae3a-42a040495f5b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8d942e8d-f481-44d4-8279-eb39362ee6e7 success main Country Cook Islands successfully created 2023-09-19 08:09:41.519623+00 Cook Islands /dcim/regions/b5435dab-445c-485f-a631-f1feedb22267/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d5f56776-356d-4caa-8082-4b219ea65d46 success main Country Palau successfully created 2023-09-19 08:09:41.527583+00 Palau /dcim/regions/c381b7f0-bf20-4282-8fb9-b7fdb943ab2e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +9f4fafdd-1cca-488e-afbf-3789c4851b50 success main Country British Virgin Islands successfully created 2023-09-19 08:09:41.537527+00 British Virgin Islands /dcim/regions/5fff5ef7-bae7-4f8e-a0de-4c69208c5459/ 3239c1c3-b924-4b28-885e-dfc6f684999e +db797512-f69e-41f0-9032-3f7e0e5ab608 success main Country Gibraltar successfully created 2023-09-19 08:09:41.545311+00 Gibraltar /dcim/regions/5e1d7d2b-67aa-4ee0-90d6-4f8dbb82d783/ 3239c1c3-b924-4b28-885e-dfc6f684999e +faf1bd2f-c20c-45cc-87bb-d1b271a01a00 success main Country San Marino successfully created 2023-09-19 08:09:41.552833+00 San Marino /dcim/regions/a621319c-89a8-4eaa-a182-15133f7f5511/ 3239c1c3-b924-4b28-885e-dfc6f684999e +75bd2807-57d0-4b25-8ed7-a2bc4b04f564 success main Country Liechtenstein successfully created 2023-09-19 08:09:41.560375+00 Liechtenstein /dcim/regions/21f56b07-9887-4fdd-89dd-23caca392847/ 3239c1c3-b924-4b28-885e-dfc6f684999e +02ebd1f8-25dc-4f44-bb2f-f6674a17aba3 success main Country Turks and Caicos Islands successfully created 2023-09-19 08:09:41.567815+00 Turks and Caicos Islands /dcim/regions/27c4f497-2a21-4487-be84-72a8e535db30/ 3239c1c3-b924-4b28-885e-dfc6f684999e +cfc45a30-16c6-4181-b0a8-b9b9e875f790 success main Country Saint Martin successfully created 2023-09-19 08:09:41.575293+00 Saint Martin /dcim/regions/cb84c25b-9ee7-48a3-9679-f6ea6e2c5149/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7b2964d7-d3e7-4c7f-80b9-af2eac987c22 success main Country Monaco successfully created 2023-09-19 08:09:41.583136+00 Monaco /dcim/regions/5f35e611-d17b-4ecf-88c6-7d2bf4b85186/ 3239c1c3-b924-4b28-885e-dfc6f684999e +593971b3-f20a-46c3-a44e-1edb2a37b2ed success main Country Sint Maarten successfully created 2023-09-19 08:09:41.590964+00 Sint Maarten /dcim/regions/bd9d9156-6466-4a91-b9ca-9fa5d7ea8e57/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4df02459-be6e-4ad9-b028-82653ac63352 success main Country Faroe Islands successfully created 2023-09-19 08:09:41.598612+00 Faroe Islands /dcim/regions/81223be8-bf5a-41ac-a51f-7daa92ac04eb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b3716ef5-7066-4719-8b02-352c84b98fd4 success main Country Saint Kitts and Nevis successfully created 2023-09-19 08:09:41.607302+00 Saint Kitts and Nevis /dcim/regions/cf65c461-2f3a-4c7d-84ad-0ecb7d82c26b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0654defb-6ce5-451c-8f2e-a1e2b6f39945 success main Country American Samoa successfully created 2023-09-19 08:09:41.615177+00 American Samoa /dcim/regions/0dd25bcf-57cf-4a56-a231-104343fb56a3/ 3239c1c3-b924-4b28-885e-dfc6f684999e +666678c5-34ed-439a-a976-43a9fd4b411a success main Country Greenland successfully created 2023-09-19 08:09:41.623627+00 Greenland /dcim/regions/c495cce1-2b43-4976-979a-e696b59283f1/ 3239c1c3-b924-4b28-885e-dfc6f684999e +eca3c90f-45dc-4331-b8c3-bf16a30ce6e2 success main Country Northern Mariana Islands successfully created 2023-09-19 08:09:41.631535+00 Northern Mariana Islands /dcim/regions/f3115d77-2f2a-489a-959d-669d02195420/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b0625b23-2de0-4143-bcab-eb0c5b0926c2 success main Country Marshall Islands successfully created 2023-09-19 08:09:41.6401+00 Marshall Islands /dcim/regions/bd3daf26-1ebd-45f2-980d-42c206d8b08a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7db8a903-1702-4cce-ab38-37f25c26e1ea success main Country Bermuda successfully created 2023-09-19 08:09:41.648114+00 Bermuda /dcim/regions/049d7c0f-59c8-4e4b-9b1c-7a3ed426f0f6/ 3239c1c3-b924-4b28-885e-dfc6f684999e +04bc0f06-1dcd-493a-913c-39db9b9cf7ed success main Country Cayman Islands successfully created 2023-09-19 08:09:41.656182+00 Cayman Islands /dcim/regions/c736a546-36fe-49e0-86ae-5a232f0c042f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +32126ef1-e106-4f30-a433-ddd52bcfd41a success main Country Dominica successfully created 2023-09-19 08:09:41.66395+00 Dominica /dcim/regions/288171a4-6cd7-48fe-aa7e-7a830cdda6b6/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ad129120-7382-4fcb-ae30-8b5a5d542ebc success main Country Andorra successfully created 2023-09-19 08:09:41.671933+00 Andorra /dcim/regions/38ae7f4f-7fe1-467a-9534-700c88c29e14/ 3239c1c3-b924-4b28-885e-dfc6f684999e +74daffed-72b5-4c9f-ab1d-87b9c0a9584b success main Country Isle of Man successfully created 2023-09-19 08:09:41.679817+00 Isle of Man /dcim/regions/c9ed497d-98bc-44f3-a96a-ab626063f6b5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +fa4a729a-3ec7-499f-a5f1-b9083a57e12d success main Country Antigua and Barbuda successfully created 2023-09-19 08:09:41.68801+00 Antigua and Barbuda /dcim/regions/e7bfe8f8-5028-42cd-b37a-239d432829f1/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0ec303d0-2518-483a-93f9-ce38da4237f5 success main Country Seychelles successfully created 2023-09-19 08:09:41.695834+00 Seychelles /dcim/regions/2b6a9e79-f770-4e84-9674-d354cc33d57e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e3ed8cf4-db9f-44ae-b201-28761feab75a success main Country United States Virgin Islands successfully created 2023-09-19 08:09:41.706207+00 United States Virgin Islands /dcim/regions/7679b330-438f-402b-8ab7-3e9e4b987645/ 3239c1c3-b924-4b28-885e-dfc6f684999e +64ca8c6f-8c16-499f-9a9d-3fc31ee80330 success main Country Tonga successfully created 2023-09-19 08:09:41.714042+00 Tonga /dcim/regions/2f9249cc-da21-4711-9ac4-1a2fef6a0912/ 3239c1c3-b924-4b28-885e-dfc6f684999e +6c93248a-df17-4496-97f8-6cb450003b30 success main Country Aruba successfully created 2023-09-19 08:09:41.722051+00 Aruba /dcim/regions/9fd2e4cb-6a8c-4b35-a8c7-a853f942c0a5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +feaadd76-7555-4a32-9fcb-0bc997e8e736 success main Country Saint Vincent and the Grenadines successfully created 2023-09-19 08:09:41.730714+00 Saint Vincent and the Grenadines /dcim/regions/1b537393-bd87-4b9b-b2c3-5efbe60eba43/ 3239c1c3-b924-4b28-885e-dfc6f684999e +14d94e39-185e-421f-a4fd-b72b493e45a5 success main Country Grenada successfully created 2023-09-19 08:09:41.738591+00 Grenada /dcim/regions/29ea86c3-0f3d-4eb1-8d15-d6d54ceb2d02/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7e4bace7-8662-4099-ae06-4203ac7af537 success main Country Micronesia successfully created 2023-09-19 08:09:41.746575+00 Micronesia /dcim/regions/7eb3f035-bfac-4147-8f5b-b4ddbeefe2a4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2d0050cd-edff-4820-a0a5-2c7aa1a9f486 success main Country Kiribati successfully created 2023-09-19 08:09:41.759996+00 Kiribati /dcim/regions/68380237-02c3-41c7-93f5-cf8550dc55b5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1fab0ee9-ed21-4570-b83b-6662a527fc73 success main Country Curacao successfully created 2023-09-19 08:09:41.77156+00 Curacao /dcim/regions/eb9a7aed-5e17-4963-acee-59af23428f3d/ 3239c1c3-b924-4b28-885e-dfc6f684999e +dd28131b-4671-4414-b06d-4831edfb7d45 success main Country Guam successfully created 2023-09-19 08:09:41.780841+00 Guam /dcim/regions/9f9a1dcc-44b3-4a34-be59-991daa2b5e2d/ 3239c1c3-b924-4b28-885e-dfc6f684999e +cdb6ff81-a0e1-4823-81ca-ab70d86f3117 success main Country Saint Lucia successfully created 2023-09-19 08:09:41.788983+00 Saint Lucia /dcim/regions/0607a83d-3987-4186-8f77-f6593dd18706/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7dc06991-70f4-4e97-8e14-00148070ddc7 success main Country Samoa successfully created 2023-09-19 08:09:41.796978+00 Samoa /dcim/regions/56b0d234-bf06-4be9-8263-6c4358b3898c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4569802a-58fd-4a78-98a9-0b51af46e23c success main Country Sao Tome and Principe successfully created 2023-09-19 08:09:41.807432+00 Sao Tome and Principe /dcim/regions/73695f2d-69e2-4767-b3a5-922d2842f327/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a7ad2745-d5bc-4835-9636-dbbd3ea4e52e success main Country Mayotte successfully created 2023-09-19 08:09:41.819975+00 Mayotte /dcim/regions/c0c6b828-25a6-4c59-a6cc-3c75a50f7d68/ 3239c1c3-b924-4b28-885e-dfc6f684999e +70e43f26-736d-4f69-84f8-3d9c392b1784 success main Country French Polynesia successfully created 2023-09-19 08:09:41.838366+00 French Polynesia /dcim/regions/c0491152-8407-43e4-a9fd-e2c0a468285e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b210e397-2831-498e-bb28-d391f6d138df success main Country Barbados successfully created 2023-09-19 08:09:41.84606+00 Barbados /dcim/regions/df56fb6a-adcb-423d-a89e-0d07edbe98f2/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c041b6f7-9bfc-432b-9362-6335c826488a success main Country New Caledonia successfully created 2023-09-19 08:09:41.853624+00 New Caledonia /dcim/regions/362e83ff-99e9-4a24-a1a7-733bc4df613a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4dea5301-dced-4fa3-a981-662725ff14db success main Country French Guiana successfully created 2023-09-19 08:09:41.861177+00 French Guiana /dcim/regions/0aa6e5a4-d2e9-4285-8459-9dcee5cf0bc0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +38d72705-edf9-4f28-a900-e0875612f028 success main Country Vanuatu successfully created 2023-09-19 08:09:41.86864+00 Vanuatu /dcim/regions/76ade67b-b74d-4234-9a14-5bfd1d0dce27/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1b3089ac-ef2e-4983-ae94-b2a0cc46243f success main Country Iceland successfully created 2023-09-19 08:09:41.876041+00 Iceland /dcim/regions/43d6b529-31e5-48cc-b847-68562398d8be/ 3239c1c3-b924-4b28-885e-dfc6f684999e +53df6956-a779-4486-b847-4ab2dd30d951 success main Country Martinique successfully created 2023-09-19 08:09:41.883627+00 Martinique /dcim/regions/bdc0e230-fbee-45b7-bce9-b6efa2809699/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1dca88a1-52a3-42bf-8dab-42bbd3c75a8d success main Country Bahamas successfully created 2023-09-19 08:09:41.891377+00 Bahamas /dcim/regions/145e3020-ddfa-48c5-b0ea-986293a4ccbd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ea6ba620-61a4-49f0-a340-df896e86e118 success main Country Guadeloupe successfully created 2023-09-19 08:09:41.899054+00 Guadeloupe /dcim/regions/612e4dfe-8423-46e1-bf4f-80badf5ddb58/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8d83fa05-d0ac-49f0-be15-5d0b0f23db05 success main Country Belize successfully created 2023-09-19 08:09:41.906602+00 Belize /dcim/regions/ff644e7f-ea3d-49d6-9100-4a032135cb4e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1d55e927-24ca-48dd-8162-bc682c951c36 success main Country Brunei successfully created 2023-09-19 08:09:41.913589+00 Brunei /dcim/regions/42883d80-7674-421c-b86a-d7c6a5c7d1a3/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e11bb788-ec12-4aa8-bbe7-39d98bde4f05 success main Country Malta successfully created 2023-09-19 08:09:41.922021+00 Malta /dcim/regions/73293666-7b28-4e77-85cb-22361bc9410b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2ba67ced-c5f4-4368-8add-9704c96c5645 success main Country Maldives successfully created 2023-09-19 08:09:41.930467+00 Maldives /dcim/regions/86ce383d-1ff3-4a1a-920b-616625af1bcd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1f7d352f-6f9d-453b-aab6-e7783c5acc4e success main Country Cape Verde successfully created 2023-09-19 08:09:41.93971+00 Cape Verde /dcim/regions/82ddd471-2b10-4902-ae9d-cc96ed4a38b0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +eb0d61e7-e0ec-4acf-9605-4215c67d5ff1 success main Country Suriname successfully created 2023-09-19 08:09:41.948234+00 Suriname /dcim/regions/62afc1e7-1f03-496a-95da-4bfb6e5dd132/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e921e19d-51eb-4503-b06f-9dc1b0aeab88 success main Country Western Sahara successfully created 2023-09-19 08:09:41.957295+00 Western Sahara /dcim/regions/e982e51e-614a-4f72-84eb-cdd04cd7d869/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4aa3c039-0358-481c-9c08-4acfbac8e63d success main Country Montenegro successfully created 2023-09-19 08:09:41.966071+00 Montenegro /dcim/regions/689e14b5-a5c8-4355-8d35-c1bff2a62592/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2f7303c5-0209-4d9a-98c3-507af62759fe success main Country Luxembourg successfully created 2023-09-19 08:09:41.974702+00 Luxembourg /dcim/regions/b30ce259-2038-4dce-980a-856a77f7dc81/ 3239c1c3-b924-4b28-885e-dfc6f684999e +dc8f5e4c-0a31-40de-8256-04a105391022 success main Country Macau successfully created 2023-09-19 08:09:41.983187+00 Macau /dcim/regions/2269322e-7118-493b-a27a-db53ccbc9a1b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +5b562bbd-4278-4729-b5c1-4a73982cb5c7 success main Country Solomon Islands successfully created 2023-09-19 08:09:41.991715+00 Solomon Islands /dcim/regions/b017c28d-6d80-4fde-bb40-5fc617434d16/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2976dabd-3bf7-4396-84bf-0c12aec4b476 success main Country Bhutan successfully created 2023-09-19 08:09:42.00022+00 Bhutan /dcim/regions/d0680cb9-b565-48ba-ad5f-bd476fdb20eb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +5daead5c-eb84-41bd-94aa-8b0565f5adcd success main Country Guyana successfully created 2023-09-19 08:09:42.008782+00 Guyana /dcim/regions/8ae8b8ac-5298-4ee6-a1ed-c7f2561c93af/ 3239c1c3-b924-4b28-885e-dfc6f684999e +adac168a-e9cb-455e-aea9-988e3c240ffe success main Country Comoros successfully created 2023-09-19 08:09:42.029895+00 Comoros /dcim/regions/0bc944b0-a140-4a37-ac8a-d330ba469ea8/ 3239c1c3-b924-4b28-885e-dfc6f684999e +256bdc20-cd18-4b8b-aba2-c044bc8d418b success main Country Reunion successfully created 2023-09-19 08:09:42.038519+00 Reunion /dcim/regions/d2a37e3f-7f0c-49f4-aeb6-74c7d718e57f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +64469d5c-eada-4929-906c-615374e329df success main Country Fiji successfully created 2023-09-19 08:09:42.047257+00 Fiji /dcim/regions/e0785111-e863-426b-a7dd-fc8b42710ded/ 3239c1c3-b924-4b28-885e-dfc6f684999e +44f27257-9c19-4061-b71d-93ee8aa54697 success main Country Djibouti successfully created 2023-09-19 08:09:42.056052+00 Djibouti /dcim/regions/2f8c3420-f51b-459f-b960-2c6e53e80f6c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a92b4f0a-afbb-4c14-86a5-fad455f46a92 success main Country Swaziland successfully created 2023-09-19 08:09:42.064792+00 Swaziland /dcim/regions/5bc36599-2f9d-44d1-b13a-9ffcedd0d364/ 3239c1c3-b924-4b28-885e-dfc6f684999e +230795a0-7717-4ca5-b875-bde54c59a9b6 success main Country Cyprus successfully created 2023-09-19 08:09:42.07343+00 Cyprus /dcim/regions/7a7545db-40a3-48c9-a6d1-eb069906b4c0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +61d51bec-078c-4baf-95fa-7f5b923a4c0c success main Country Mauritius successfully created 2023-09-19 08:09:42.082139+00 Mauritius /dcim/regions/66810cf1-0045-4286-82b2-6e313b7c6ea6/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a91c4f41-1cd0-4e1e-b5a9-dbc271ba4ca8 success main Country Estonia successfully created 2023-09-19 08:09:42.090778+00 Estonia /dcim/regions/7908518e-0203-48f3-afa6-525ff9e450e1/ 3239c1c3-b924-4b28-885e-dfc6f684999e +431ced37-c5b2-4ae3-ab20-5650791b3f6d success main Country Timor-Leste successfully created 2023-09-19 08:09:42.099471+00 Timor-Leste /dcim/regions/303a07ef-d446-4c11-802c-ab8ae96b7215/ 3239c1c3-b924-4b28-885e-dfc6f684999e +41cf2ad4-5e83-4aac-81d9-4097b22c0a07 success main Country Trinidad and Tobago successfully created 2023-09-19 08:09:42.108413+00 Trinidad and Tobago /dcim/regions/dc07f616-2e41-492a-b232-fbbcd274dc9c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ad45cc81-43a8-4efe-b4b7-91dab840e2ce success main Country Equatorial Guinea successfully created 2023-09-19 08:09:42.117347+00 Equatorial Guinea /dcim/regions/dbd390d7-a74f-471c-a0f2-620caddbdaea/ 3239c1c3-b924-4b28-885e-dfc6f684999e +99619e86-813f-473a-aa77-6ee6ebfc794a success main Country Bahrain successfully created 2023-09-19 08:09:42.125758+00 Bahrain /dcim/regions/27b396b8-98e7-4e6f-a60d-535a21bdc3fd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +72366931-bfa7-46e3-bdc0-4276dd7bded2 success main Country Latvia successfully created 2023-09-19 08:09:42.135351+00 Latvia /dcim/regions/23e12e77-0eed-4e3b-9951-1dbe4d23749f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +cc35bbac-ae24-4eef-b441-2b5fa1d6356a success main Country Guinea-Bissau successfully created 2023-09-19 08:09:42.145039+00 Guinea-Bissau /dcim/regions/e52d11a1-bde2-4325-be99-d9d36e0c8ba7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +49f7dcad-03be-4b19-9397-bedac5d949f7 info main Refreshing jinja templates... 2023-09-19 08:11:02.341807+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +9378af14-6865-4552-ba9d-9e8f73157ec2 success main Country Slovenia successfully created 2023-09-19 08:09:42.154585+00 Slovenia /dcim/regions/2dda2fb5-e9ef-47af-b747-507720ba5857/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1e29a218-cbb0-4633-85f4-a6defe34e2dc success main Country Macedonia successfully created 2023-09-19 08:09:42.163971+00 Macedonia /dcim/regions/0ad8f3ae-da6a-4a75-bd59-a7b9405a8f47/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1fa5594c-cdae-4cb4-a16b-6aeff26f090f success main Country Lesotho successfully created 2023-09-19 08:09:42.172391+00 Lesotho /dcim/regions/6cddb128-129c-41a9-992c-bd6e4a142fd1/ 3239c1c3-b924-4b28-885e-dfc6f684999e +bc185f04-ff59-47a4-973e-54c7f785ac33 success main Country Gabon successfully created 2023-09-19 08:09:42.180813+00 Gabon /dcim/regions/6795058e-30e2-4a85-9d17-1c15bc4d974b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +82000657-47c0-4a25-b6fd-27d21324bac8 success main Country Botswana successfully created 2023-09-19 08:09:42.18921+00 Botswana /dcim/regions/2eaa2a58-054d-4806-aa08-8997e231d816/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b451ae34-38fa-402f-8b66-1f7714ba3c1b success main Country Gambia successfully created 2023-09-19 08:09:42.197571+00 Gambia /dcim/regions/1c884df4-0c59-4e39-9869-1ef072151653/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7e1320f8-0fb1-4fd0-a6d1-7904092c0076 success main Country Namibia successfully created 2023-09-19 08:09:42.205921+00 Namibia /dcim/regions/f6710e07-c373-4d61-99eb-f9c460307658/ 3239c1c3-b924-4b28-885e-dfc6f684999e +36ec194a-b69d-4fdf-b1a2-47e9fc4ae1e7 success main Country Lithuania successfully created 2023-09-19 08:09:42.214316+00 Lithuania /dcim/regions/f77c4393-d54c-4f35-8353-48218d97a3f5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a89e5d4a-05a8-48c0-96ab-5520f700b11e success main Country Puerto Rico successfully created 2023-09-19 08:09:42.222488+00 Puerto Rico /dcim/regions/ad9d20aa-6d90-43bf-af5c-ac8f06a89b68/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8ac1d1ee-3d8e-45a1-a925-956b88458664 success main Country Albania successfully created 2023-09-19 08:09:42.23097+00 Albania /dcim/regions/d5e6d2dd-d8ee-4b0c-baba-ff488881b40c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +158fe069-661f-4cb7-97d3-4745749bcc6c success main Country Qatar successfully created 2023-09-19 08:09:42.239197+00 Qatar /dcim/regions/7b8c1a8c-b638-45ff-9f53-2ea80598d030/ 3239c1c3-b924-4b28-885e-dfc6f684999e +bae10a88-6b5e-4623-bc13-1f80dcda75d8 success main Country Armenia successfully created 2023-09-19 08:09:42.247471+00 Armenia /dcim/regions/1c4bc43f-d1c3-40f7-a531-56879ef5966a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b37abb99-b830-485e-9f06-8937ee5e3bc5 success main Country Jamaica successfully created 2023-09-19 08:09:42.255917+00 Jamaica /dcim/regions/6b89c94f-1e4a-4d48-931d-ce8b1e1ee1df/ 3239c1c3-b924-4b28-885e-dfc6f684999e +19197ca5-c6c3-499f-a78c-03c6dc10db3a success main Country Bosnia and Herzegovina successfully created 2023-09-19 08:09:42.264386+00 Bosnia and Herzegovina /dcim/regions/13e0023a-80ca-4aa8-8280-25d93791d2e4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e368e2f1-e214-4850-a3cd-75f9c3b66211 success main Country Mongolia successfully created 2023-09-19 08:09:42.272424+00 Mongolia /dcim/regions/19eb7251-de46-42e9-a87f-28619ca44acb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d40aa2fc-86c1-4803-967b-a19adbbfb0af success main Country Uruguay successfully created 2023-09-19 08:09:42.281365+00 Uruguay /dcim/regions/5bba0f2e-e8da-49ad-972c-51bc5ae21678/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8aa004c6-f0e4-4ae0-85b5-e077f609a62f success main Country Eritrea successfully created 2023-09-19 08:09:42.289398+00 Eritrea /dcim/regions/6f62c170-7de8-48bc-af92-de75931957f9/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4c769ca1-797b-4a82-be7c-2a54a1bc6f2a success main Country Georgia successfully created 2023-09-19 08:09:42.297829+00 Georgia /dcim/regions/5c70b260-aa68-4380-a1c2-120286890f6a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +48859321-ba1c-4983-8eb9-ae5744ee9f20 success main Country Moldova successfully created 2023-09-19 08:09:42.307146+00 Moldova /dcim/regions/29a1c45f-05aa-42f9-9486-a72da76ea1b0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +3df07d3c-989f-40c2-bf5c-b1e16d603c65 success main Country Croatia successfully created 2023-09-19 08:09:42.31577+00 Croatia /dcim/regions/3f611d4b-23c7-46c8-9fff-1e85e69e46c5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0194b3a6-367a-4a3f-abfd-5a40eb3abbd1 success main Country Kuwait successfully created 2023-09-19 08:09:42.324156+00 Kuwait /dcim/regions/f1ffe974-7f95-46cc-a538-8ad7086f6a3a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +74c70884-e811-417e-a2b2-196450654e0a success main Country Panama successfully created 2023-09-19 08:09:42.332615+00 Panama /dcim/regions/dfb93cf9-e4bd-4b7a-b701-1341c6914922/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4d975427-234c-4459-b522-a8340bde8116 success main Country Mauritania successfully created 2023-09-19 08:09:42.34109+00 Mauritania /dcim/regions/41327cec-7085-4116-9db2-e9a3a19f1244/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7374a2d1-b42d-4400-90e1-31cdce7fd491 success main Country New Zealand successfully created 2023-09-19 08:09:42.349896+00 New Zealand /dcim/regions/ba1982aa-e6d0-46b8-8d97-e996ffb4ffbc/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7301e99d-592c-4375-bb05-251200c5be94 success main Country Central African Republic successfully created 2023-09-19 08:09:42.358217+00 Central African Republic /dcim/regions/bf5cb384-137a-4ae2-96cd-0968498199d7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +080f0041-595f-4eb6-a97a-ecf6338e84f7 success main Country Ireland successfully created 2023-09-19 08:09:42.36621+00 Ireland /dcim/regions/a2d4fe0e-9eb9-4b35-93b3-30738d78ec3c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +63ed4a20-a102-40ed-aa09-f42d5fe697b7 success main Country Costa Rica successfully created 2023-09-19 08:09:42.373998+00 Costa Rica /dcim/regions/2ba7f5ce-98ff-472e-bbc7-99ef25bbe71e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +dd0e34c2-22f0-4301-92f4-17e417a31ca5 success main Country Liberia successfully created 2023-09-19 08:09:42.38174+00 Liberia /dcim/regions/dd055ab5-240a-4c22-8aed-7618ff1dd9d2/ 3239c1c3-b924-4b28-885e-dfc6f684999e +955b46c7-6df2-406d-ad64-72424790f148 success main Country Palestine successfully created 2023-09-19 08:09:42.389374+00 Palestine /dcim/regions/5c35f3ee-6bf0-49fa-b958-627ea8dea854/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a76da5e2-b00b-4481-81ef-7f4c9ea4556d success main Country Oman successfully created 2023-09-19 08:09:42.397182+00 Oman /dcim/regions/0d22519b-c2c3-4f6d-9d90-e741f4cbd07c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b36f2ce1-bdbe-4d0c-8b3a-7d0c7c3117fb success main Country Slovakia successfully created 2023-09-19 08:09:42.404989+00 Slovakia /dcim/regions/61619256-8a35-41da-bc0d-ec4e6d09c8a5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ea18d6c1-c0b5-4e57-bfc2-502f7a902502 success main Country Norway successfully created 2023-09-19 08:09:42.413218+00 Norway /dcim/regions/c813adc7-8f3c-47db-8a01-c8644e38994f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4ab96180-71ed-4e42-b7b5-1b1990899c93 success main Country Finland successfully created 2023-09-19 08:09:42.420928+00 Finland /dcim/regions/05686981-246f-42c2-8f1b-306ea6b42bfe/ 3239c1c3-b924-4b28-885e-dfc6f684999e +3f919410-0142-41eb-bfbc-e4eb76ae0925 success main Country Republic of the Congo successfully created 2023-09-19 08:09:42.428716+00 Republic of the Congo /dcim/regions/e216e031-5a4a-4198-8c2e-0c3ab849e12b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +14c97915-9050-4d29-8a81-62d1c42d55c4 success main Country Denmark successfully created 2023-09-19 08:09:42.436485+00 Denmark /dcim/regions/78274e26-b911-4728-a03b-09ba46292bb5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +fcde8dcb-76c1-4c35-8d71-98aa05405786 success main Country Singapore successfully created 2023-09-19 08:09:42.444022+00 Singapore /dcim/regions/716f3afa-af1b-4f08-b51d-7359662412bc/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8ee5d43d-62f5-4974-bc47-2e8d8db6a301 success main Country Turkmenistan successfully created 2023-09-19 08:09:42.451605+00 Turkmenistan /dcim/regions/b775ae96-8544-489d-bd18-764fa22d6582/ 3239c1c3-b924-4b28-885e-dfc6f684999e +68de8e0e-fd1e-4f09-b91a-aba40fb7ffb5 success main Country El Salvador successfully created 2023-09-19 08:09:42.459342+00 El Salvador /dcim/regions/5b7191d2-b195-4b6b-953f-41f34cfc3d93/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1521bc5e-c615-497c-a90a-550b9211370e success main Country Kyrgyzstan successfully created 2023-09-19 08:09:42.467014+00 Kyrgyzstan /dcim/regions/0a4b5450-fbf0-4dd5-ab6c-e0fed5e237be/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b9efde28-57a7-4d7c-88eb-3799195edcaf success main Country Nicaragua successfully created 2023-09-19 08:09:42.47455+00 Nicaragua /dcim/regions/dda595a8-d0ea-442f-b9dd-041fd9e5f200/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4f88563e-d834-4132-9fbc-3d502bfae067 success main Country Lebanon successfully created 2023-09-19 08:09:42.482411+00 Lebanon /dcim/regions/cc6af87a-c88a-492c-b393-0f7852aabb75/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e3b99ac9-cc23-44de-8046-2a68332bd024 success main Country Bulgaria successfully created 2023-09-19 08:09:42.490388+00 Bulgaria /dcim/regions/4391a5bc-654b-41f2-b92b-019c0ff3464b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8d63f73a-4791-4671-9a09-b9b9cbc0dd34 success main Country Libya successfully created 2023-09-19 08:09:42.498112+00 Libya /dcim/regions/53409ed0-ccdf-426e-b7c2-9d7742c837d7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ce3fd947-2df4-445f-bad2-f7e6c8c07772 success main Country Paraguay successfully created 2023-09-19 08:09:42.506114+00 Paraguay /dcim/regions/adaf6f41-62f6-40d5-b3bc-d853f15e33fd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +fbd1ad12-8945-4f26-a25f-e5097d7d6065 success main Country Laos successfully created 2023-09-19 08:09:42.514004+00 Laos /dcim/regions/a7c09290-005c-4914-abce-df8ef72013a3/ 3239c1c3-b924-4b28-885e-dfc6f684999e +31be0933-929a-43d9-8a5b-0c71ae848e0a success main Country Hong Kong successfully created 2023-09-19 08:09:42.521896+00 Hong Kong /dcim/regions/00dbba09-2e20-45e5-a019-a718dc2d82df/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0de0c002-ab3b-4346-8ac5-17f326a4c3c1 success main Country Sierra Leone successfully created 2023-09-19 08:09:42.529906+00 Sierra Leone /dcim/regions/7d61d8de-967d-47bd-a601-c2acc37459e8/ 3239c1c3-b924-4b28-885e-dfc6f684999e +cd8e866b-8d73-4305-abb8-79996d021037 success main Country Togo successfully created 2023-09-19 08:09:42.537705+00 Togo /dcim/regions/07af8432-1e4b-4a3c-ba89-05467422cadf/ 3239c1c3-b924-4b28-885e-dfc6f684999e +41c61c8f-f7b5-447d-96b4-13ae10421cf1 success main Country Serbia successfully created 2023-09-19 08:09:42.545619+00 Serbia /dcim/regions/c6ad36cf-5d9e-48e8-8b3f-c813e95600f8/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b290e28d-f1f2-446f-8735-cff6a75af250 success main Country Switzerland successfully created 2023-09-19 08:09:42.553996+00 Switzerland /dcim/regions/731bcce3-ee1b-449d-a40f-7508fab2632f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +01cb8dae-c5c1-4f28-b000-3d72bad6bcbf success main Country Israel successfully created 2023-09-19 08:09:42.562129+00 Israel /dcim/regions/d725f940-f365-423d-8f66-3c195559592d/ 3239c1c3-b924-4b28-885e-dfc6f684999e +9926be01-14af-44af-aa40-3df37152141f success main Country Austria successfully created 2023-09-19 08:09:42.570177+00 Austria /dcim/regions/16f8ffdd-e6ce-4315-b43f-3081e06bcbbc/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c60d3c7d-093f-46dc-986e-bf3138b6cd5e success main Country Papua New Guinea successfully created 2023-09-19 08:09:42.57829+00 Papua New Guinea /dcim/regions/dc6d93d1-8807-407a-aaf4-53ef77f507dd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +024ce5d1-c905-4593-82b5-a70d790f35ce success main Country Belarus successfully created 2023-09-19 08:09:42.586426+00 Belarus /dcim/regions/27ad971b-4c84-4895-b102-d010f80fcacb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8b93167c-c80f-408d-a845-88a667efd9bb success main Country Hungary successfully created 2023-09-19 08:09:42.595086+00 Hungary /dcim/regions/4c1346b9-4524-4f9b-b6db-52aed127d1c9/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2562ea14-e694-4849-bffb-7a2dd0da3afa success main Country Tajikistan successfully created 2023-09-19 08:09:42.603134+00 Tajikistan /dcim/regions/caeab7bc-9f3e-4fed-b0eb-1fcb0ce117c4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +eecad93a-216b-40eb-ae17-c5e48b2e96eb success main Country United Arab Emirates successfully created 2023-09-19 08:09:42.611297+00 United Arab Emirates /dcim/regions/c3bae020-26df-412c-92ab-9fd95610b827/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0c51316c-1675-4ca9-84d8-376794851fb5 success main Country Honduras successfully created 2023-09-19 08:09:42.620338+00 Honduras /dcim/regions/7e324514-2570-47f7-96c6-56cf6bb5413b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +83ebb516-1584-4208-a82c-81fa3d92c3c5 success main Country Sweden successfully created 2023-09-19 08:09:42.628541+00 Sweden /dcim/regions/0dbcbe4e-c1c7-41f2-8d3c-ba0e255ff04f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +035bcc6d-f18b-40f6-b282-9ae10ab146bf success main Country Portugal successfully created 2023-09-19 08:09:42.636438+00 Portugal /dcim/regions/dbb5f14a-a9ac-4373-89d4-5800057641a4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +72809554-8195-4c79-8467-e45db1cc310e success main Country Azerbaijan successfully created 2023-09-19 08:09:42.644347+00 Azerbaijan /dcim/regions/9f62cfc1-c9d2-469c-b481-486fa8923f27/ 3239c1c3-b924-4b28-885e-dfc6f684999e +09772cec-0869-4523-bcff-443b13ef88d8 success main Country Jordan successfully created 2023-09-19 08:09:42.652213+00 Jordan /dcim/regions/4b18f6c0-0932-46c1-84c9-93780b5e148e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e464b968-a4e2-4533-b1f0-c187596135d9 success main Country Greece successfully created 2023-09-19 08:09:42.660106+00 Greece /dcim/regions/2a2d546d-073e-4d42-add6-3ae1d3707551/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d03cbd93-deb9-4c06-b64e-3325be43522a success main Country Czech Republic successfully created 2023-09-19 08:09:42.668065+00 Czech Republic /dcim/regions/3a671640-fb6c-45df-b8aa-bfbce847e036/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c86174dc-50e3-4598-a634-2236dc405ed7 success main Country Dominican Republic successfully created 2023-09-19 08:09:42.682054+00 Dominican Republic /dcim/regions/ffdea4a9-73bb-4514-a566-f3740fe954ff/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d3941ae5-678c-421f-b377-6c1de5dfb3dd success main Country Cuba successfully created 2023-09-19 08:09:42.691185+00 Cuba /dcim/regions/6283b6a2-9c19-47fc-9996-0fa4d70e2d93/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7f026c8f-3687-48dc-880d-30b147ec62ce success main Country South Sudan successfully created 2023-09-19 08:09:42.699901+00 South Sudan /dcim/regions/e32f864b-8ab1-4be2-8777-12e2a562f5fd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +cfb12bd0-8295-4b20-9803-b8ce7836179f success main Country Haiti successfully created 2023-09-19 08:09:42.708775+00 Haiti /dcim/regions/515ea91c-e96c-4443-96b5-a014d039e561/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e58d44c1-e1e9-46d1-92e0-9a7ba38450e6 success main Country Belgium successfully created 2023-09-19 08:09:42.717424+00 Belgium /dcim/regions/2cdb1309-63e0-408c-8b09-3e837ffd7530/ 3239c1c3-b924-4b28-885e-dfc6f684999e +97e4b31e-3940-4c4b-a454-4b1f2fbf9d12 success main Country Bolivia successfully created 2023-09-19 08:09:42.726556+00 Bolivia /dcim/regions/f45e6e23-331e-4be2-b7e9-0dad480c87af/ 3239c1c3-b924-4b28-885e-dfc6f684999e +71b8952c-3465-42cd-86f6-e0d98ae7198e success main Country Tunisia successfully created 2023-09-19 08:09:42.735183+00 Tunisia /dcim/regions/7fb619bd-78f9-480a-974a-187a1ef1fb53/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0076bed6-3079-4887-8168-8aa29167a9a7 success main Country Burundi successfully created 2023-09-19 08:09:42.743949+00 Burundi /dcim/regions/405e8d22-db45-4eb6-846c-3a55ce628b82/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c0325743-6220-4f47-9e4a-bf2aa49881eb success main Country Benin successfully created 2023-09-19 08:09:42.752774+00 Benin /dcim/regions/8a0f2790-a081-4a23-b121-ff05a37cad73/ 3239c1c3-b924-4b28-885e-dfc6f684999e +dee30a7b-ca4f-4104-b1a3-68d47ddc4941 success main Country Rwanda successfully created 2023-09-19 08:09:42.761352+00 Rwanda /dcim/regions/b5e39acb-1660-4dfb-bbf6-1d7604d4174a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +61ef931e-5814-4136-a9d9-bf733bbbb93a success main Country Guinea successfully created 2023-09-19 08:09:42.769859+00 Guinea /dcim/regions/34aa244f-b9f4-48f7-b69f-5277e891885e/ 3239c1c3-b924-4b28-885e-dfc6f684999e +66023853-b98e-4ae6-8cab-cf45488cdb84 success main Country Zimbabwe successfully created 2023-09-19 08:09:42.777889+00 Zimbabwe /dcim/regions/7268d17f-ba0e-4c0c-9280-d222606f1651/ 3239c1c3-b924-4b28-885e-dfc6f684999e +76a43b3f-e0f1-49dc-9eb5-4e65c5434da4 success main Country Somalia successfully created 2023-09-19 08:09:42.786111+00 Somalia /dcim/regions/e3fda1c8-41b7-429a-9fef-7fc01bf50ac4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +cec93bec-5f31-403b-889a-7f28e11a23aa success main Country Chad successfully created 2023-09-19 08:09:42.794489+00 Chad /dcim/regions/ab1e9624-7790-4ec8-bfe1-ddb2636f20a7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b1991843-8a7d-483b-94ad-81e5fc2f3be9 success main Country Cambodia successfully created 2023-09-19 08:09:42.803148+00 Cambodia /dcim/regions/3db51529-94c6-4397-b766-cd190271e304/ 3239c1c3-b924-4b28-885e-dfc6f684999e +3ad85e98-6fa7-474a-ae26-d002baa397e9 success main Country Netherlands successfully created 2023-09-19 08:09:42.811414+00 Netherlands /dcim/regions/32964463-9343-4376-bd14-e0fd2f629403/ 3239c1c3-b924-4b28-885e-dfc6f684999e +40e141ba-b00f-4195-b984-9af951ccd9a1 success main Country Senegal successfully created 2023-09-19 08:09:42.819703+00 Senegal /dcim/regions/e96dfc73-64b3-4902-b007-fce05667f57f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +89c48126-76ba-4a64-b52a-e27738da339a success main Country Ecuador successfully created 2023-09-19 08:09:42.828139+00 Ecuador /dcim/regions/2284143a-bdc8-4fc9-8bd6-d45f74d93086/ 3239c1c3-b924-4b28-885e-dfc6f684999e +be603c82-0a21-4ca2-99bd-435b194c0ec1 success main Country Guatemala successfully created 2023-09-19 08:09:42.836481+00 Guatemala /dcim/regions/29b0cdbb-e802-44bb-912f-f4d38ef9c6e8/ 3239c1c3-b924-4b28-885e-dfc6f684999e +3f3f80a4-6c47-42fe-9039-3738c3b4b98c success main Country Syria successfully created 2023-09-19 08:09:42.844689+00 Syria /dcim/regions/1429d86d-789b-47ae-9592-3c34ed3990fd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7999656d-0640-42fc-980e-8b6b2b636ad5 success main Country Zambia successfully created 2023-09-19 08:09:42.852917+00 Zambia /dcim/regions/67e7aefb-a916-49e3-95a8-fe58b18bdb1d/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b65917f2-5c1d-4992-8374-8b1b656ee733 success main Country Kazakhstan successfully created 2023-09-19 08:09:42.861134+00 Kazakhstan /dcim/regions/1a5bcdc8-7a0a-49f5-b3e8-7782f939e5b9/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d07031cc-a757-4df1-b6b9-d2e3d768a0ed success main Country Romania successfully created 2023-09-19 08:09:42.869286+00 Romania /dcim/regions/bea00263-7788-4f46-8810-c866d806020a/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b1bc05ee-058a-4c1e-a8d0-90af1bc14ebe success main Country Chile successfully created 2023-09-19 08:09:42.87754+00 Chile /dcim/regions/1d1fd8a8-9efd-4b53-93e8-563569c23567/ 3239c1c3-b924-4b28-885e-dfc6f684999e +aff549a0-b7cc-4279-b4ff-a695e4560422 success main Country Malawi successfully created 2023-09-19 08:09:42.885759+00 Malawi /dcim/regions/0a91dbc5-d56a-4e1e-a020-53c802a7f7bf/ 3239c1c3-b924-4b28-885e-dfc6f684999e +038ba2a8-90a8-4dd1-ba6d-a8a94699ab59 success main Country Mali successfully created 2023-09-19 08:09:42.893971+00 Mali /dcim/regions/0e5c6956-0143-4593-b6f8-e9a7cdc9f22f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +6fd73f3f-544a-428c-ab9e-7367c5c41329 success main Country Burkina Faso successfully created 2023-09-19 08:09:42.902248+00 Burkina Faso /dcim/regions/86964c82-7377-4782-88dd-eb5beb9396d3/ 3239c1c3-b924-4b28-885e-dfc6f684999e +247aa35d-9d9b-4b5a-8a20-582ff4e54f32 success main Country Sri Lanka successfully created 2023-09-19 08:09:42.913013+00 Sri Lanka /dcim/regions/9fbfe418-2199-46e8-8066-356c192b1319/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7acb13c5-04cc-493c-ab8f-2f1f3a69c2bc success main Country Taiwan successfully created 2023-09-19 08:09:42.921012+00 Taiwan /dcim/regions/5f099a00-f8b4-496b-bb86-148d9f794eb5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +12c8d6c7-9cfc-4ee7-87cf-879f179b34bf success main Country Niger successfully created 2023-09-19 08:09:42.92896+00 Niger /dcim/regions/a93a0939-c259-488f-806a-b418a94858d0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +6d38447e-7b3f-48e1-a120-9199133e8d51 success main Country Australia successfully created 2023-09-19 08:09:42.936963+00 Australia /dcim/regions/43acb703-da05-4c76-82f4-8b8d6ae445c4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +0085dcc5-5bff-4195-a441-e5c43e61b898 success main Country North Korea successfully created 2023-09-19 08:09:42.944818+00 North Korea /dcim/regions/935d2f95-1767-4c03-94cd-75b5eaaafa9c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +25e4a461-8249-4d0a-94a6-9a9790d3f455 success main Country Ivory Coast successfully created 2023-09-19 08:09:42.953144+00 Ivory Coast /dcim/regions/d6bb0fda-0123-4c3f-ac30-66d0d79e1b6d/ 3239c1c3-b924-4b28-885e-dfc6f684999e +90bd9893-c6a2-4e93-a572-96ec8f7d02ce success main Country Cameroon successfully created 2023-09-19 08:09:42.960969+00 Cameroon /dcim/regions/81e60064-8796-4435-abdf-031cbbda5ee1/ 3239c1c3-b924-4b28-885e-dfc6f684999e +1991c95f-6b26-449c-b9a5-3ed1aff74ff5 success main Country Madagascar successfully created 2023-09-19 08:09:42.968668+00 Madagascar /dcim/regions/1b77c572-577d-42aa-b5d4-558e536b71b0/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8ddc8612-330b-499b-82fe-bcc3c450aac9 success main Country Venezuela successfully created 2023-09-19 08:09:42.975987+00 Venezuela /dcim/regions/6d2c74f7-4a98-4350-beba-1c424666d57b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c2be6025-59ce-490f-82d6-1256a5c5cac8 success main Country Nepal successfully created 2023-09-19 08:09:42.983499+00 Nepal /dcim/regions/b3752a63-e0dc-438e-b0f6-25ab17c107cb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +04b0ae56-abfc-4c86-b033-9fc1da31a741 success main Country Yemen successfully created 2023-09-19 08:09:42.990715+00 Yemen /dcim/regions/7f9d805e-8a54-4751-a958-edd7a01b25c3/ 3239c1c3-b924-4b28-885e-dfc6f684999e +331dd9e2-ca5b-49e5-b49f-8358fc55b775 success main Country Ghana successfully created 2023-09-19 08:09:42.998235+00 Ghana /dcim/regions/a2590f5a-1f48-426f-b015-013063726956/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b6d2046b-0005-47be-931e-3883cde4e6fc success main Country Mozambique successfully created 2023-09-19 08:09:43.005721+00 Mozambique /dcim/regions/e14a4d1f-9b03-4f85-812c-f56d420a7855/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c31198e6-c5af-4d0b-ac93-0a7e59410af7 success main Country Malaysia successfully created 2023-09-19 08:09:43.013301+00 Malaysia /dcim/regions/75101118-e081-44bb-9518-8d7b29147ffa/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a63363d9-b945-45e7-a659-a83f8ce01c68 success main Country Peru successfully created 2023-09-19 08:09:43.020881+00 Peru /dcim/regions/a4173e9f-fc30-4cb1-bdfe-d4be8acbb07c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +35e6320b-d172-47ce-add3-b03ec4ae4a98 success main Country Angola successfully created 2023-09-19 08:09:43.028577+00 Angola /dcim/regions/27386a1f-b4e2-4e62-8867-706b0f290d75/ 3239c1c3-b924-4b28-885e-dfc6f684999e +f5ed0abc-09dc-4920-9f3f-2112592b6257 success main Country Uzbekistan successfully created 2023-09-19 08:09:43.035997+00 Uzbekistan /dcim/regions/1634033d-259a-4366-aac7-50e477da76fe/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d99603f7-d201-4b51-b214-0b2f1739b309 success main Country Saudi Arabia successfully created 2023-09-19 08:09:43.043717+00 Saudi Arabia /dcim/regions/f3563523-67b1-47d0-bbf4-e1ecb375cf28/ 3239c1c3-b924-4b28-885e-dfc6f684999e +40125be3-9b5e-45f3-a26f-b29c0db94947 success main Country Morocco successfully created 2023-09-19 08:09:43.051513+00 Morocco /dcim/regions/c9665e5c-39a3-4c3e-9a8f-f1376e4e9740/ 3239c1c3-b924-4b28-885e-dfc6f684999e +7f3a302a-244f-4a2c-9649-850c9928d4e5 success main Country Poland successfully created 2023-09-19 08:09:43.059162+00 Poland /dcim/regions/deec35ff-f2d8-4f92-8e8b-4d2be1662c64/ 3239c1c3-b924-4b28-885e-dfc6f684999e +f5f29f53-3ba4-4130-a9f9-c5c09ad9d50a success main Country Canada successfully created 2023-09-19 08:09:43.067096+00 Canada /dcim/regions/fd7ac99b-0156-43e9-b015-b3ed6d8435a7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +25229669-833b-4318-a6fd-d246cd8aa30c success main Country Afghanistan successfully created 2023-09-19 08:09:43.07502+00 Afghanistan /dcim/regions/07ada7da-687f-410e-b0e9-af0b7fa71ec4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +27134b91-fd5a-4801-9bf2-b7a12ec7ed42 success main Country Iraq successfully created 2023-09-19 08:09:43.083072+00 Iraq /dcim/regions/9216c22b-4fdc-46c2-8bd7-c022a36ff9c6/ 3239c1c3-b924-4b28-885e-dfc6f684999e +5a3e22f5-d120-485d-b2d5-76e555923440 success main Country Ukraine successfully created 2023-09-19 08:09:43.090884+00 Ukraine /dcim/regions/bbe8deec-ce7e-44d2-9266-f4f2f03ba656/ 3239c1c3-b924-4b28-885e-dfc6f684999e +8e8eee24-06af-43a7-9781-f9d50d90963a success main Country Algeria successfully created 2023-09-19 08:09:43.099061+00 Algeria /dcim/regions/2fdec9b5-27e4-4017-adee-aca5821b15bc/ 3239c1c3-b924-4b28-885e-dfc6f684999e +bf9a03be-039a-4fbd-a182-8d258e4256c8 success main Country Sudan successfully created 2023-09-19 08:09:43.107034+00 Sudan /dcim/regions/9ebbde71-817f-4874-9c47-4e878a718ca4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c07c9fda-178c-4aad-9240-993a066124ba success main Country Argentina successfully created 2023-09-19 08:09:43.115203+00 Argentina /dcim/regions/e52904ae-842d-407d-b856-b66eeff0d619/ 3239c1c3-b924-4b28-885e-dfc6f684999e +f541f895-b049-4644-935e-542de6188fb7 success main Country Spain successfully created 2023-09-19 08:09:43.123936+00 Spain /dcim/regions/9b390f3e-f4e4-4cc8-af50-18de0f954a4d/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4b3859f1-32b0-4194-a44f-956fdaeb7a65 success main Country Uganda successfully created 2023-09-19 08:09:43.131807+00 Uganda /dcim/regions/b1a72dac-6ec8-44ec-b8fb-c3c8de1f9b64/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c605d8cd-c52f-4fae-8ab2-822ea2ca8188 success main Country Colombia successfully created 2023-09-19 08:09:43.139963+00 Colombia /dcim/regions/93b012a8-7700-45a5-9a9f-823534538ec4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +81d64aab-53b2-4949-8e39-5996c117bf78 success main Country South Korea successfully created 2023-09-19 08:09:43.148217+00 South Korea /dcim/regions/6f7303f7-6af4-436e-b783-91a2b40ffeed/ 3239c1c3-b924-4b28-885e-dfc6f684999e +edc5c7ef-a069-45b0-8153-5fb486cec167 success main Country Myanmar successfully created 2023-09-19 08:09:43.159536+00 Myanmar /dcim/regions/7717db8d-0bb8-454e-b9be-00fb5c555925/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c982eed2-bde7-448d-9fd8-d82d593bb813 success main Country Kenya successfully created 2023-09-19 08:09:43.167871+00 Kenya /dcim/regions/c30dd4f6-2a0f-4ce4-81c6-a567dd159211/ 3239c1c3-b924-4b28-885e-dfc6f684999e +852ef519-6689-42d6-ad99-7575315b1771 success main Country South Africa successfully created 2023-09-19 08:09:43.176131+00 South Africa /dcim/regions/14b24bdc-cd73-418a-b529-4da4bb60a898/ 3239c1c3-b924-4b28-885e-dfc6f684999e +631584bf-9274-4ed8-a0a7-0e5c11758c3c success main Country Italy successfully created 2023-09-19 08:09:43.184201+00 Italy /dcim/regions/cf0f9eaf-8fc6-4ae1-bb53-4540cafd6a4f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +b80df11d-2880-4e16-8989-e86a338f9a1d success main Country Tanzania successfully created 2023-09-19 08:09:43.192116+00 Tanzania /dcim/regions/bf381b74-f1c9-4e8c-bcff-d54a13c5b7ed/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ffa37d84-ec87-429e-ad7f-96a54b690068 success main Country France successfully created 2023-09-19 08:09:43.200013+00 France /dcim/regions/dccada15-a7fa-457c-9c3b-9d5c7c8fe771/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2c3dc5ef-f4bb-437d-8fad-125978b36f07 success main Country United Kingdom successfully created 2023-09-19 08:09:43.207884+00 United Kingdom /dcim/regions/563ed103-99bb-498b-89cf-4070f737c9b2/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a066a3fb-3432-4528-86cf-95e72a074288 success main Successfully Pulled git repo 2023-09-19 08:11:02.34404+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +00d3318c-3fd3-4f30-abd7-5a1ea6ef7f04 success main Country Thailand successfully created 2023-09-19 08:09:43.215884+00 Thailand /dcim/regions/7c6af516-9448-4f63-a1e4-31b6b2118320/ 3239c1c3-b924-4b28-885e-dfc6f684999e +bc2da281-84ba-45c4-b735-5a77e6d273bf success main Country Germany successfully created 2023-09-19 08:09:43.22401+00 Germany /dcim/regions/433db14f-a8f5-4d45-940d-296b5dd29575/ 3239c1c3-b924-4b28-885e-dfc6f684999e +57be4010-01de-4997-b6fb-7f67b1035f41 success main Country Iran successfully created 2023-09-19 08:09:43.232065+00 Iran /dcim/regions/bd27078a-faf3-4682-9960-cb2beaae5b7f/ 3239c1c3-b924-4b28-885e-dfc6f684999e +529e42ad-0d29-4c90-a65d-dc5e15da47cc success main Country Turkey successfully created 2023-09-19 08:09:43.239839+00 Turkey /dcim/regions/2791f65e-647e-405b-addc-a34aebc77462/ 3239c1c3-b924-4b28-885e-dfc6f684999e +67df57b0-1aa4-4211-bdcb-0e01e27e3c06 success main Country DR Congo successfully created 2023-09-19 08:09:43.247798+00 DR Congo /dcim/regions/6743689c-cde1-4c86-8e2e-c1854fe7aec5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +a0dfef13-325f-4a23-9360-13b4f2b59088 success main Country Vietnam successfully created 2023-09-19 08:09:43.255507+00 Vietnam /dcim/regions/66138e69-8c3d-4802-97aa-49b0e4d5f0e5/ 3239c1c3-b924-4b28-885e-dfc6f684999e +4f4e60aa-5342-45e2-b1e6-6bf3aaa5adad success main Country Egypt successfully created 2023-09-19 08:09:43.263383+00 Egypt /dcim/regions/2ae794e9-5aea-46e4-81b5-c2de1f91def4/ 3239c1c3-b924-4b28-885e-dfc6f684999e +44f9462e-aa95-41f2-9fd4-afadc45f06ce success main Country Philippines successfully created 2023-09-19 08:09:43.271298+00 Philippines /dcim/regions/d4bcc90a-cb3b-4f34-99d5-97e5eac0989b/ 3239c1c3-b924-4b28-885e-dfc6f684999e +9671ab6e-659a-4f44-a97a-02f825238268 success main Country Ethiopia successfully created 2023-09-19 08:09:43.279321+00 Ethiopia /dcim/regions/1f82f225-245d-40a2-abec-adca5a3eefee/ 3239c1c3-b924-4b28-885e-dfc6f684999e +339a51aa-c834-4981-9568-dce67fa879e6 success main Country Japan successfully created 2023-09-19 08:09:43.287655+00 Japan /dcim/regions/1ece1dae-f0ff-4482-953e-6f7a51a50c55/ 3239c1c3-b924-4b28-885e-dfc6f684999e +2719925d-9dd4-49f4-80fa-a13f8e818263 success main Country Mexico successfully created 2023-09-19 08:09:43.295536+00 Mexico /dcim/regions/24a44999-d607-4841-922a-745df76ab9fd/ 3239c1c3-b924-4b28-885e-dfc6f684999e +10990932-1f12-4796-8cd1-a88b6b5a2296 success main Country Russia successfully created 2023-09-19 08:09:43.303362+00 Russia /dcim/regions/4829ee10-0867-4093-8079-191b75a9cba1/ 3239c1c3-b924-4b28-885e-dfc6f684999e +9838f3c5-fd10-43bb-93d4-7ca9de9cf372 success main Country Bangladesh successfully created 2023-09-19 08:09:43.311506+00 Bangladesh /dcim/regions/b3832eff-e017-4cc3-9aff-76b5d2b1cd9c/ 3239c1c3-b924-4b28-885e-dfc6f684999e +75580de1-1883-40f5-ade6-e7a5be128246 success main Country Nigeria successfully created 2023-09-19 08:09:43.319335+00 Nigeria /dcim/regions/c1f3285b-a9c0-49a0-9fb7-1a73e742fdf7/ 3239c1c3-b924-4b28-885e-dfc6f684999e +da205834-b0a8-4cc4-a981-a361d118a4bd success main Country Brazil successfully created 2023-09-19 08:09:43.327199+00 Brazil /dcim/regions/7de9bc1f-f2d7-4fd0-b9f0-1231ddd6a9f2/ 3239c1c3-b924-4b28-885e-dfc6f684999e +3fcf0fec-2bd3-4090-8093-dbcfbecd5cd5 success main Country Pakistan successfully created 2023-09-19 08:09:43.336439+00 Pakistan /dcim/regions/52116db2-69db-4b90-ab0d-d28426036041/ 3239c1c3-b924-4b28-885e-dfc6f684999e +d21b1e27-10f3-44f8-b893-44e6f755dff7 success main Country Indonesia successfully created 2023-09-19 08:09:43.344374+00 Indonesia /dcim/regions/1b2279bf-1fa9-44ba-9dbf-821f51a890cb/ 3239c1c3-b924-4b28-885e-dfc6f684999e +5d106611-9861-4cd3-9286-7dc6baaba8a4 success main Country United States successfully created 2023-09-19 08:09:43.352106+00 United States /dcim/regions/1df229f3-d627-48aa-9a92-cb8147d74375/ 3239c1c3-b924-4b28-885e-dfc6f684999e +ac84ea23-58bf-47f9-a428-602cff3503d4 success main Country India successfully created 2023-09-19 08:09:43.360741+00 India /dcim/regions/b036cdaa-c3f4-4d30-83c1-6a8898852fa8/ 3239c1c3-b924-4b28-885e-dfc6f684999e +c6d1ee10-5b9e-4699-80c8-2540354b71c6 success main Country China successfully created 2023-09-19 08:09:43.368823+00 China /dcim/regions/1762d848-f7c1-42c5-b18f-a3e9b1775def/ 3239c1c3-b924-4b28-885e-dfc6f684999e +e6513566-77a0-4586-9d4f-d7f8d452b01f success main Manufacturer Arista successfully created 2023-09-19 08:09:43.375539+00 Arista /dcim/manufacturers/arista/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +fe183a6a-bd5e-41b8-a633-a3ba39329378 success main Manufacturer Cisco successfully created 2023-09-19 08:09:43.379194+00 Cisco /dcim/manufacturers/cisco/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +d9a417ca-f36d-4fad-90ec-19fa7c47f5fe success main Manufacturer Juniper successfully created 2023-09-19 08:09:43.382428+00 Juniper /dcim/manufacturers/juniper/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +7defa047-7b89-468d-817b-6c00ebc453ea success main Manufacturer HP successfully created 2023-09-19 08:09:43.385837+00 HP /dcim/manufacturers/hp/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +42cb37b7-6bd1-465f-b8cc-14fcc2495df9 success main Manufacturer Mellanox successfully created 2023-09-19 08:09:43.389182+00 Mellanox /dcim/manufacturers/mellanox/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +8e4eec95-572e-4385-94b0-f768bb008fb9 success main Manufacturer Meraki successfully created 2023-09-19 08:09:43.392512+00 Meraki /dcim/manufacturers/meraki/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +73c62b8c-8fd0-45b7-8856-05e086de3c6c success main Manufacturer NVIDIA successfully created 2023-09-19 08:09:43.395859+00 NVIDIA /dcim/manufacturers/nvidia/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +8eac02e6-bbd8-42fe-a95e-acc6d408ab88 success main Manufacturer Opengear successfully created 2023-09-19 08:09:43.399172+00 Opengear /dcim/manufacturers/opengear/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +b0762d93-4367-43db-ab81-c61c11507951 success main Manufacturer Palo Alto successfully created 2023-09-19 08:09:43.402477+00 Palo Alto /dcim/manufacturers/pan/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +cae409b7-11e9-4a88-a59d-c335f3aa318d success main Platform Cisco IOS successfully created 2023-09-19 08:09:43.408501+00 Cisco IOS /dcim/platforms/cisco_ios/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +fcd181f1-4cf0-401d-9f2e-2f26e361a518 success main Platform Cisco ASA successfully created 2023-09-19 08:09:43.41387+00 Cisco ASA /dcim/platforms/cisco_asa/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +a4be61ce-ed87-4f02-8fa5-9187fcde2459 success main Platform Cisco IOS-XE successfully created 2023-09-19 08:09:43.418477+00 Cisco IOS-XE /dcim/platforms/cisco_xe/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +13d38ab5-4b4f-44c4-b409-7df03606dffe success main Platform Cisco IOS-XR successfully created 2023-09-19 08:09:43.423077+00 Cisco IOS-XR /dcim/platforms/cisco_xr/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +b6d909ad-8d06-436b-a5d0-e8163a48e2b8 success main Platform Cisco NX-OS successfully created 2023-09-19 08:09:43.428012+00 Cisco NX-OS /dcim/platforms/cisco_nxos/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +7ec0631d-7e9f-450b-86fc-1cce70d0aabd success main Platform Arista EOS successfully created 2023-09-19 08:09:43.432647+00 Arista EOS /dcim/platforms/arista_eos/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +ea29edeb-0ea4-460b-886f-da1a22d5b639 success main Platform Juniper Junos successfully created 2023-09-19 08:09:43.437304+00 Juniper Junos /dcim/platforms/juniper_junos/ 8eed560c-aa62-4356-8613-f38a0e74b6e3 +27b76fd1-039c-42e8-be29-6ba11be73d11 success main Provider AT&T successfully created 2023-09-19 08:09:43.444186+00 AT&T /circuits/providers/att b55019bf-c12f-43b9-a6c7-0b514faf8327 +430401b0-b20a-4bc1-8525-08aec0e5557c success main Provider Cogent successfully created 2023-09-19 08:09:43.448014+00 Cogent /circuits/providers/cogent b55019bf-c12f-43b9-a6c7-0b514faf8327 +4d59fd15-ed9e-486e-bfd5-657f5c56b72b success main Provider Deutsche Telekom successfully created 2023-09-19 08:09:43.451651+00 Deutsche Telekom /circuits/providers/deutsche-telekom b55019bf-c12f-43b9-a6c7-0b514faf8327 +2e8505f0-e876-42a4-9954-58ae1e1a83cc success main Provider GTT successfully created 2023-09-19 08:09:43.455386+00 GTT /circuits/providers/gtt b55019bf-c12f-43b9-a6c7-0b514faf8327 +c3b23ed5-2c20-4f1f-8e20-007f701a6f64 success main Provider Liberty Global successfully created 2023-09-19 08:09:43.459053+00 Liberty Global /circuits/providers/liberty-global b55019bf-c12f-43b9-a6c7-0b514faf8327 +c54dd7b6-f03b-451f-afd3-b0a8af0105e7 success main Provider Lumen Technologies successfully created 2023-09-19 08:09:43.462968+00 Lumen Technologies /circuits/providers/lumen-technologies b55019bf-c12f-43b9-a6c7-0b514faf8327 +92b85545-ef55-459b-9357-aa812482d880 success main Provider NTT successfully created 2023-09-19 08:09:43.466728+00 NTT /circuits/providers/ntt b55019bf-c12f-43b9-a6c7-0b514faf8327 +6181136f-8dd4-466c-a29d-aa251911ce0b success main Provider Orange successfully created 2023-09-19 08:09:43.470407+00 Orange /circuits/providers/orange b55019bf-c12f-43b9-a6c7-0b514faf8327 +0b5aee6b-8da6-4884-aa41-06f89d1750a7 success main Provider PCCW Global successfully created 2023-09-19 08:09:43.473837+00 PCCW Global /circuits/providers/pccw-global b55019bf-c12f-43b9-a6c7-0b514faf8327 +dfe78a32-c95c-4544-a5b7-37dcee22e5d7 success main Provider Sprint successfully created 2023-09-19 08:09:43.477395+00 Sprint /circuits/providers/sprint b55019bf-c12f-43b9-a6c7-0b514faf8327 +2674669b-8ff8-4abc-b306-7775221c0f74 success main Provider Tata Communications successfully created 2023-09-19 08:09:43.480938+00 Tata Communications /circuits/providers/tata-communications b55019bf-c12f-43b9-a6c7-0b514faf8327 +8aac1a8a-dca8-4697-8e41-1a3cd87b53b0 success main Provider Telecom Italia successfully created 2023-09-19 08:09:43.484543+00 Telecom Italia /circuits/providers/telecom-italia b55019bf-c12f-43b9-a6c7-0b514faf8327 +c1aefaa0-044e-4adb-a221-511301d1ba8d success main Provider Telia Carrier successfully created 2023-09-19 08:09:43.488044+00 Telia Carrier /circuits/providers/telia-carrier b55019bf-c12f-43b9-a6c7-0b514faf8327 +ddd04f41-d06c-404b-9d3c-cafc684029b1 success main Provider Telxius successfully created 2023-09-19 08:09:43.491605+00 Telxius /circuits/providers/telxius b55019bf-c12f-43b9-a6c7-0b514faf8327 +45a3012b-3e51-4ace-886c-99b216b20a08 success main Provider Verizon successfully created 2023-09-19 08:09:43.495194+00 Verizon /circuits/providers/verizon b55019bf-c12f-43b9-a6c7-0b514faf8327 +fc8d56f1-df0a-46db-a64a-0991b4c284bb success main Provider Zayo successfully created 2023-09-19 08:09:43.498739+00 Zayo /circuits/providers/zayo b55019bf-c12f-43b9-a6c7-0b514faf8327 +8404ce77-9876-4d25-b691-17d3782e7deb success main Circuit Type Private Peering successfully created 2023-09-19 08:09:43.503348+00 Private Peering /circuits/circuit-types/private-peering b55019bf-c12f-43b9-a6c7-0b514faf8327 +77cbd758-55cb-4b28-a8af-ba0c2ea0a178 success main Circuit Type IX successfully created 2023-09-19 08:09:43.506974+00 IX /circuits/circuit-types/ix b55019bf-c12f-43b9-a6c7-0b514faf8327 +9b771f4a-6863-41f4-8f9d-b756e5c31c00 success main Circuit Type Transit successfully created 2023-09-19 08:09:43.510379+00 Transit /circuits/circuit-types/transit b55019bf-c12f-43b9-a6c7-0b514faf8327 +ffb236bb-9097-4180-b9db-01d5a6c30bda success main Circuit Type MPLS successfully created 2023-09-19 08:09:43.513862+00 MPLS /circuits/circuit-types/mpls b55019bf-c12f-43b9-a6c7-0b514faf8327 +ac6a8815-41d2-4c92-98f8-6b38cb73ace3 success main Circuit Type Dark Fiber successfully created 2023-09-19 08:09:43.517363+00 Dark Fiber /circuits/circuit-types/dark-fiber b55019bf-c12f-43b9-a6c7-0b514faf8327 +e2af029e-cf0d-4ff7-ad48-fcbb9ce5a581 success main Imported DeviceType dcs-7150s-24 successfully 2023-09-19 08:09:47.942078+00 DCS-7150S-24 /dcim/device-types/08030f83-dcbe-4351-b98a-d5e735fade66/ a985f3e0-8642-4490-bb76-17a6b303df4a +0bd7a392-3d57-4b03-a559-c116e7fae60b success main Imported DeviceType dcs-7280cr2-60 successfully 2023-09-19 08:09:48.170014+00 DCS-7280CR2-60 /dcim/device-types/4102bba0-6355-4099-8dbc-ade709900a05/ da724996-c4e6-492a-9f66-b7b5b713e2f9 +5a84c7b6-a459-4346-a652-c4f3d7fd5531 success main Site atl01 successfully created 2023-09-19 08:09:56.349792+00 ATL01 /dcim/sites/atl01/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +6ca3841a-039d-4657-8143-c913a33a6d27 success main Device atl01-edge-01 successfully created 2023-09-19 08:09:56.734342+00 atl01-edge-01 /dcim/devices/9c6a5d6f-4215-4b59-95d8-7d8f3da8393b/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +2febe368-0a39-4527-9dc7-ec78df076ace success main Device atl01-edge-02 successfully created 2023-09-19 08:09:57.322854+00 atl01-edge-02 /dcim/devices/bed003a4-068f-493c-8519-b7ff3ab94f63/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +e0df777d-4622-48dc-8f88-d1aaba2b8189 success main Device atl01-leaf-01 successfully created 2023-09-19 08:09:57.803822+00 atl01-leaf-01 /dcim/devices/a6751a1a-e274-445d-ab2f-06ead1cb6d3c/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +a4f381b6-c6d7-488f-9fc5-64d9bbd98f7a success main Device atl01-leaf-02 successfully created 2023-09-19 08:09:58.440425+00 atl01-leaf-02 /dcim/devices/6be296b5-5db3-407b-915b-ebcfa5d73aa3/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +df1d9473-e867-41f8-984b-3a2cc53daf0c success main Device atl01-leaf-03 successfully created 2023-09-19 08:09:59.081928+00 atl01-leaf-03 /dcim/devices/5aa04755-8fbe-4378-97ed-b23f0ac0e928/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +69a8ec50-8e06-44bb-9723-310c38e660e4 success main Device atl01-leaf-04 successfully created 2023-09-19 08:09:59.874456+00 atl01-leaf-04 /dcim/devices/17fa82e4-d0ad-4092-b3c0-1f597bc84883/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +ff2f13a9-f44f-489e-b94f-3b0f5169fae9 success main Device atl01-leaf-05 successfully created 2023-09-19 08:10:00.956135+00 atl01-leaf-05 /dcim/devices/684ba856-7ace-4a36-9c56-e646e71ebb6a/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +1ac6ccb1-49fa-4d21-8471-2ad76f6cb07d success main Device atl01-leaf-06 successfully created 2023-09-19 08:10:02.039692+00 atl01-leaf-06 /dcim/devices/bb5af4d5-3007-4d6a-8965-10db2ec91b76/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +62547305-b8b2-4430-ad24-658983940c6a success main Device atl01-leaf-07 successfully created 2023-09-19 08:10:03.10449+00 atl01-leaf-07 /dcim/devices/d04b6b77-8d24-48b3-9f75-1b087d7ef3d8/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +e82c7ae7-9168-4e0e-94c3-73f325406b48 success main Device atl01-leaf-08 successfully created 2023-09-19 08:10:04.234206+00 atl01-leaf-08 /dcim/devices/c2fe5345-d2c7-4214-8406-31b2b2b87aa2/ 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +0248b7ff-c96e-4c8b-bd88-a2d50721393a success main Circuit cog-39566069475427333 successfully created 2023-09-19 08:10:07.35032+00 cog-39566069475427333 /circuits/circuits/b63967a8-29da-42a2-9e6f-c3407cd5b386 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +99f28132-22a2-4cac-98b8-a79e32166e00 success main Circuit cog-39566069475427369 successfully created 2023-09-19 08:10:07.398646+00 cog-39566069475427369 /circuits/circuits/b6af66c2-3ed1-417d-b51f-88a9ce79ba1a 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +f83a40e3-666a-4c86-8a75-6d3d94d3d1e3 success main Circuit ver-39566069475473989 successfully created 2023-09-19 08:10:07.442218+00 ver-39566069475473989 /circuits/circuits/c6d8b1e0-7f69-4a1c-8793-f4a29652dba7 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +68d652bb-8067-4443-a123-bb7f2d822c22 success main Circuit tel-39566069475474025 successfully created 2023-09-19 08:10:07.485136+00 tel-39566069475474025 /circuits/circuits/8b1e401d-2071-42a0-b643-f7d8168f29c5 07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 +52b7286d-df5b-4b95-8003-2a28a2e98aa5 success main Site pek01 successfully created 2023-09-19 08:10:07.58023+00 PEK01 /dcim/sites/pek01/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +a031eb03-0d35-4407-ac69-69cb45e1ee46 success main Device pek01-edge-01 successfully created 2023-09-19 08:10:07.900638+00 pek01-edge-01 /dcim/devices/5fa9eb70-32f4-4ace-8eb5-a8df4f156adc/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +02c47951-b085-440d-811f-0350e53fdec8 success main Device pek01-edge-02 successfully created 2023-09-19 08:10:08.493178+00 pek01-edge-02 /dcim/devices/b1d1e038-acb3-468f-810b-5d0f549a66cc/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +539c3bbb-66fd-4567-886f-4c19df10da09 success main Device pek01-leaf-01 successfully created 2023-09-19 08:10:08.954914+00 pek01-leaf-01 /dcim/devices/c2bb0304-fcac-4397-9d63-e7503688aae6/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +5ced30fa-0a18-43ed-b1e2-542e967f570d success main Device pek01-leaf-02 successfully created 2023-09-19 08:10:09.583232+00 pek01-leaf-02 /dcim/devices/8601b852-fc8c-4285-89e0-b0ff3ca5f8ae/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +78940f86-1686-48f7-b9d2-b878d88cbda4 success main Device pek01-leaf-03 successfully created 2023-09-19 08:10:10.239608+00 pek01-leaf-03 /dcim/devices/dbf9eba6-2713-48f9-94df-7fa36fd3880a/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +65551fc5-d944-4950-9c24-f30d0b25faca success main Device pek01-leaf-04 successfully created 2023-09-19 08:10:10.91567+00 pek01-leaf-04 /dcim/devices/bf032a0f-20ad-4ae4-a37b-a4971292c8b3/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +149905ba-1a69-45d7-898c-913e812430eb success main Device pek01-leaf-05 successfully created 2023-09-19 08:10:11.536781+00 pek01-leaf-05 /dcim/devices/06fa92a5-cddc-47aa-9a02-22b140d16be6/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +e34b9fd4-b0b6-4862-8194-d6c8b9b9f210 success main Device pek01-leaf-06 successfully created 2023-09-19 08:10:12.179126+00 pek01-leaf-06 /dcim/devices/ebe97465-935f-4bf8-b29a-d0e1100d5528/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +48aaa39d-a103-4c68-8231-5ef137accb4e success main Device pek01-leaf-07 successfully created 2023-09-19 08:10:12.955348+00 pek01-leaf-07 /dcim/devices/1724a7eb-1663-47da-abaa-00b6271c9754/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +9da68601-66ed-443b-9b6a-bbfaaa55390d success main Device pek01-leaf-08 successfully created 2023-09-19 08:10:13.579953+00 pek01-leaf-08 /dcim/devices/bf4037a6-1802-48e9-8e95-3fd2326f4bdf/ 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +8b8938b9-a066-44d4-87c2-ee9331fa665e success main Circuit ntt-92882225616438277 successfully created 2023-09-19 08:10:15.738464+00 ntt-92882225616438277 /circuits/circuits/a8e8e14c-0a9e-40f5-bf9c-6a231a9bb09f 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +e1dd7770-d2f5-4e90-9f34-53363c211698 success main Circuit tel-92882225616438313 successfully created 2023-09-19 08:10:15.782572+00 tel-92882225616438313 /circuits/circuits/a759a45a-5db5-4f1d-b322-f8df348902b1 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +c7a02014-677e-4610-934a-41679dc1de74 success main Circuit cog-92882225616484933 successfully created 2023-09-19 08:10:15.825334+00 cog-92882225616484933 /circuits/circuits/54da6afa-058e-4367-aeb6-883729a8ad8e 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +9e294dc8-6c4e-4dff-8e4d-5d41a2f67bb1 info main Data refresh from configs complete! 2023-09-19 08:11:02.347827+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +6c9eda1b-2101-445d-8017-f93c5ab4643a success main Circuit cog-92882225616484969 successfully created 2023-09-19 08:10:15.868281+00 cog-92882225616484969 /circuits/circuits/0ca0aabc-bc4e-49d6-b6ab-85a4ad578447 039edf5d-43d8-40f3-ba2e-b9ee479bfc42 +5db35608-e792-4a54-9aac-904e5b02bbee success main Site bre01 successfully created 2023-09-19 08:10:23.697758+00 BRE01 /dcim/sites/bre01/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +597d5946-d570-487a-8151-1fc4002fb56d success main Device bre01-edge-01 successfully created 2023-09-19 08:10:24.028125+00 bre01-edge-01 /dcim/devices/45eac4b1-0a5a-4146-88b5-d0118ba22a0e/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +b3a91b9c-fa3a-4378-9eab-f7e7222eba38 success main Device bre01-edge-02 successfully created 2023-09-19 08:10:24.566848+00 bre01-edge-02 /dcim/devices/16745b0e-5964-4f3e-99e3-aa1646f275f5/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +151f89e6-1b1a-4411-822f-353541881124 success main Device bre01-leaf-01 successfully created 2023-09-19 08:10:24.992453+00 bre01-leaf-01 /dcim/devices/ec08f4ed-e461-4aac-8015-9a1daa49fae6/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +388c0f05-cc5f-450a-b467-41dcebadbdb3 success main Device bre01-leaf-02 successfully created 2023-09-19 08:10:25.632684+00 bre01-leaf-02 /dcim/devices/0d12dbec-16f5-414f-ab68-cd3eda8edb9b/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +f8847368-cd61-467e-b84d-a0e66e06b661 success main Device bre01-leaf-03 successfully created 2023-09-19 08:10:26.204755+00 bre01-leaf-03 /dcim/devices/1642541a-a832-42b8-b80b-c661b9fdd9dc/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +fe6c4674-fff3-4086-82c7-cbc466925539 success main Device bre01-leaf-04 successfully created 2023-09-19 08:10:26.793083+00 bre01-leaf-04 /dcim/devices/f23f0755-7e34-4610-a5af-d21f4d669186/ 4701c1d0-423d-423c-a58f-68e6ae253c0e +a58a3980-c6ae-4b85-b65b-f11a58715457 success main Circuit ver-42999360232801285 successfully created 2023-09-19 08:10:28.174757+00 ver-42999360232801285 /circuits/circuits/6868c1af-8d4a-4524-9bdc-8edd7c904b59 4701c1d0-423d-423c-a58f-68e6ae253c0e +89fe6d2a-923f-4a97-b1cd-d981c532b101 success main Circuit ver-42999360232801321 successfully created 2023-09-19 08:10:28.217408+00 ver-42999360232801321 /circuits/circuits/97294f3c-f6bd-4128-826a-8d5233c1270d 4701c1d0-423d-423c-a58f-68e6ae253c0e +1b1b25dc-8be5-4cae-8832-9327033a11d4 success main Circuit ver-42999360232847941 successfully created 2023-09-19 08:10:28.259023+00 ver-42999360232847941 /circuits/circuits/ee4d2904-f91e-4968-8b3a-44686ec768f6 4701c1d0-423d-423c-a58f-68e6ae253c0e +bdb0ba7b-8670-4a7b-bf25-6ab4f23bb8b7 success main Circuit cog-42999360232847977 successfully created 2023-09-19 08:10:28.299172+00 cog-42999360232847977 /circuits/circuits/2954a9c3-8d08-44db-b93c-2e000314b31a 4701c1d0-423d-423c-a58f-68e6ae253c0e +e5ee2598-04cf-4438-b3f9-53d38957c62c success main Imported DeviceType n9k-C9372tx successfully 2023-09-19 08:10:48.38664+00 Nexus 9372TX /dcim/device-types/3da7fc03-2e5e-480e-8fcd-68f626c79f08/ c4c794a9-59ed-439c-ac6f-a8f09bf1a688 +01a773dd-718c-4793-b802-1c332876cf51 success main Imported DeviceType dcs-7048-t successfully 2023-09-19 08:10:48.574101+00 DCS-7048-T /dcim/device-types/bd0220a8-c7d5-4216-b069-b3d866f11bf0/ 49cfd922-5741-40d7-9ab2-38cfd1eebd29 +42c24758-5e28-4ba6-962e-6fbe1473eef4 default main Creating/refreshing local copy of Git repository "backups"... 2023-09-19 08:11:01.234495+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +f83e7f86-f0d9-4417-a855-34c39164a4be default main Creating/refreshing local copy of Git repository "backups"... 2023-09-19 08:11:01.340258+00 \N \N 2e09bc37-d0cc-44ca-8a35-07cb84a21625 +472576a8-daa0-48e2-8090-e6e494bc999d failure main Remote 'origin' has no refspec set.\nYou can set it as follows: 'git config --add "remote.origin.fetch +refs/heads/*:refs/heads/*"'. 2023-09-19 08:11:01.427961+00 \N \N 2e09bc37-d0cc-44ca-8a35-07cb84a21625 +c25fb851-453d-42d0-9054-dfc14dd83da5 failure main Error while refreshing backups: Remote 'origin' has no refspec set.\nYou can set it as follows: 'git config --add "remote.origin.fetch +refs/heads/*:refs/heads/*"'. 2023-09-19 08:11:01.435288+00 \N \N 2e09bc37-d0cc-44ca-8a35-07cb84a21625 +6c40889b-6277-40c4-9f52-96d7ab44f95f info main Repository synchronization completed in 0 minutes, 0.11 seconds 2023-09-19 08:11:01.437254+00 \N \N 2e09bc37-d0cc-44ca-8a35-07cb84a21625 +3bbda036-f4ce-46de-9c87-f36d23232ef0 default main Creating/refreshing local copy of Git repository "configs"... 2023-09-19 08:11:01.449107+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +04d3a2f5-38a2-4c0c-9f35-2baccdec19bb success main Repository successfully refreshed 2023-09-19 08:11:02.12019+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +482dd084-6a62-4b76-bbdf-d83e41115119 info main The current Git repository hash is "c8de9fa3fd917a23acb2c2c06d95da03d6912cdd" 2023-09-19 08:11:02.123205+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +13b4d952-7b78-465a-9927-5e97e1cf521a info main Refreshing data provided by backups... 2023-09-19 08:11:02.12458+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +d0288678-0dc6-4913-a92d-d3cb21bfa348 info main Refreshing config context schemas... 2023-09-19 08:11:02.135167+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +8e6434b9-62ee-4d6b-ba49-127b0bf205fe info main Refreshing config contexts... 2023-09-19 08:11:02.155647+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +0f61dd97-77e8-4e23-afa5-246720958385 info main Refreshing jobs... 2023-09-19 08:11:02.173962+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +d6ff9289-ef7c-4d4a-99c0-7a524d19c589 info main Refreshing export templates... 2023-09-19 08:11:02.185161+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +846e1fe0-5706-4af0-ac41-851f2ff04cff info main Refreshing Golden Config properties... 2023-09-19 08:11:02.200965+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +c8a9cf19-aa98-41c8-bc86-1e138704f705 success main Repository successfully refreshed 2023-09-19 08:11:02.206597+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +3fd90b0f-6b6f-46ba-82b4-7e590f2c8a59 info main The current Git repository hash is "7bf95185aea430ce78c8b91d1b4bf48faa43aa7f" 2023-09-19 08:11:02.210036+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +4846b689-8c83-4b55-b7a1-9f154d814b28 info main Skipping sync for /opt/nautobot/git/backups/golden_config because directory doesn't exist. 2023-09-19 08:11:02.210349+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +6655d590-7141-4c5e-a794-3408de0c1f45 info main Refreshing data provided by configs... 2023-09-19 08:11:02.211528+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +1c8224ea-8dc1-4bf1-a14b-5cc2c5081f9b info main Refreshing config context schemas... 2023-09-19 08:11:02.214217+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +d2cfeec3-3b53-4bc6-acc2-abba0af9c982 info main Refreshing backup configs... 2023-09-19 08:11:02.22199+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +0c462d05-5979-43da-a211-a28115dd4ec5 info main Refreshing config contexts... 2023-09-19 08:11:02.227344+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +7700daed-2ec1-495f-97f9-a2b49101b080 success main Successfully Pulled git repo 2023-09-19 08:11:02.22871+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +6f22302f-e176-48c3-86be-123009df5433 info main Refreshing data compliance rules... 2023-09-19 08:11:02.240225+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +93ccbfa4-f435-4c38-a749-8d5bf233286d info main Refreshing jobs... 2023-09-19 08:11:02.24365+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +974c8858-2a7a-48a5-836e-b2f124379dee success main Successfully pulled git repo 2023-09-19 08:11:02.244478+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +b18925eb-9f34-4faf-a5f8-33af7678cb96 info main Refreshing export templates... 2023-09-19 08:11:02.255755+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +550eb651-71e5-4806-ba8a-a9ded969d727 info main Refreshing Golden Config properties... 2023-09-19 08:11:02.273417+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +1b054bda-810e-4077-aca0-229976fd88ba info main Skipping sync for /opt/nautobot/git/configs/golden_config because directory doesn't exist. 2023-09-19 08:11:02.275271+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +e8aa912f-61c0-4094-b1d2-a0d38069eb38 info main Refreshing intended configs... 2023-09-19 08:11:02.280647+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +d45f59f6-2972-4b38-bf4a-ba7ac8d395c1 success main Successfully Pulled git repo 2023-09-19 08:11:02.282606+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +ce2d4e43-3ba8-415a-83a1-73e458058cd4 info main Refreshing backup configs... 2023-09-19 08:11:02.285993+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +3329a772-ec03-44a7-896c-dc84676d4987 info main Refreshing jinja templates... 2023-09-19 08:11:02.288607+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +57d34d2a-7df9-44eb-8374-25635fff1df8 success main Successfully Pulled git repo 2023-09-19 08:11:02.28808+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +f846426c-b042-43fd-b35f-d463aa074542 success main Successfully Pulled git repo 2023-09-19 08:11:02.291859+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +57ffce3c-f2ae-47c5-868c-bc66d147d2a6 info main Refreshing data compliance rules... 2023-09-19 08:11:02.294574+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +8833dbca-5b39-4992-86e4-19fe296fbdfb success main Successfully pulled git repo 2023-09-19 08:11:02.296262+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +6833f9b6-27eb-49df-a760-c53dbdb93b0c info main Data refresh from backups complete! 2023-09-19 08:11:02.29802+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +f67ff92b-db50-4b96-adbf-859eb7eccdc7 info main Repository synchronization completed in 0 minutes, 1.13 seconds 2023-09-19 08:11:02.314722+00 \N \N aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 +13dd0e66-d335-4f58-a0f2-233f0f667ef1 info main Refreshing intended configs... 2023-09-19 08:11:02.330432+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +b0c14031-c8da-4c75-99dc-a8fafeb81953 success main Successfully Pulled git repo 2023-09-19 08:11:02.334429+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +5e84e92b-a40b-49e0-a21a-13882ac23226 default main Creating/refreshing local copy of Git repository "configs"... 2023-09-19 08:11:02.341372+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +76995d5b-5797-491d-9d84-e4a4e09feba5 info main Repository synchronization completed in 0 minutes, 1.02 seconds 2023-09-19 08:11:02.353227+00 \N \N c125d337-466c-48f2-9b4a-b2a1bbc45d63 +32945f0e-c9ba-4ff0-81b8-7a0d51d94107 default main Creating/refreshing local copy of Git repository "data"... 2023-09-19 08:11:02.372933+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +9aa1a6d2-e639-4e67-bb2c-cdd68f326714 success main Repository successfully refreshed 2023-09-19 08:11:03.133597+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +ef335836-21c5-47c3-8afe-701577994111 info main The current Git repository hash is "8235f62de37c23f0bbd408cf117c847ab5f1ba2a" 2023-09-19 08:11:03.139704+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +7707dda3-188b-4268-bd93-c50e19537757 info main Refreshing data provided by data... 2023-09-19 08:11:03.141341+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +73f6fcc0-29a1-4dcd-a91f-fc66fcd6decf info main Refreshing config context schemas... 2023-09-19 08:11:03.145488+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +cf30d832-61d0-4479-9baa-842e2ddf5776 info main Refreshing config contexts... 2023-09-19 08:11:03.158856+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +8cf27703-b223-445a-830e-42e5a5320f57 default config contexts Loading config context from `platform_junos.yml` 2023-09-19 08:11:03.161185+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +813c4600-7c7f-46e2-a3a8-355496e188eb failure config contexts Error in loading config context data from `platform_junos.yml`: duplicate key value violates unique constraint "extras_configcontext_name_owner_content_type__c289e08f_uniq"\nDETAIL: Key (name, owner_content_type_id, owner_object_id)=(junos, 139, de7bcb0e-e532-41a6-a98f-39b46fad33e7) already exists.\n 2023-09-19 08:11:03.363154+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +d2dde87d-13d0-4070-b2e8-616e01438363 default config contexts Loading config context from `platform_nxos.yml` 2023-09-19 08:11:03.36878+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +08728b97-8469-4616-8216-3840dea7e9b5 success config contexts Successfully created config context 2023-09-19 08:11:03.620915+00 [data] nxos /extras/config-contexts/704f2cef-3c40-4901-8352-09c8a762f86c/ 22488c5c-151e-4907-8e97-b2848d3ff73f +03f63ff7-b40a-402c-bf75-d0c22431b29e default config contexts Loading config context from `platform_eos.yml` 2023-09-19 08:11:03.636947+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +71ab66b4-7a96-4a9b-8460-06032d53ff0c failure config contexts Error in loading config context data from `platform_eos.yml`: duplicate key value violates unique constraint "extras_configcontext_name_owner_content_type__c289e08f_uniq"\nDETAIL: Key (name, owner_content_type_id, owner_object_id)=(eos, 139, de7bcb0e-e532-41a6-a98f-39b46fad33e7) already exists.\n 2023-09-19 08:11:03.753568+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +3b7f6a28-3207-4ae4-ac07-aca08ab0ce8d default config contexts Loading config context from `data-models.yml` 2023-09-19 08:11:03.758466+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +aeed677c-fd9e-4c88-b533-cf22cfaefda2 success config contexts Successfully created config context 2023-09-19 08:11:03.839728+00 [data] data-models /extras/config-contexts/ab66128b-aa43-4e5c-91fc-c64d0fc2ee73/ 22488c5c-151e-4907-8e97-b2848d3ff73f +b0fae8c8-30dc-40dc-9dca-61d974891b57 default config contexts Loading config context from `role_spine.yml` 2023-09-19 08:11:03.853116+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +7f628aac-f664-439e-ac2e-81c0de6bdff0 failure config contexts Error in loading config context data from `role_spine.yml`: duplicate key value violates unique constraint "extras_configcontext_name_owner_content_type__c289e08f_uniq"\nDETAIL: Key (name, owner_content_type_id, owner_object_id)=(spine, 139, de7bcb0e-e532-41a6-a98f-39b46fad33e7) already exists.\n 2023-09-19 08:11:03.920104+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +c884e97d-b925-4902-a4fa-7d10567b1d17 default local config contexts Loading local config context for `nyc-leaf-01.infra.ntc.com` from `devices/nyc-leaf-01.infra.ntc.com.yml` 2023-09-19 08:11:03.924911+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +2290160f-5bc4-415e-94e6-60f7d015a6ae success local config contexts Successfully updated local config context 2023-09-19 08:11:04.079673+00 nyc-leaf-01.infra.ntc.com /dcim/devices/b99c3111-0b6d-4a36-8207-45d2d00e7e37/ 22488c5c-151e-4907-8e97-b2848d3ff73f +9b1bed1b-11a9-4302-9613-7090daeaa51c default local config contexts Loading local config context for `jcy-rtr-02.infra.ntc.com` from `devices/jcy-rtr-02.infra.ntc.com.yml` 2023-09-19 08:11:04.086579+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +679c6894-574f-422e-ab0e-5bad84b77ef7 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.19856+00 jcy-rtr-02.infra.ntc.com /dcim/devices/720ef39b-a75e-4681-ac70-4237598974d0/ 22488c5c-151e-4907-8e97-b2848d3ff73f +61965778-488a-487a-af4e-8f1cebcb1779 default local config contexts Loading local config context for `wee-n9k-01.nautobot.com` from `devices/wee-n9k-01.nautobot.com.yml` 2023-09-19 08:11:04.204927+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +d1b93971-8779-48c1-b82e-af2dbd1e7201 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.330492+00 wee-n9k-01.nautobot.com /dcim/devices/a420d520-ef19-46a3-90a8-6f47be57b3d6/ 22488c5c-151e-4907-8e97-b2848d3ff73f +57ad4fd9-2c5d-4a71-b2c2-dd0c72286af0 default local config contexts Loading local config context for `jcy-bb-01.infra.ntc.com` from `devices/jcy-bb-01.infra.ntc.com.yml` 2023-09-19 08:11:04.332763+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +a3729c31-fc75-4374-b319-a0ed696b2bd1 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.388812+00 jcy-bb-01.infra.ntc.com /dcim/devices/45cca71d-85a7-42ac-b792-af8b4aef87cd/ 22488c5c-151e-4907-8e97-b2848d3ff73f +869ca91d-0bb0-4f26-9737-d5e5062ed016 default local config contexts Loading local config context for `jcy-spine-01.infra.ntc.com` from `devices/jcy-spine-01.infra.ntc.com.yml` 2023-09-19 08:11:04.391637+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +9ad23a5e-75b7-404d-8fdc-1a0642565a72 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.445991+00 jcy-spine-01.infra.ntc.com /dcim/devices/6442be3b-16d7-4788-ad3f-fb88282ea42d/ 22488c5c-151e-4907-8e97-b2848d3ff73f +bd0ea384-c06a-44e4-a067-9d449a67a06e default local config contexts Loading local config context for `nyc-leaf-02.infra.ntc.com` from `devices/nyc-leaf-02.infra.ntc.com.yml` 2023-09-19 08:11:04.450852+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +f62a25d6-e11d-4f54-88ff-f379eaef35e3 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.550578+00 nyc-leaf-02.infra.ntc.com /dcim/devices/6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1/ 22488c5c-151e-4907-8e97-b2848d3ff73f +9e677c0a-c00a-419f-a383-efc389d968b5 default local config contexts Loading local config context for `nyc-rtr-01.infra.ntc.com` from `devices/nyc-rtr-01.infra.ntc.com.yml` 2023-09-19 08:11:04.557083+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +0e34a5e8-40a8-44e8-9b2d-7dd91c59c4bb success local config contexts Successfully updated local config context 2023-09-19 08:11:04.672513+00 nyc-rtr-01.infra.ntc.com /dcim/devices/919660c6-0654-4904-9cf5-61a03cc069c3/ 22488c5c-151e-4907-8e97-b2848d3ff73f +c5e38e33-05d4-4637-8598-36dfe90de10c default local config contexts Loading local config context for `wee-n9k-02.nautobot.com` from `devices/wee-n9k-02.nautobot.com.yml` 2023-09-19 08:11:04.675047+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +341fc1ea-19a8-4c85-a05a-1623fa856815 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.825868+00 wee-n9k-02.nautobot.com /dcim/devices/4620c38c-b222-443c-9e31-98ef97b2e756/ 22488c5c-151e-4907-8e97-b2848d3ff73f +bc4fc537-76ba-468e-b322-370866daf3a1 default local config contexts Loading local config context for `wee-eos7k-01.nautobot.com` from `devices/wee-eos7k-01.nautobot.com.yml` 2023-09-19 08:11:04.832194+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +0b098a26-a835-4c68-8dc7-b2747e20ba1c success local config contexts Successfully updated local config context 2023-09-19 08:11:04.950555+00 wee-eos7k-01.nautobot.com /dcim/devices/cdece2fc-4010-45d0-9949-3de52bb707c5/ 22488c5c-151e-4907-8e97-b2848d3ff73f +433de372-8d79-4dc8-9122-36d5d9d8532f default local config contexts Loading local config context for `nyc-rtr-02.infra.ntc.com` from `devices/nyc-rtr-02.infra.ntc.com.yml` 2023-09-19 08:11:04.956339+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +9fddf294-65dd-47e4-8c94-f63461979ec6 success local config contexts Successfully updated local config context 2023-09-19 08:11:05.062373+00 nyc-rtr-02.infra.ntc.com /dcim/devices/c8fef37f-699a-4f5a-b228-495cb5702a43/ 22488c5c-151e-4907-8e97-b2848d3ff73f +47123b50-85b7-4407-a4a8-b71760289c83 default local config contexts Loading local config context for `nyc-bb-01.infra.ntc.com` from `devices/nyc-bb-01.infra.ntc.com.yml` 2023-09-19 08:11:05.065254+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +3b343c49-a5f8-4d15-9af0-b820f04d9510 success local config contexts Successfully updated local config context 2023-09-19 08:11:05.163666+00 nyc-bb-01.infra.ntc.com /dcim/devices/4f1092db-761d-4ae6-9d20-275e186b67ea/ 22488c5c-151e-4907-8e97-b2848d3ff73f +583773a5-2d40-476b-8621-38fe2ef46590 default local config contexts Loading local config context for `jcy-rtr-01.infra.ntc.com` from `devices/jcy-rtr-01.infra.ntc.com.yml` 2023-09-19 08:11:05.167775+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +9f8d7b64-5019-4efa-9c02-d8d7d4d6fe5e success main Repository successfully refreshed 2023-09-19 08:11:02.650399+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +c7f34dbc-17fa-4975-9898-cfffc85aa931 info main The current Git repository hash is "7bf95185aea430ce78c8b91d1b4bf48faa43aa7f" 2023-09-19 08:11:02.655396+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +b995493f-867c-4020-a803-a98b7c9b2aff info main Refreshing data provided by configs... 2023-09-19 08:11:02.656535+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +eac7842c-bcbd-4d8a-bbcd-29bd2ec2b5de info main Refreshing config context schemas... 2023-09-19 08:11:02.658804+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +1d2b6f82-80b0-4b56-ac30-ad49f1e51e72 info main Refreshing config contexts... 2023-09-19 08:11:02.664053+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +096b4c42-78bc-4f3e-965c-17afd9e61d93 info main Refreshing jobs... 2023-09-19 08:11:02.67235+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +099cca33-d8b8-49ba-b4a0-fd0c056d7e62 info main Refreshing export templates... 2023-09-19 08:11:02.67763+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +335f7aa1-a8a3-485a-98a3-2210723d2be9 info main Refreshing Golden Config properties... 2023-09-19 08:11:02.683482+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +1c9332f5-c5e3-44bc-a085-a59fe26f4f49 info main Skipping sync for /opt/nautobot/git/configs/golden_config because directory doesn't exist. 2023-09-19 08:11:02.685148+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +820532b4-d7fa-4d02-8300-35d380954ffb info main Refreshing backup configs... 2023-09-19 08:11:02.688696+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +7b3504bd-e65b-47b9-b4e7-bdf02b0082f7 success main Successfully Pulled git repo 2023-09-19 08:11:02.69039+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +04b2bb46-7d2f-4d22-a2f3-14622fc66858 info main Refreshing data compliance rules... 2023-09-19 08:11:02.693733+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +aefa295d-2525-493a-98db-a536189f2538 success main Successfully pulled git repo 2023-09-19 08:11:02.695501+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +c1d63f3e-ff41-4aa3-aaff-f5425a45df71 info main Refreshing intended configs... 2023-09-19 08:11:02.724348+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +b16312b4-1fbe-420d-acae-729f07360722 success main Successfully Pulled git repo 2023-09-19 08:11:02.727309+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +b38112e8-387f-48af-ab55-14193a0fd28a info main Refreshing jinja templates... 2023-09-19 08:11:02.73125+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +0137abdc-f9d6-49fd-9291-f10e411bebef success main Successfully Pulled git repo 2023-09-19 08:11:02.73645+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +2ecee879-8bb4-4c30-aac1-c6b28b200115 info main Data refresh from configs complete! 2023-09-19 08:11:02.740745+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +a609f863-ae43-47d6-9bff-9b0c9d5581e3 info main Repository synchronization completed in 0 minutes, 1.39 seconds 2023-09-19 08:11:02.745968+00 \N \N f20a6652-4d50-4f58-bcff-6fd29a025b7d +8cc33f82-e75b-45f0-b12e-baf1ed866d01 default main Creating/refreshing local copy of Git repository "data"... 2023-09-19 08:11:02.769732+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +f54b69eb-9f38-41a7-b825-b86697c4105c success main Repository successfully refreshed 2023-09-19 08:11:03.088335+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +bf4790be-543f-43c9-b736-ca654c93595f info main The current Git repository hash is "8235f62de37c23f0bbd408cf117c847ab5f1ba2a" 2023-09-19 08:11:03.091747+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +0511ed26-ef65-42a4-9e20-3835772c2ed1 info main Refreshing data provided by data... 2023-09-19 08:11:03.093262+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +509f776f-d2da-49b4-bca4-eca7f568f354 info main Refreshing config context schemas... 2023-09-19 08:11:03.095533+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +3b4e37c4-fd0f-450a-b483-aeba8537eedc info main Refreshing config contexts... 2023-09-19 08:11:03.106988+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +8bb9bc3d-2690-4e42-a073-e1d38c533242 default config contexts Loading config context from `platform_junos.yml` 2023-09-19 08:11:03.108782+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +2808f7fb-0745-4cd0-ab53-5bce85a1e70f success config contexts Successfully created config context 2023-09-19 08:11:03.364097+00 [data] junos /extras/config-contexts/e4f28dc4-8b3f-4f28-9dff-6fcb20409a47/ 360a8cff-abaa-4111-874f-a0ea2268020d +c5e70980-4f4f-44bb-9d39-fb5b7f65b79e default config contexts Loading config context from `platform_nxos.yml` 2023-09-19 08:11:03.381218+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +a59155a1-875b-4a5d-8370-b59c376927a7 failure config contexts Error in loading config context data from `platform_nxos.yml`: duplicate key value violates unique constraint "extras_configcontext_name_owner_content_type__c289e08f_uniq"\nDETAIL: Key (name, owner_content_type_id, owner_object_id)=(nxos, 139, de7bcb0e-e532-41a6-a98f-39b46fad33e7) already exists.\n 2023-09-19 08:11:03.620023+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +a6ae2812-ae92-4147-9461-b51dbbf9f442 default config contexts Loading config context from `platform_eos.yml` 2023-09-19 08:11:03.625518+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +e18616ea-fa87-4929-b77c-66edc7ba10d7 success config contexts Successfully created config context 2023-09-19 08:11:03.757373+00 [data] eos /extras/config-contexts/100c8434-1e6b-4670-934f-ab4b4c9899cb/ 360a8cff-abaa-4111-874f-a0ea2268020d +3d0205c9-828e-4c88-a57a-f348a304ac9e default config contexts Loading config context from `data-models.yml` 2023-09-19 08:11:03.769207+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +7241b4c2-93fa-4ddf-85be-6cab4a7426e0 failure config contexts Error in loading config context data from `data-models.yml`: duplicate key value violates unique constraint "extras_configcontext_name_owner_content_type__c289e08f_uniq"\nDETAIL: Key (name, owner_content_type_id, owner_object_id)=(data-models, 139, de7bcb0e-e532-41a6-a98f-39b46fad33e7) already exists.\n 2023-09-19 08:11:03.83883+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +7c2086d2-8968-40aa-8ce4-66f1d2e56847 default config contexts Loading config context from `role_spine.yml` 2023-09-19 08:11:03.843281+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +39be310b-c410-40b6-a300-0c16a907b216 success config contexts Successfully created config context 2023-09-19 08:11:03.923504+00 [data] spine /extras/config-contexts/e4893016-d724-4a30-b167-26b312b1b3d5/ 360a8cff-abaa-4111-874f-a0ea2268020d +91660c62-8113-4331-a629-a53abba6df0a default local config contexts Loading local config context for `nyc-leaf-01.infra.ntc.com` from `devices/nyc-leaf-01.infra.ntc.com.yml` 2023-09-19 08:11:03.937079+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +51cb4574-737f-4219-8d3a-7e00b383e1a3 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.092962+00 nyc-leaf-01.infra.ntc.com /dcim/devices/b99c3111-0b6d-4a36-8207-45d2d00e7e37/ 360a8cff-abaa-4111-874f-a0ea2268020d +e91052b4-36d0-4a6a-8365-399eecf7af2c default local config contexts Loading local config context for `jcy-rtr-02.infra.ntc.com` from `devices/jcy-rtr-02.infra.ntc.com.yml` 2023-09-19 08:11:04.097091+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +f4c66e32-79e8-4087-8d13-fd234a7a3096 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.179644+00 jcy-rtr-02.infra.ntc.com /dcim/devices/720ef39b-a75e-4681-ac70-4237598974d0/ 360a8cff-abaa-4111-874f-a0ea2268020d +a0d9ddcf-d2c6-4403-bc46-1d0ba3c4c4a8 default local config contexts Loading local config context for `wee-n9k-01.nautobot.com` from `devices/wee-n9k-01.nautobot.com.yml` 2023-09-19 08:11:04.182711+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +5de07f89-6980-4e61-8364-536c1ad733cc success local config contexts Successfully updated local config context 2023-09-19 08:11:04.308442+00 wee-n9k-01.nautobot.com /dcim/devices/a420d520-ef19-46a3-90a8-6f47be57b3d6/ 360a8cff-abaa-4111-874f-a0ea2268020d +1980675d-5b26-4b50-8ec8-e57777c3ea6a default local config contexts Loading local config context for `jcy-bb-01.infra.ntc.com` from `devices/jcy-bb-01.infra.ntc.com.yml` 2023-09-19 08:11:04.310816+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +3e46d590-4bd2-4dc2-86e0-b1ce90003c4d success local config contexts Successfully updated local config context 2023-09-19 08:11:04.462875+00 jcy-bb-01.infra.ntc.com /dcim/devices/45cca71d-85a7-42ac-b792-af8b4aef87cd/ 360a8cff-abaa-4111-874f-a0ea2268020d +26727c45-09b6-46a9-ac97-d43616a6a8ef default local config contexts Loading local config context for `jcy-spine-01.infra.ntc.com` from `devices/jcy-spine-01.infra.ntc.com.yml` 2023-09-19 08:11:04.466075+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +ec2ce620-171b-4ed1-b96f-1a2f668d51e6 info local config contexts No change to local config context 2023-09-19 08:11:04.480693+00 jcy-spine-01.infra.ntc.com /dcim/devices/6442be3b-16d7-4788-ad3f-fb88282ea42d/ 360a8cff-abaa-4111-874f-a0ea2268020d +41330ef5-e8ee-4775-ae74-1526be42fc34 default local config contexts Loading local config context for `nyc-leaf-02.infra.ntc.com` from `devices/nyc-leaf-02.infra.ntc.com.yml` 2023-09-19 08:11:04.484595+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +6c4a2065-5ba2-4968-b779-4d2deb8be7e2 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.585026+00 nyc-leaf-02.infra.ntc.com /dcim/devices/6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1/ 360a8cff-abaa-4111-874f-a0ea2268020d +971af32b-73b3-4fc6-98fc-b0224e6ad1ed default local config contexts Loading local config context for `nyc-rtr-01.infra.ntc.com` from `devices/nyc-rtr-01.infra.ntc.com.yml` 2023-09-19 08:11:04.588909+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +47e93088-cd78-4c14-9d6e-ee6869000ecc success local config contexts Successfully updated local config context 2023-09-19 08:11:04.734567+00 nyc-rtr-01.infra.ntc.com /dcim/devices/919660c6-0654-4904-9cf5-61a03cc069c3/ 360a8cff-abaa-4111-874f-a0ea2268020d +9e7c7f31-1c63-4418-89b5-081619fcd1b6 default local config contexts Loading local config context for `wee-n9k-02.nautobot.com` from `devices/wee-n9k-02.nautobot.com.yml` 2023-09-19 08:11:04.739129+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +9af4d791-94ee-4bd5-b5c6-1052cd9e41e3 success local config contexts Successfully updated local config context 2023-09-19 08:11:04.862836+00 wee-n9k-02.nautobot.com /dcim/devices/4620c38c-b222-443c-9e31-98ef97b2e756/ 360a8cff-abaa-4111-874f-a0ea2268020d +dad4dc88-3c27-4558-a06c-9683f17ba84c default local config contexts Loading local config context for `wee-eos7k-01.nautobot.com` from `devices/wee-eos7k-01.nautobot.com.yml` 2023-09-19 08:11:04.867172+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +d390698a-9378-401d-8eb6-450bccaf570d success local config contexts Successfully updated local config context 2023-09-19 08:11:04.986626+00 wee-eos7k-01.nautobot.com /dcim/devices/cdece2fc-4010-45d0-9949-3de52bb707c5/ 360a8cff-abaa-4111-874f-a0ea2268020d +e4dbc3e1-d426-406d-b3f4-a9f2268feda6 default local config contexts Loading local config context for `nyc-rtr-02.infra.ntc.com` from `devices/nyc-rtr-02.infra.ntc.com.yml` 2023-09-19 08:11:04.997734+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +8d45c5fd-1d21-4ce0-9174-5b1b5f5dd57b success local config contexts Successfully updated local config context 2023-09-19 08:11:05.106237+00 nyc-rtr-02.infra.ntc.com /dcim/devices/c8fef37f-699a-4f5a-b228-495cb5702a43/ 360a8cff-abaa-4111-874f-a0ea2268020d +1e603a94-3ce0-4566-bbcf-c65964768d4c default local config contexts Loading local config context for `nyc-bb-01.infra.ntc.com` from `devices/nyc-bb-01.infra.ntc.com.yml` 2023-09-19 08:11:05.110975+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +551c807b-4021-4901-935f-018ac129326a success local config contexts Successfully updated local config context 2023-09-19 08:11:05.203226+00 nyc-bb-01.infra.ntc.com /dcim/devices/4f1092db-761d-4ae6-9d20-275e186b67ea/ 360a8cff-abaa-4111-874f-a0ea2268020d +94675b30-db68-4918-a41d-fb986f83ea9c default local config contexts Loading local config context for `jcy-rtr-01.infra.ntc.com` from `devices/jcy-rtr-01.infra.ntc.com.yml` 2023-09-19 08:11:05.207001+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +5b1acd3e-28b6-417b-ab9e-ae02363f0872 info local config contexts No change to local config context 2023-09-19 08:11:05.218838+00 jcy-rtr-01.infra.ntc.com /dcim/devices/80f9eb01-db6d-4939-9f2e-ef2c222cedee/ 360a8cff-abaa-4111-874f-a0ea2268020d +f66981c2-1e57-4cac-b7dc-3cffdd9269de default local config contexts Loading local config context for `nyc-spine-01.infra.ntc.com` from `devices/nyc-spine-01.infra.ntc.com.yml` 2023-09-19 08:11:05.22415+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +b593c8fa-ddf5-41e7-aa7a-5d4fe10030c8 success local config contexts Successfully updated local config context 2023-09-19 08:11:05.298451+00 nyc-spine-01.infra.ntc.com /dcim/devices/be8b5ac0-0df7-4eff-90f1-4c86f16c362e/ 360a8cff-abaa-4111-874f-a0ea2268020d +f8c45cc0-1680-4fc7-9417-fa8f37a366a7 default local config contexts Loading local config context for `jcy-spine-02.infra.ntc.com` from `devices/jcy-spine-02.infra.ntc.com.yml` 2023-09-19 08:11:05.3058+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +70479faa-3a8e-4c5f-b244-acc0d54eabb6 success local config contexts Successfully updated local config context 2023-09-19 08:11:05.394288+00 jcy-spine-02.infra.ntc.com /dcim/devices/b79eb1e8-3a2c-4d13-b130-92eb82f6b8af/ 360a8cff-abaa-4111-874f-a0ea2268020d +47807a7a-267e-45e9-9078-8c98ec146ea1 default local config contexts Loading local config context for `nyc-spine-02.infra.ntc.com` from `devices/nyc-spine-02.infra.ntc.com.yml` 2023-09-19 08:11:05.402666+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +2842769d-cbcf-48d7-b1d6-57402e9abd81 info local config contexts No change to local config context 2023-09-19 08:11:05.412601+00 nyc-spine-02.infra.ntc.com /dcim/devices/182b57af-ef9e-428d-916d-7f18e14357d1/ 360a8cff-abaa-4111-874f-a0ea2268020d +ac266843-c2f3-462f-b4c0-07582ac6f26f warning config contexts Deleted config context [data] data-models 2023-09-19 08:11:05.517424+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +221eb6fb-79b4-454b-9fc0-ed77880f81a7 warning config contexts Deleted config context [data] nxos 2023-09-19 08:11:05.625205+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +db7f4c57-66d8-4026-9852-ed206e5478d8 info main Refreshing jobs... 2023-09-19 08:11:05.641951+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +ff8438ef-0a70-456e-9cf4-edf6bbc98ea1 info main Refreshing export templates... 2023-09-19 08:11:05.651938+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +5b3e4b31-6287-4d7c-b790-8e64f7ee4e5c info main Refreshing Golden Config properties... 2023-09-19 08:11:05.659281+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +1e46f936-1493-41a8-bdef-2ef1500df310 info main Skipping sync for /opt/nautobot/git/data/golden_config because directory doesn't exist. 2023-09-19 08:11:05.662565+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +23fe9192-ff6f-4102-ab63-32b674610e25 info main Refreshing backup configs... 2023-09-19 08:11:05.672438+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +2a7f348a-a711-46c4-a1ad-e4b496362e2d success main Successfully Pulled git repo 2023-09-19 08:11:05.679241+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +68ad0575-db0d-4906-b0d7-5fe4493d0192 info main Refreshing data compliance rules... 2023-09-19 08:11:05.684482+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +61bf2611-24a8-4e3c-8afd-04288bc3ee93 success main Successfully pulled git repo 2023-09-19 08:11:05.687771+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +ac92c058-64c1-4fe5-9103-15530a27743a info main Refreshing intended configs... 2023-09-19 08:11:05.748241+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +be898a1e-c6be-490f-96a5-60617cc33ba1 success main Successfully Pulled git repo 2023-09-19 08:11:05.750164+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +d16d9e0a-307e-4957-a356-f5f157a36c58 info main Refreshing jinja templates... 2023-09-19 08:11:05.754768+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +26dca1a9-488b-454f-8c88-0110589198e6 success main Successfully Pulled git repo 2023-09-19 08:11:05.757309+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +794c3c93-efe9-43bc-a56c-b7bffc14b675 info main Data refresh from data complete! 2023-09-19 08:11:05.764428+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +d81d112e-0220-4d5a-a2f6-5c01ada0b8b3 info main Repository synchronization completed in 0 minutes, 4.37 seconds 2023-09-19 08:11:05.771638+00 \N \N 360a8cff-abaa-4111-874f-a0ea2268020d +7e6f8b5a-50b6-40e4-8fab-f4c05a978034 default main Creating/refreshing local copy of Git repository "templates"... 2023-09-19 08:11:05.789889+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +66c179bb-0646-41c9-974b-9049294c1507 success main Repository successfully refreshed 2023-09-19 08:11:06.598722+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +24fc203a-da57-4a83-8e9b-39aafbf10c42 info main The current Git repository hash is "c79d9dcaba5cb6dbdf8a70c21f5c7b6861d1d6a2" 2023-09-19 08:11:06.601835+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +4788946f-ab50-4a14-afdb-2b065a55024e info main Refreshing data provided by templates... 2023-09-19 08:11:06.602932+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +8a24aaec-6d70-4ea2-9b9f-fefeca3fb8f0 info main Refreshing config context schemas... 2023-09-19 08:11:06.605098+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +d1d73ea0-1137-4f73-8666-579e65f956bc info main Refreshing config contexts... 2023-09-19 08:11:06.610037+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +06ff7c9e-0fe4-4def-9ac3-0b62286f60ee info main Refreshing jobs... 2023-09-19 08:11:06.617693+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +1e650fbc-ce90-4070-9019-1a7be8db7ab9 info main Refreshing export templates... 2023-09-19 08:11:06.622875+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +a16a45cb-282d-4403-865e-aafc731a8b62 info main Refreshing Golden Config properties... 2023-09-19 08:11:06.627449+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +8b0fb466-884d-4177-835a-c21a3e6e0fef info main Skipping sync for /opt/nautobot/git/templates/golden_config because directory doesn't exist. 2023-09-19 08:11:06.629061+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +37202392-8383-4a53-be77-4a2cf37a98a1 info main Refreshing backup configs... 2023-09-19 08:11:06.632411+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +88f2ec14-b814-424c-9a12-fd312d52e364 success main Successfully Pulled git repo 2023-09-19 08:11:06.633974+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +4ca1ed7a-0ffc-46f2-9638-15d5790d23a1 info main Refreshing data compliance rules... 2023-09-19 08:11:06.637187+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +fb668c29-1dda-4a9b-ae4f-f1558ed890be success main Successfully pulled git repo 2023-09-19 08:11:06.638669+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +c0a4b546-849b-4232-91c5-9f3d02cc9669 info main Refreshing intended configs... 2023-09-19 08:11:06.664747+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +c66f4cd8-d3e9-463c-831d-38440c16df40 success main Successfully Pulled git repo 2023-09-19 08:11:06.666557+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +f2dd546c-38c3-49a1-ba32-617615e5bdf7 info main Refreshing jinja templates... 2023-09-19 08:11:06.66984+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +229fd900-5cf2-40c4-bc07-42e791c0fd39 success main Successfully Pulled git repo 2023-09-19 08:11:06.671538+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +e90166c3-591b-4ec4-b666-bdea82ae6d17 info main Data refresh from templates complete! 2023-09-19 08:11:06.674723+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +3f0e96be-c406-4f46-ad41-d63ab4a7e09b info main Repository synchronization completed in 0 minutes, 5.27 seconds 2023-09-19 08:11:06.678892+00 \N \N a2d02f1e-2d86-4302-a7fc-a625b841109e +7708fbb4-c1c1-4eb0-b068-984869f98650 success local config contexts Successfully updated local config context 2023-09-19 08:11:05.252402+00 jcy-rtr-01.infra.ntc.com /dcim/devices/80f9eb01-db6d-4939-9f2e-ef2c222cedee/ 22488c5c-151e-4907-8e97-b2848d3ff73f +a97a8d00-6717-44da-aac3-501fa4f2d3b6 default local config contexts Loading local config context for `nyc-spine-01.infra.ntc.com` from `devices/nyc-spine-01.infra.ntc.com.yml` 2023-09-19 08:11:05.255976+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +78fe5af7-938b-4400-a2e0-6de3d841d9e1 success local config contexts Successfully updated local config context 2023-09-19 08:11:05.335434+00 nyc-spine-01.infra.ntc.com /dcim/devices/be8b5ac0-0df7-4eff-90f1-4c86f16c362e/ 22488c5c-151e-4907-8e97-b2848d3ff73f +05a9ebcb-a18b-421c-a3b9-0b0bcea95ea2 default local config contexts Loading local config context for `jcy-spine-02.infra.ntc.com` from `devices/jcy-spine-02.infra.ntc.com.yml` 2023-09-19 08:11:05.338826+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +a549008c-c06b-47f4-9b80-275c324106c7 info local config contexts No change to local config context 2023-09-19 08:11:05.351069+00 jcy-spine-02.infra.ntc.com /dcim/devices/b79eb1e8-3a2c-4d13-b130-92eb82f6b8af/ 22488c5c-151e-4907-8e97-b2848d3ff73f +528f27d4-48a5-4571-82ea-82cba5824dba default local config contexts Loading local config context for `nyc-spine-02.infra.ntc.com` from `devices/nyc-spine-02.infra.ntc.com.yml` 2023-09-19 08:11:05.35419+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +cbee09c3-3758-497e-9a6b-2ed0a4e7214c success local config contexts Successfully updated local config context 2023-09-19 08:11:05.425283+00 nyc-spine-02.infra.ntc.com /dcim/devices/182b57af-ef9e-428d-916d-7f18e14357d1/ 22488c5c-151e-4907-8e97-b2848d3ff73f +29003b8a-d848-484e-a2db-e2651f12f6e3 warning config contexts Deleted config context [data] eos 2023-09-19 08:11:05.561792+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +7f8d3149-9b7a-4b67-9151-e69d704575ce warning config contexts Deleted config context [data] junos 2023-09-19 08:11:05.680215+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +808de824-7a5f-4064-8980-b238e3d78922 warning config contexts Deleted config context [data] spine 2023-09-19 08:11:05.776084+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +3854046a-0325-47a4-9954-07dd1f0b9dfc info main Refreshing jobs... 2023-09-19 08:11:05.792545+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +7a63629a-cf55-4fc2-9050-67d56e2aa219 info main Refreshing export templates... 2023-09-19 08:11:05.802279+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +cb8256fb-4239-4e9b-a38b-8e5e19674a50 info main Refreshing Golden Config properties... 2023-09-19 08:11:05.807042+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +e8d2c05b-9419-48dd-b725-8cab35b4103a info main Skipping sync for /opt/nautobot/git/data/golden_config because directory doesn't exist. 2023-09-19 08:11:05.813158+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +cffa77d8-b1b7-4462-988d-31e1d313ed84 info main Refreshing backup configs... 2023-09-19 08:11:05.816532+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +596b393e-f6bf-48d1-a4e0-4c398116fe47 success main Successfully Pulled git repo 2023-09-19 08:11:05.818382+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +9bb37db7-33a5-482c-b159-a3ec01a6de4f info main Refreshing data compliance rules... 2023-09-19 08:11:05.82275+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +d1a376c4-e847-49ad-9940-28dc4b1e8cef success main Successfully pulled git repo 2023-09-19 08:11:05.82461+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +a13439cb-82df-431d-b641-67064ca12c6e info main Refreshing intended configs... 2023-09-19 08:11:05.875926+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +73091378-5586-42e1-8a2a-842940e85397 success main Successfully Pulled git repo 2023-09-19 08:11:05.882494+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +8a5bb96f-9ffb-4eea-9f4c-2072152dba93 info main Refreshing jinja templates... 2023-09-19 08:11:05.890483+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +4b8fa0a5-7a0a-4877-b180-b61a177ece6e success main Successfully Pulled git repo 2023-09-19 08:11:05.892203+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +18e217f2-8991-4da7-b28a-152fd59b0fd7 info main Data refresh from data complete! 2023-09-19 08:11:05.900317+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +668083dd-56e3-4660-b5f6-1713151b83ae info main Repository synchronization completed in 0 minutes, 4.54 seconds 2023-09-19 08:11:05.909222+00 \N \N 22488c5c-151e-4907-8e97-b2848d3ff73f +c21e19f5-7fc3-4d2b-b532-04a1b9233dc7 default main Creating/refreshing local copy of Git repository "templates"... 2023-09-19 08:11:05.923648+00 \N \N 99b80f3b-0138-4ee7-aec6-4e0c70fdd5ab +cd4d9876-db0b-438b-abc0-4414e16493df failure main Remote 'origin' has no refspec set.\nYou can set it as follows: 'git config --add "remote.origin.fetch +refs/heads/*:refs/heads/*"'. 2023-09-19 08:11:05.938403+00 \N \N 99b80f3b-0138-4ee7-aec6-4e0c70fdd5ab +cf2aea81-4b17-4c60-91f5-0c27347ea78b failure main Error while refreshing templates: Remote 'origin' has no refspec set.\nYou can set it as follows: 'git config --add "remote.origin.fetch +refs/heads/*:refs/heads/*"'. 2023-09-19 08:11:05.9425+00 \N \N 99b80f3b-0138-4ee7-aec6-4e0c70fdd5ab +4e1963b9-be38-4267-b9fe-907514a645d9 info main Repository synchronization completed in 0 minutes, 4.52 seconds 2023-09-19 08:11:05.943559+00 \N \N 99b80f3b-0138-4ee7-aec6-4e0c70fdd5ab +f80b6611-aac6-4eff-a4e3-a8ce63f7f13e success main Performed validation on: 47 devices. 2023-09-19 08:11:13.001005+00 \N \N 7bdef963-b3e9-4ac7-91f2-4e0d47af0ed2 +18422119-becc-4951-a459-45e7119e96e2 success main Device Software Validation Report completed. 2023-09-19 08:11:13.027534+00 \N \N 7bdef963-b3e9-4ac7-91f2-4e0d47af0ed2 +0d4c6657-3d9f-4884-bdeb-54a086319baa success main Performed validation on: 6 inventory items. 2023-09-19 08:11:13.286278+00 \N \N 29868148-4ad0-4b24-b3d6-770f027792c6 +286e8201-d872-4da5-8084-6cc5d4cb6d6f success main Inventory Item Software Validation Report completed. 2023-09-19 08:11:13.287548+00 \N \N 29868148-4ad0-4b24-b3d6-770f027792c6 +\. + + +-- +-- Data for Name: extras_jobresult; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_jobresult (id, name, created, completed, status, data, job_id, obj_type_id, user_id, _custom_field_data, schedule_id, job_model_id, job_kwargs) FROM stdin; +ba22e9c0-c1f4-4a0c-b721-b8532dccbf26 users 2023-09-19 08:09:39.66325+00 \N pending \N 960c7c31-f7e0-482a-88e5-a4490a87dfa0 16 \N {} \N \N \N +3239c1c3-b924-4b28-885e-dfc6f684999e regions 2023-09-19 08:09:41.202062+00 \N pending \N 3c86550c-b4cf-4a4e-9c41-2240b3d80c89 16 \N {} \N \N \N +8eed560c-aa62-4356-8613-f38a0e74b6e3 manufacturers 2023-09-19 08:09:43.371782+00 \N pending \N 3cd0a1e4-7b5d-47cd-bcfb-067151a208dc 16 \N {} \N \N \N +b55019bf-c12f-43b9-a6c7-0b514faf8327 circuits 2023-09-19 08:09:43.440106+00 \N pending \N 86a015f0-936e-4be9-9ce6-9f3201607543 16 \N {} \N \N \N +a985f3e0-8642-4490-bb76-17a6b303df4a devicetypes 2023-09-19 08:09:47.687655+00 \N pending \N 399c22b2-fff5-4a4c-9c6e-053684b30148 16 \N {} \N \N \N +da724996-c4e6-492a-9f66-b7b5b713e2f9 devicetypes 2023-09-19 08:09:47.947105+00 \N pending \N 45565429-0b34-4737-add0-56fd57da255c 16 \N {} \N \N \N +07d2d94b-6c2d-4b9b-b69e-edbc2e3da945 pops 2023-09-19 08:09:56.015986+00 \N pending \N 6b4cc532-0d37-4c04-b801-13053d9fe387 16 \N {} \N \N \N +039edf5d-43d8-40f3-ba2e-b9ee479bfc42 pops 2023-09-19 08:10:07.524916+00 \N pending \N 5635249a-3201-4955-9e3b-ba5c0182636c 16 \N {} \N \N \N +4701c1d0-423d-423c-a58f-68e6ae253c0e pops 2023-09-19 08:10:23.448397+00 \N pending \N 9dcacca5-d582-4b82-9b62-ab040b4816f6 16 \N {} \N \N \N +c4c794a9-59ed-439c-ac6f-a8f09bf1a688 colo 2023-09-19 08:10:48.024716+00 \N pending \N ee8a8f53-4d25-4d57-9dc8-a2340198a0d3 16 \N {} \N \N \N +49cfd922-5741-40d7-9ab2-38cfd1eebd29 colo 2023-09-19 08:10:48.399704+00 \N pending \N aeb502e9-985c-4dc3-928a-0c954ed0a34b 16 \N {} \N \N \N +2e09bc37-d0cc-44ca-8a35-07cb84a21625 backups 2023-09-19 08:11:01.322747+00 2023-09-19 08:11:01.436635+00 errored \N e85e4ba7-46cf-409a-88f2-354cdeac2f7b 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +f20a6652-4d50-4f58-bcff-6fd29a025b7d configs 2023-09-19 08:11:01.354873+00 2023-09-19 08:11:02.745863+00 completed \N 0426d3cb-2acf-4a8b-8663-ff36c625b89d 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +a2d02f1e-2d86-4302-a7fc-a625b841109e templates 2023-09-19 08:11:01.413492+00 2023-09-19 08:11:06.678801+00 completed \N bdaccfad-ea7f-48ab-b14f-3d7da80e981e 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +7bdef963-b3e9-4ac7-91f2-4e0d47af0ed2 device lifecycle 2023-09-19 08:11:11.07167+00 \N pending \N e01cc126-6a56-4c4e-96a5-8e7a27f65797 16 \N {} \N \N \N +29868148-4ad0-4b24-b3d6-770f027792c6 device lifecycle 2023-09-19 08:11:13.030114+00 \N pending \N 4b25265d-b1bb-436c-8951-dbccc01975b8 16 \N {} \N \N \N +aa8f2b85-969d-4aa2-88ed-a7794aaf3b87 backups 2023-09-19 08:11:01.185854+00 2023-09-19 08:11:02.31384+00 completed \N 4d1816b3-1100-46fa-bc81-f5136944a8eb 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +c125d337-466c-48f2-9b4a-b2a1bbc45d63 configs 2023-09-19 08:11:01.329924+00 2023-09-19 08:11:02.353121+00 completed \N 743df7c6-d0fc-4bf4-b1f9-86d612c028cd 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +360a8cff-abaa-4111-874f-a0ea2268020d data 2023-09-19 08:11:01.404933+00 2023-09-19 08:11:05.771542+00 failed \N 997e9d17-3839-4640-8803-bc094f8888f5 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +22488c5c-151e-4907-8e97-b2848d3ff73f data 2023-09-19 08:11:01.372242+00 2023-09-19 08:11:05.909119+00 failed \N 2df54ace-74ed-4a22-80e8-7048495c69ba 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +99b80f3b-0138-4ee7-aec6-4e0c70fdd5ab templates 2023-09-19 08:11:01.424138+00 2023-09-19 08:11:05.94346+00 errored \N 325c762b-4e8e-4fa7-a6d5-f946bc1ebf2f 139 f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {} \N \N \N +\. + + +-- +-- Data for Name: extras_note; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_note (id, created, last_updated, assigned_object_id, user_name, slug, note, assigned_object_type_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_objectchange; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_objectchange (id, "time", user_name, request_id, action, changed_object_id, related_object_id, object_repr, object_data, changed_object_type_id, related_object_type_id, user_id, object_data_v2, change_context, change_context_detail) FROM stdin; +3ab539ea-2490-4202-aee0-eb5893707747 2023-09-19 08:11:03.25917+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac create e4f28dc4-8b3f-4f28-9dff-6fcb20409a47 \N [data] junos {"data": {"snmp": null, "community": [{"name": "networktocode", "role": "read-only"}], "route-maps": {"send-direct": {"seq": 1, "statements": ["from protocol direct", "then accept"]}}}, "name": "junos", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": ["8758fe0f-e52e-43f6-ae17-5b9ebe650914"], "description": "Group Definitions for JUNOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.125Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "e4f28dc4-8b3f-4f28-9dff-6fcb20409a47", "url": "/api/extras/config-contexts/e4f28dc4-8b3f-4f28-9dff-6fcb20409a47/", "data": {"snmp": null, "community": [{"name": "networktocode", "role": "read-only"}], "route-maps": {"send-direct": {"seq": 1, "statements": ["from protocol direct", "then accept"]}}}, "name": "junos", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] junos", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/e4f28dc4-8b3f-4f28-9dff-6fcb20409a47/notes/", "platforms": [{"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}], "description": "Group Definitions for JUNOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.125700Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +acd7093c-b655-44a5-bc45-b19228c6eeb9 2023-09-19 08:11:03.496065+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 create 704f2cef-3c40-4901-8352-09c8a762f86c \N [data] nxos {"data": {"snmp": {"community": [{"name": "networktocode", "role": "network-operator"}, {"name": "secure", "role": "network-admin"}]}, "copp-profile": "strict", "password-strength-check": false}, "name": "nxos", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": ["6868b094-e65b-4476-ba1c-2a047ffd5ca0"], "description": "Group Definitions for NXOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.380Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "704f2cef-3c40-4901-8352-09c8a762f86c", "url": "/api/extras/config-contexts/704f2cef-3c40-4901-8352-09c8a762f86c/", "data": {"snmp": {"community": [{"name": "networktocode", "role": "network-operator"}, {"name": "secure", "role": "network-admin"}]}, "copp-profile": "strict", "password-strength-check": false}, "name": "nxos", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] nxos", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/704f2cef-3c40-4901-8352-09c8a762f86c/notes/", "platforms": [{"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}], "description": "Group Definitions for NXOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.380223Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +ca7de985-8247-4298-89bf-8dbaeb450b76 2023-09-19 08:11:03.682958+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac create 100c8434-1e6b-4670-934f-ab4b4c9899cb \N [data] eos {"data": {"snmp": {"community": [{"name": "networktocode", "role": "ro"}, {"name": "secure", "role": "rw"}]}}, "name": "eos", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": ["92ba0e90-cfdd-46f2-8607-1365a0bbd9bb"], "description": "Group Definitions for EOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.635Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "100c8434-1e6b-4670-934f-ab4b4c9899cb", "url": "/api/extras/config-contexts/100c8434-1e6b-4670-934f-ab4b4c9899cb/", "data": {"snmp": {"community": [{"name": "networktocode", "role": "ro"}, {"name": "secure", "role": "rw"}]}}, "name": "eos", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] eos", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/100c8434-1e6b-4670-934f-ab4b4c9899cb/notes/", "platforms": [{"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}], "description": "Group Definitions for EOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.635923Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +fcdf91ea-f646-4f17-b7a2-69a396a1e7ca 2023-09-19 08:11:03.898367+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac create e4893016-d724-4a30-b167-26b312b1b3d5 \N [data] spine {"data": {"acl": {"definitions": {"named": {"PERMIT_ROUTES": ["10 permit ip any any"]}}}, "route-maps": {"PERMIT_CONN_ROUTES": {"seq": 10, "type": "permit", "statements": ["match ip address PERMIT_ROUTES"]}}}, "name": "spine", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": [], "description": "Group Definitions for device type SPINE", "device_types": [], "last_updated": "2023-09-19T08:11:03.852Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "e4893016-d724-4a30-b167-26b312b1b3d5", "url": "/api/extras/config-contexts/e4893016-d724-4a30-b167-26b312b1b3d5/", "data": {"acl": {"definitions": {"named": {"PERMIT_ROUTES": ["10 permit ip any any"]}}}, "route-maps": {"PERMIT_CONN_ROUTES": {"seq": 10, "type": "permit", "statements": ["match ip address PERMIT_ROUTES"]}}}, "name": "spine", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] spine", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/e4893016-d724-4a30-b167-26b312b1b3d5/notes/", "platforms": [], "description": "Group Definitions for device type SPINE", "device_types": [], "last_updated": "2023-09-19T08:11:03.852013Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +5bc29efe-cda8-47e3-ad3e-1c5952769b63 2023-09-19 08:11:04.069383+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N nyc-leaf-01.infra.ntc.com {"face": "front", "name": "nyc-leaf-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 47, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.011Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65254, "rid": "10.0.20.6", "neighbors": [{"ip": "10.11.11.13", "remote-asn": 65253}, {"ip": "10.11.11.21", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "b99c3111-0b6d-4a36-8207-45d2d00e7e37", "url": "/api/dcim/devices/b99c3111-0b6d-4a36-8207-45d2d00e7e37/", "face": {"label": "Front", "value": "front"}, "name": "nyc-leaf-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-leaf-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 47, "asset_tag": null, "notes_url": "/api/dcim/devices/b99c3111-0b6d-4a36-8207-45d2d00e7e37/notes/", "primary_ip": null, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.011084Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65254, "rid": "10.0.20.6", "neighbors": [{"ip": "10.11.11.13", "remote-asn": 65253}, {"ip": "10.11.11.21", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +17d6ec8c-482d-4afa-a618-64d03a574567 2023-09-19 08:11:03.817571+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 create ab66128b-aa43-4e5c-91fc-c64d0fc2ee73 \N [data] data-models {"data": {"cdp": true, "ntp": [{"ip": "10.1.1.1", "prefer": false}, {"ip": "10.2.2.2", "prefer": true}], "lldp": true, "snmp": {"host": [{"ip": "10.1.1.1", "version": "2c", "community": "networktocode"}], "contact": "John Smith", "location": "Network to Code - NYC | NY", "community": [{"name": "ntc-public", "role": "RO"}, {"name": "ntc-private", "role": "RW"}, {"name": "networktocode", "role": "RO"}, {"name": "secure", "role": "RW"}]}, "aaa-new-model": false}, "name": "data-models", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": [], "description": "Global Definitions.", "device_types": [], "last_updated": "2023-09-19T08:11:03.771Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "ab66128b-aa43-4e5c-91fc-c64d0fc2ee73", "url": "/api/extras/config-contexts/ab66128b-aa43-4e5c-91fc-c64d0fc2ee73/", "data": {"cdp": true, "ntp": [{"ip": "10.1.1.1", "prefer": false}, {"ip": "10.2.2.2", "prefer": true}], "lldp": true, "snmp": {"host": [{"ip": "10.1.1.1", "version": "2c", "community": "networktocode"}], "contact": "John Smith", "location": "Network to Code - NYC | NY", "community": [{"name": "ntc-public", "role": "RO"}, {"name": "ntc-private", "role": "RW"}, {"name": "networktocode", "role": "RO"}, {"name": "secure", "role": "RW"}]}, "aaa-new-model": false}, "name": "data-models", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] data-models", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/ab66128b-aa43-4e5c-91fc-c64d0fc2ee73/notes/", "platforms": [], "description": "Global Definitions.", "device_types": [], "last_updated": "2023-09-19T08:11:03.771055Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +545bf866-b547-4841-80ce-58f2f71f459a 2023-09-19 08:11:04.053711+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update b99c3111-0b6d-4a36-8207-45d2d00e7e37 \N nyc-leaf-01.infra.ntc.com {"face": "front", "name": "nyc-leaf-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 47, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:03.989Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65254, "rid": "10.0.20.6", "neighbors": [{"ip": "10.11.11.13", "remote-asn": 65253}, {"ip": "10.11.11.21", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "b99c3111-0b6d-4a36-8207-45d2d00e7e37", "url": "/api/dcim/devices/b99c3111-0b6d-4a36-8207-45d2d00e7e37/", "face": {"label": "Front", "value": "front"}, "name": "nyc-leaf-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-leaf-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 47, "asset_tag": null, "notes_url": "/api/dcim/devices/b99c3111-0b6d-4a36-8207-45d2d00e7e37/notes/", "primary_ip": null, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:03.989960Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65254, "rid": "10.0.20.6", "neighbors": [{"ip": "10.11.11.13", "remote-asn": 65253}, {"ip": "10.11.11.21", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +df272d70-7cc8-49d1-881c-93cf4342875a 2023-09-19 08:11:04.179469+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 720ef39b-a75e-4681-ac70-4237598974d0 \N jcy-rtr-02.infra.ntc.com {"face": "front", "name": "jcy-rtr-02.infra.ntc.com", "rack": "11a03141-2d38-4aff-8c12-ad5d5643949b", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "747f56fb-3012-43e4-923c-aed6195b585c", "position": 48, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.138Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65251, "rid": "10.0.10.2", "neighbors": [{"ip": "10.10.0.9", "remote-asn": 65251}, {"ip": "10.10.0.14", "remote-asn": 65251}, {"ip": "10.10.11.10", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "720ef39b-a75e-4681-ac70-4237598974d0", "url": "/api/dcim/devices/720ef39b-a75e-4681-ac70-4237598974d0/", "face": {"label": "Front", "value": "front"}, "name": "jcy-rtr-02.infra.ntc.com", "rack": {"id": "11a03141-2d38-4aff-8c12-ad5d5643949b", "url": "/api/dcim/racks/11a03141-2d38-4aff-8c12-ad5d5643949b/", "name": "jcy-rack-02", "display": "jcy-rack-02"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-rtr-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "747f56fb-3012-43e4-923c-aed6195b585c", "url": "/api/dcim/platforms/747f56fb-3012-43e4-923c-aed6195b585c/", "name": "Cisco IOS", "slug": "cisco_ios", "display": "Cisco IOS"}, "position": 48, "asset_tag": null, "notes_url": "/api/dcim/devices/720ef39b-a75e-4681-ac70-4237598974d0/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "url": "/api/dcim/device-types/5e6c528b-fc44-4c84-8432-e29d8dd9e544/", "slug": "csr1000v", "model": "CSR1000V", "display": "Cisco CSR1000V", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.138553Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65251, "rid": "10.0.10.2", "neighbors": [{"ip": "10.10.0.9", "remote-asn": 65251}, {"ip": "10.10.0.14", "remote-asn": 65251}, {"ip": "10.10.11.10", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +0c942268-c477-496f-b2ec-960a12fcca04 2023-09-19 08:11:04.31981+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update a420d520-ef19-46a3-90a8-6f47be57b3d6 \N wee-n9k-01.nautobot.com {"face": "front", "name": "wee-n9k-01.nautobot.com", "rack": "83872b5c-1a21-44dc-aca6-1995a9c3daa3", "site": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "position": 42, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "primary_ip4": "42664a85-b5d1-4da8-a3da-f22709bbbee3", "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.278Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "a420d520-ef19-46a3-90a8-6f47be57b3d6", "url": "/api/dcim/devices/a420d520-ef19-46a3-90a8-6f47be57b3d6/", "face": {"label": "Front", "value": "front"}, "name": "wee-n9k-01.nautobot.com", "rack": {"id": "83872b5c-1a21-44dc-aca6-1995a9c3daa3", "url": "/api/dcim/racks/83872b5c-1a21-44dc-aca6-1995a9c3daa3/", "name": "wee-101", "display": "wee-101"}, "site": {"id": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "url": "/api/dcim/sites/505853a9-1db0-4c36-826a-0d03e5ea21b0/", "name": "Weehawken", "slug": "weehawken", "display": "Weehawken"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "wee-n9k-01.nautobot.com", "comments": "", "location": null, "platform": {"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}, "position": 42, "asset_tag": null, "notes_url": "/api/dcim/devices/a420d520-ef19-46a3-90a8-6f47be57b3d6/notes/", "primary_ip": {"id": "42664a85-b5d1-4da8-a3da-f22709bbbee3", "url": "/api/ipam/ip-addresses/42664a85-b5d1-4da8-a3da-f22709bbbee3/", "family": 4, "address": "68.170.147.168/32", "display": "68.170.147.168/32"}, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "url": "/api/dcim/device-types/3da7fc03-2e5e-480e-8fcd-68f626c79f08/", "slug": "n9k-C9372tx", "model": "Nexus 9372TX", "display": "Cisco Nexus 9372TX", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": {"id": "42664a85-b5d1-4da8-a3da-f22709bbbee3", "url": "/api/ipam/ip-addresses/42664a85-b5d1-4da8-a3da-f22709bbbee3/", "family": 4, "address": "68.170.147.168/32", "display": "68.170.147.168/32"}, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.278696Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +ec778bd7-5b18-483b-937b-ceab45ba8029 2023-09-19 08:11:04.380713+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 45cca71d-85a7-42ac-b792-af8b4aef87cd \N jcy-bb-01.infra.ntc.com {"face": "front", "name": "jcy-bb-01.infra.ntc.com", "rack": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "747f56fb-3012-43e4-923c-aed6195b585c", "position": 22, "asset_tag": null, "device_role": "3e817255-baaf-4276-b892-f22e658ff06e", "device_type": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.359Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"GigabitEthernet2": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65251, "rid": "10.0.10.3", "neighbors": [{"ip": "10.10.0.5", "remote-asn": 65251}, {"ip": "10.10.0.13", "remote-asn": 65251}, {"ip": "10.10.0.18", "remote-asn": 65252}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "45cca71d-85a7-42ac-b792-af8b4aef87cd", "url": "/api/dcim/devices/45cca71d-85a7-42ac-b792-af8b4aef87cd/", "face": {"label": "Front", "value": "front"}, "name": "jcy-bb-01.infra.ntc.com", "rack": {"id": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "url": "/api/dcim/racks/c6952bd7-9c1b-42fa-affb-918ab3205eb2/", "name": "jcy-rack-01", "display": "jcy-rack-01"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-bb-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "747f56fb-3012-43e4-923c-aed6195b585c", "url": "/api/dcim/platforms/747f56fb-3012-43e4-923c-aed6195b585c/", "name": "Cisco IOS", "slug": "cisco_ios", "display": "Cisco IOS"}, "position": 22, "asset_tag": null, "notes_url": "/api/dcim/devices/45cca71d-85a7-42ac-b792-af8b4aef87cd/notes/", "primary_ip": null, "device_role": {"id": "3e817255-baaf-4276-b892-f22e658ff06e", "url": "/api/dcim/device-roles/3e817255-baaf-4276-b892-f22e658ff06e/", "name": "Backbone", "slug": "backbone", "display": "Backbone"}, "device_type": {"id": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "url": "/api/dcim/device-types/5e6c528b-fc44-4c84-8432-e29d8dd9e544/", "slug": "csr1000v", "model": "CSR1000V", "display": "Cisco CSR1000V", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.359769Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"GigabitEthernet2": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65251, "rid": "10.0.10.3", "neighbors": [{"ip": "10.10.0.5", "remote-asn": 65251}, {"ip": "10.10.0.13", "remote-asn": 65251}, {"ip": "10.10.0.18", "remote-asn": 65252}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +5585280a-daf5-44bf-81ee-16f4a3a31417 2023-09-19 08:11:04.171084+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update 720ef39b-a75e-4681-ac70-4237598974d0 \N jcy-rtr-02.infra.ntc.com {"face": "front", "name": "jcy-rtr-02.infra.ntc.com", "rack": "11a03141-2d38-4aff-8c12-ad5d5643949b", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "747f56fb-3012-43e4-923c-aed6195b585c", "position": 48, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.150Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65251, "rid": "10.0.10.2", "neighbors": [{"ip": "10.10.0.9", "remote-asn": 65251}, {"ip": "10.10.0.14", "remote-asn": 65251}, {"ip": "10.10.11.10", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "720ef39b-a75e-4681-ac70-4237598974d0", "url": "/api/dcim/devices/720ef39b-a75e-4681-ac70-4237598974d0/", "face": {"label": "Front", "value": "front"}, "name": "jcy-rtr-02.infra.ntc.com", "rack": {"id": "11a03141-2d38-4aff-8c12-ad5d5643949b", "url": "/api/dcim/racks/11a03141-2d38-4aff-8c12-ad5d5643949b/", "name": "jcy-rack-02", "display": "jcy-rack-02"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-rtr-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "747f56fb-3012-43e4-923c-aed6195b585c", "url": "/api/dcim/platforms/747f56fb-3012-43e4-923c-aed6195b585c/", "name": "Cisco IOS", "slug": "cisco_ios", "display": "Cisco IOS"}, "position": 48, "asset_tag": null, "notes_url": "/api/dcim/devices/720ef39b-a75e-4681-ac70-4237598974d0/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "url": "/api/dcim/device-types/5e6c528b-fc44-4c84-8432-e29d8dd9e544/", "slug": "csr1000v", "model": "CSR1000V", "display": "Cisco CSR1000V", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.150242Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65251, "rid": "10.0.10.2", "neighbors": [{"ip": "10.10.0.9", "remote-asn": 65251}, {"ip": "10.10.0.14", "remote-asn": 65251}, {"ip": "10.10.11.10", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +089ec436-c531-4185-bbae-c7036085f6fe 2023-09-19 08:11:04.295315+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update a420d520-ef19-46a3-90a8-6f47be57b3d6 \N wee-n9k-01.nautobot.com {"face": "front", "name": "wee-n9k-01.nautobot.com", "rack": "83872b5c-1a21-44dc-aca6-1995a9c3daa3", "site": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "position": 42, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "primary_ip4": "42664a85-b5d1-4da8-a3da-f22709bbbee3", "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.231Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "a420d520-ef19-46a3-90a8-6f47be57b3d6", "url": "/api/dcim/devices/a420d520-ef19-46a3-90a8-6f47be57b3d6/", "face": {"label": "Front", "value": "front"}, "name": "wee-n9k-01.nautobot.com", "rack": {"id": "83872b5c-1a21-44dc-aca6-1995a9c3daa3", "url": "/api/dcim/racks/83872b5c-1a21-44dc-aca6-1995a9c3daa3/", "name": "wee-101", "display": "wee-101"}, "site": {"id": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "url": "/api/dcim/sites/505853a9-1db0-4c36-826a-0d03e5ea21b0/", "name": "Weehawken", "slug": "weehawken", "display": "Weehawken"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "wee-n9k-01.nautobot.com", "comments": "", "location": null, "platform": {"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}, "position": 42, "asset_tag": null, "notes_url": "/api/dcim/devices/a420d520-ef19-46a3-90a8-6f47be57b3d6/notes/", "primary_ip": {"id": "42664a85-b5d1-4da8-a3da-f22709bbbee3", "url": "/api/ipam/ip-addresses/42664a85-b5d1-4da8-a3da-f22709bbbee3/", "family": 4, "address": "68.170.147.168/32", "display": "68.170.147.168/32"}, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "url": "/api/dcim/device-types/3da7fc03-2e5e-480e-8fcd-68f626c79f08/", "slug": "n9k-C9372tx", "model": "Nexus 9372TX", "display": "Cisco Nexus 9372TX", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": {"id": "42664a85-b5d1-4da8-a3da-f22709bbbee3", "url": "/api/ipam/ip-addresses/42664a85-b5d1-4da8-a3da-f22709bbbee3/", "family": 4, "address": "68.170.147.168/32", "display": "68.170.147.168/32"}, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.231628Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +8bbd6ee0-2e75-42ef-9397-184e61d10af5 2023-09-19 08:11:04.446851+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update 45cca71d-85a7-42ac-b792-af8b4aef87cd \N jcy-bb-01.infra.ntc.com {"face": "front", "name": "jcy-bb-01.infra.ntc.com", "rack": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "747f56fb-3012-43e4-923c-aed6195b585c", "position": 22, "asset_tag": null, "device_role": "3e817255-baaf-4276-b892-f22e658ff06e", "device_type": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.391Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"GigabitEthernet2": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65251, "rid": "10.0.10.3", "neighbors": [{"ip": "10.10.0.5", "remote-asn": 65251}, {"ip": "10.10.0.13", "remote-asn": 65251}, {"ip": "10.10.0.18", "remote-asn": 65252}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "45cca71d-85a7-42ac-b792-af8b4aef87cd", "url": "/api/dcim/devices/45cca71d-85a7-42ac-b792-af8b4aef87cd/", "face": {"label": "Front", "value": "front"}, "name": "jcy-bb-01.infra.ntc.com", "rack": {"id": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "url": "/api/dcim/racks/c6952bd7-9c1b-42fa-affb-918ab3205eb2/", "name": "jcy-rack-01", "display": "jcy-rack-01"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-bb-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "747f56fb-3012-43e4-923c-aed6195b585c", "url": "/api/dcim/platforms/747f56fb-3012-43e4-923c-aed6195b585c/", "name": "Cisco IOS", "slug": "cisco_ios", "display": "Cisco IOS"}, "position": 22, "asset_tag": null, "notes_url": "/api/dcim/devices/45cca71d-85a7-42ac-b792-af8b4aef87cd/notes/", "primary_ip": null, "device_role": {"id": "3e817255-baaf-4276-b892-f22e658ff06e", "url": "/api/dcim/device-roles/3e817255-baaf-4276-b892-f22e658ff06e/", "name": "Backbone", "slug": "backbone", "display": "Backbone"}, "device_type": {"id": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "url": "/api/dcim/device-types/5e6c528b-fc44-4c84-8432-e29d8dd9e544/", "slug": "csr1000v", "model": "CSR1000V", "display": "Cisco CSR1000V", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.391594Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"GigabitEthernet2": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65251, "rid": "10.0.10.3", "neighbors": [{"ip": "10.10.0.5", "remote-asn": 65251}, {"ip": "10.10.0.13", "remote-asn": 65251}, {"ip": "10.10.0.18", "remote-asn": 65252}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +07df29b7-9f3a-4c68-a4c6-5a719b2ab61d 2023-09-19 08:11:04.57075+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N nyc-leaf-02.infra.ntc.com {"face": "front", "name": "nyc-leaf-02.infra.ntc.com", "rack": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 48, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.533Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65255, "rid": "10.0.20.7", "neighbors": [{"ip": "10.11.11.17", "remote-asn": 65253}, {"ip": "10.11.11.25", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1", "url": "/api/dcim/devices/6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1/", "face": {"label": "Front", "value": "front"}, "name": "nyc-leaf-02.infra.ntc.com", "rack": {"id": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "url": "/api/dcim/racks/2e016756-1b1c-4f73-80ac-0f4f845815a7/", "name": "nyc-rack-02", "display": "nyc-rack-02"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-leaf-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 48, "asset_tag": null, "notes_url": "/api/dcim/devices/6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1/notes/", "primary_ip": null, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.533267Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65255, "rid": "10.0.20.7", "neighbors": [{"ip": "10.11.11.17", "remote-asn": 65253}, {"ip": "10.11.11.25", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +5cd21b2d-fe39-43ae-ab92-3406bf7c4ecd 2023-09-19 08:11:04.703033+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update 919660c6-0654-4904-9cf5-61a03cc069c3 \N nyc-rtr-01.infra.ntc.com {"face": "front", "name": "nyc-rtr-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "position": 46, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "e202cd25-c9a0-4680-9692-b06523061f75", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.637Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.22", "remote-asn": 65252}, {"ip": "10.10.0.26", "remote-asn": 65252}, {"ip": "10.11.11.6", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "919660c6-0654-4904-9cf5-61a03cc069c3", "url": "/api/dcim/devices/919660c6-0654-4904-9cf5-61a03cc069c3/", "face": {"label": "Front", "value": "front"}, "name": "nyc-rtr-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-rtr-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}, "position": 46, "asset_tag": null, "notes_url": "/api/dcim/devices/919660c6-0654-4904-9cf5-61a03cc069c3/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "e202cd25-c9a0-4680-9692-b06523061f75", "url": "/api/dcim/device-types/e202cd25-c9a0-4680-9692-b06523061f75/", "slug": "vmx", "model": "vMX", "display": "Juniper vMX", "manufacturer": {"id": "aa792efd-5108-432a-98ff-c8e0d0b27067", "url": "/api/dcim/manufacturers/aa792efd-5108-432a-98ff-c8e0d0b27067/", "name": "Juniper", "slug": "juniper", "display": "Juniper"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.637156Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.22", "remote-asn": 65252}, {"ip": "10.10.0.26", "remote-asn": 65252}, {"ip": "10.11.11.6", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +cbbb2c38-a009-457c-b8a7-2ee88071ca04 2023-09-19 08:11:04.437668+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 6442be3b-16d7-4788-ad3f-fb88282ea42d \N jcy-spine-01.infra.ntc.com {"face": "front", "name": "jcy-spine-01.infra.ntc.com", "rack": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "position": 17, "asset_tag": null, "device_role": "88d95830-16be-46e7-9107-03c74d68d184", "device_type": "fd17743d-d509-44c1-b975-cea0bb46f540", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.418Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "6442be3b-16d7-4788-ad3f-fb88282ea42d", "url": "/api/dcim/devices/6442be3b-16d7-4788-ad3f-fb88282ea42d/", "face": {"label": "Front", "value": "front"}, "name": "jcy-spine-01.infra.ntc.com", "rack": {"id": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "url": "/api/dcim/racks/c6952bd7-9c1b-42fa-affb-918ab3205eb2/", "name": "jcy-rack-01", "display": "jcy-rack-01"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-spine-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}, "position": 17, "asset_tag": null, "notes_url": "/api/dcim/devices/6442be3b-16d7-4788-ad3f-fb88282ea42d/notes/", "primary_ip": null, "device_role": {"id": "88d95830-16be-46e7-9107-03c74d68d184", "url": "/api/dcim/device-roles/88d95830-16be-46e7-9107-03c74d68d184/", "name": "spine", "slug": "spine", "display": "spine"}, "device_type": {"id": "fd17743d-d509-44c1-b975-cea0bb46f540", "url": "/api/dcim/device-types/fd17743d-d509-44c1-b975-cea0bb46f540/", "slug": "cisco-nx-osv-chassis", "model": "Nexus 9Kv", "display": "Cisco Nexus 9Kv", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.418196Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +a88e47a1-3465-4329-af11-c6fd58828a00 2023-09-19 08:11:04.538437+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 \N nyc-leaf-02.infra.ntc.com {"face": "front", "name": "nyc-leaf-02.infra.ntc.com", "rack": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 48, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.499Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65255, "rid": "10.0.20.7", "neighbors": [{"ip": "10.11.11.17", "remote-asn": 65253}, {"ip": "10.11.11.25", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1", "url": "/api/dcim/devices/6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1/", "face": {"label": "Front", "value": "front"}, "name": "nyc-leaf-02.infra.ntc.com", "rack": {"id": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "url": "/api/dcim/racks/2e016756-1b1c-4f73-80ac-0f4f845815a7/", "name": "nyc-rack-02", "display": "nyc-rack-02"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-leaf-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 48, "asset_tag": null, "notes_url": "/api/dcim/devices/6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1/notes/", "primary_ip": null, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.499173Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65255, "rid": "10.0.20.7", "neighbors": [{"ip": "10.11.11.17", "remote-asn": 65253}, {"ip": "10.11.11.25", "remote-asn": 65253}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +351cdd23-b74a-42d5-9728-301da0711ed3 2023-09-19 08:11:04.640989+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 919660c6-0654-4904-9cf5-61a03cc069c3 \N nyc-rtr-01.infra.ntc.com {"face": "front", "name": "nyc-rtr-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "position": 46, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "e202cd25-c9a0-4680-9692-b06523061f75", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.603Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.22", "remote-asn": 65252}, {"ip": "10.10.0.26", "remote-asn": 65252}, {"ip": "10.11.11.6", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "919660c6-0654-4904-9cf5-61a03cc069c3", "url": "/api/dcim/devices/919660c6-0654-4904-9cf5-61a03cc069c3/", "face": {"label": "Front", "value": "front"}, "name": "nyc-rtr-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-rtr-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}, "position": 46, "asset_tag": null, "notes_url": "/api/dcim/devices/919660c6-0654-4904-9cf5-61a03cc069c3/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "e202cd25-c9a0-4680-9692-b06523061f75", "url": "/api/dcim/device-types/e202cd25-c9a0-4680-9692-b06523061f75/", "slug": "vmx", "model": "vMX", "display": "Juniper vMX", "manufacturer": {"id": "aa792efd-5108-432a-98ff-c8e0d0b27067", "url": "/api/dcim/manufacturers/aa792efd-5108-432a-98ff-c8e0d0b27067/", "name": "Juniper", "slug": "juniper", "display": "Juniper"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.603397Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.22", "remote-asn": 65252}, {"ip": "10.10.0.26", "remote-asn": 65252}, {"ip": "10.11.11.6", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +573f6b37-5aee-4730-81f7-f4c4ea2cda65 2023-09-19 08:11:04.812713+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 4620c38c-b222-443c-9e31-98ef97b2e756 \N wee-n9k-02.nautobot.com {"face": "front", "name": "wee-n9k-02.nautobot.com", "rack": "ba225b65-68b4-4724-bcad-cc5715e22666", "site": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "position": 42, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "primary_ip4": "82dedfba-973b-440e-bdd5-2b0d83166dce", "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.771Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "4620c38c-b222-443c-9e31-98ef97b2e756", "url": "/api/dcim/devices/4620c38c-b222-443c-9e31-98ef97b2e756/", "face": {"label": "Front", "value": "front"}, "name": "wee-n9k-02.nautobot.com", "rack": {"id": "ba225b65-68b4-4724-bcad-cc5715e22666", "url": "/api/dcim/racks/ba225b65-68b4-4724-bcad-cc5715e22666/", "name": "wee-102", "display": "wee-102"}, "site": {"id": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "url": "/api/dcim/sites/505853a9-1db0-4c36-826a-0d03e5ea21b0/", "name": "Weehawken", "slug": "weehawken", "display": "Weehawken"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "wee-n9k-02.nautobot.com", "comments": "", "location": null, "platform": {"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}, "position": 42, "asset_tag": null, "notes_url": "/api/dcim/devices/4620c38c-b222-443c-9e31-98ef97b2e756/notes/", "primary_ip": {"id": "82dedfba-973b-440e-bdd5-2b0d83166dce", "url": "/api/ipam/ip-addresses/82dedfba-973b-440e-bdd5-2b0d83166dce/", "family": 4, "address": "68.170.147.169/32", "display": "68.170.147.169/32"}, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "url": "/api/dcim/device-types/3da7fc03-2e5e-480e-8fcd-68f626c79f08/", "slug": "n9k-C9372tx", "model": "Nexus 9372TX", "display": "Cisco Nexus 9372TX", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": {"id": "82dedfba-973b-440e-bdd5-2b0d83166dce", "url": "/api/ipam/ip-addresses/82dedfba-973b-440e-bdd5-2b0d83166dce/", "family": 4, "address": "68.170.147.169/32", "display": "68.170.147.169/32"}, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.771991Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +2e774bde-12c6-418c-86f1-7b6c39f11e71 2023-09-19 08:11:04.936859+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update cdece2fc-4010-45d0-9949-3de52bb707c5 \N wee-eos7k-01.nautobot.com {"face": "front", "name": "wee-eos7k-01.nautobot.com", "rack": "1ef378ee-b3c0-4ee6-acca-21ed786a8613", "site": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 42, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "bd0220a8-c7d5-4216-b069-b3d866f11bf0", "primary_ip4": "3e0e6ef6-fa3f-47f2-99c8-0170fc009950", "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.896Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "cdece2fc-4010-45d0-9949-3de52bb707c5", "url": "/api/dcim/devices/cdece2fc-4010-45d0-9949-3de52bb707c5/", "face": {"label": "Front", "value": "front"}, "name": "wee-eos7k-01.nautobot.com", "rack": {"id": "1ef378ee-b3c0-4ee6-acca-21ed786a8613", "url": "/api/dcim/racks/1ef378ee-b3c0-4ee6-acca-21ed786a8613/", "name": "wee-103", "display": "wee-103"}, "site": {"id": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "url": "/api/dcim/sites/505853a9-1db0-4c36-826a-0d03e5ea21b0/", "name": "Weehawken", "slug": "weehawken", "display": "Weehawken"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "wee-eos7k-01.nautobot.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 42, "asset_tag": null, "notes_url": "/api/dcim/devices/cdece2fc-4010-45d0-9949-3de52bb707c5/notes/", "primary_ip": {"id": "3e0e6ef6-fa3f-47f2-99c8-0170fc009950", "url": "/api/ipam/ip-addresses/3e0e6ef6-fa3f-47f2-99c8-0170fc009950/", "family": 4, "address": "68.170.147.176/32", "display": "68.170.147.176/32"}, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "bd0220a8-c7d5-4216-b069-b3d866f11bf0", "url": "/api/dcim/device-types/bd0220a8-c7d5-4216-b069-b3d866f11bf0/", "slug": "dcs-7048-t", "model": "DCS-7048-T", "display": "Arista DCS-7048-T", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": {"id": "3e0e6ef6-fa3f-47f2-99c8-0170fc009950", "url": "/api/ipam/ip-addresses/3e0e6ef6-fa3f-47f2-99c8-0170fc009950/", "family": 4, "address": "68.170.147.176/32", "display": "68.170.147.176/32"}, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.896401Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +13fc83c2-23c0-4037-9f8c-dfd9f00089be 2023-09-19 08:11:04.848153+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update 4620c38c-b222-443c-9e31-98ef97b2e756 \N wee-n9k-02.nautobot.com {"face": "front", "name": "wee-n9k-02.nautobot.com", "rack": "ba225b65-68b4-4724-bcad-cc5715e22666", "site": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "position": 42, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "primary_ip4": "82dedfba-973b-440e-bdd5-2b0d83166dce", "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.807Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "4620c38c-b222-443c-9e31-98ef97b2e756", "url": "/api/dcim/devices/4620c38c-b222-443c-9e31-98ef97b2e756/", "face": {"label": "Front", "value": "front"}, "name": "wee-n9k-02.nautobot.com", "rack": {"id": "ba225b65-68b4-4724-bcad-cc5715e22666", "url": "/api/dcim/racks/ba225b65-68b4-4724-bcad-cc5715e22666/", "name": "wee-102", "display": "wee-102"}, "site": {"id": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "url": "/api/dcim/sites/505853a9-1db0-4c36-826a-0d03e5ea21b0/", "name": "Weehawken", "slug": "weehawken", "display": "Weehawken"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "wee-n9k-02.nautobot.com", "comments": "", "location": null, "platform": {"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}, "position": 42, "asset_tag": null, "notes_url": "/api/dcim/devices/4620c38c-b222-443c-9e31-98ef97b2e756/notes/", "primary_ip": {"id": "82dedfba-973b-440e-bdd5-2b0d83166dce", "url": "/api/ipam/ip-addresses/82dedfba-973b-440e-bdd5-2b0d83166dce/", "family": 4, "address": "68.170.147.169/32", "display": "68.170.147.169/32"}, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "3da7fc03-2e5e-480e-8fcd-68f626c79f08", "url": "/api/dcim/device-types/3da7fc03-2e5e-480e-8fcd-68f626c79f08/", "slug": "n9k-C9372tx", "model": "Nexus 9372TX", "display": "Cisco Nexus 9372TX", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": {"id": "82dedfba-973b-440e-bdd5-2b0d83166dce", "url": "/api/ipam/ip-addresses/82dedfba-973b-440e-bdd5-2b0d83166dce/", "family": 4, "address": "68.170.147.169/32", "display": "68.170.147.169/32"}, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.807439Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": {"named": {"DENY_ALL": ["10 deny ip any any"]}}}, "bgp": {"asn": 65250, "rid": "10.0.10.4", "neighbors": [{"ip": "10.10.10.6", "remote-asn": 65250}, {"ip": "10.10.10.10", "remote-asn": 65250}, {"ip": "10.10.10.14", "remote-asn": 65250}, {"ip": "10.10.10.18", "remote-asn": 65250}, {"ip": "10.10.11.5", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +2ffb3955-d161-46b1-959e-e53529beb7e1 2023-09-19 08:11:04.972562+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update cdece2fc-4010-45d0-9949-3de52bb707c5 \N wee-eos7k-01.nautobot.com {"face": "front", "name": "wee-eos7k-01.nautobot.com", "rack": "1ef378ee-b3c0-4ee6-acca-21ed786a8613", "site": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 42, "asset_tag": null, "device_role": "90fc50d2-3669-41e2-a47a-4c776a053018", "device_type": "bd0220a8-c7d5-4216-b069-b3d866f11bf0", "primary_ip4": "3e0e6ef6-fa3f-47f2-99c8-0170fc009950", "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.931Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "cdece2fc-4010-45d0-9949-3de52bb707c5", "url": "/api/dcim/devices/cdece2fc-4010-45d0-9949-3de52bb707c5/", "face": {"label": "Front", "value": "front"}, "name": "wee-eos7k-01.nautobot.com", "rack": {"id": "1ef378ee-b3c0-4ee6-acca-21ed786a8613", "url": "/api/dcim/racks/1ef378ee-b3c0-4ee6-acca-21ed786a8613/", "name": "wee-103", "display": "wee-103"}, "site": {"id": "505853a9-1db0-4c36-826a-0d03e5ea21b0", "url": "/api/dcim/sites/505853a9-1db0-4c36-826a-0d03e5ea21b0/", "name": "Weehawken", "slug": "weehawken", "display": "Weehawken"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "wee-eos7k-01.nautobot.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 42, "asset_tag": null, "notes_url": "/api/dcim/devices/cdece2fc-4010-45d0-9949-3de52bb707c5/notes/", "primary_ip": {"id": "3e0e6ef6-fa3f-47f2-99c8-0170fc009950", "url": "/api/ipam/ip-addresses/3e0e6ef6-fa3f-47f2-99c8-0170fc009950/", "family": 4, "address": "68.170.147.176/32", "display": "68.170.147.176/32"}, "device_role": {"id": "90fc50d2-3669-41e2-a47a-4c776a053018", "url": "/api/dcim/device-roles/90fc50d2-3669-41e2-a47a-4c776a053018/", "name": "leaf", "slug": "leaf", "display": "leaf"}, "device_type": {"id": "bd0220a8-c7d5-4216-b069-b3d866f11bf0", "url": "/api/dcim/device-types/bd0220a8-c7d5-4216-b069-b3d866f11bf0/", "slug": "dcs-7048-t", "model": "DCS-7048-T", "display": "Arista DCS-7048-T", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": {"id": "3e0e6ef6-fa3f-47f2-99c8-0170fc009950", "url": "/api/ipam/ip-addresses/3e0e6ef6-fa3f-47f2-99c8-0170fc009950/", "family": 4, "address": "68.170.147.176/32", "display": "68.170.147.176/32"}, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:04.931577Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"acl": {"interfaces": {"PLACE_HOLDER": {"acl": "BLOCK_TRANSIT_LINKS", "direction": "in"}}, "definitions": []}, "bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +f929b6ca-3873-4099-807a-2450c66cfd54 2023-09-19 08:11:05.090893+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update c8fef37f-699a-4f5a-b228-495cb5702a43 \N nyc-rtr-02.infra.ntc.com {"face": "front", "name": "nyc-rtr-02.infra.ntc.com", "rack": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "position": 47, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "e202cd25-c9a0-4680-9692-b06523061f75", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.051Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.30", "remote-asn": 65252}, {"ip": "10.10.0.25", "remote-asn": 65252}, {"ip": "10.11.11.10", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "c8fef37f-699a-4f5a-b228-495cb5702a43", "url": "/api/dcim/devices/c8fef37f-699a-4f5a-b228-495cb5702a43/", "face": {"label": "Front", "value": "front"}, "name": "nyc-rtr-02.infra.ntc.com", "rack": {"id": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "url": "/api/dcim/racks/2e016756-1b1c-4f73-80ac-0f4f845815a7/", "name": "nyc-rack-02", "display": "nyc-rack-02"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-rtr-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}, "position": 47, "asset_tag": null, "notes_url": "/api/dcim/devices/c8fef37f-699a-4f5a-b228-495cb5702a43/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "e202cd25-c9a0-4680-9692-b06523061f75", "url": "/api/dcim/device-types/e202cd25-c9a0-4680-9692-b06523061f75/", "slug": "vmx", "model": "vMX", "display": "Juniper vMX", "manufacturer": {"id": "aa792efd-5108-432a-98ff-c8e0d0b27067", "url": "/api/dcim/manufacturers/aa792efd-5108-432a-98ff-c8e0d0b27067/", "name": "Juniper", "slug": "juniper", "display": "Juniper"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.051926Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.30", "remote-asn": 65252}, {"ip": "10.10.0.25", "remote-asn": 65252}, {"ip": "10.11.11.10", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +66c39186-2fb7-486d-a2d1-8d60e4492edc 2023-09-19 08:11:05.189361+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update 4f1092db-761d-4ae6-9d20-275e186b67ea \N nyc-bb-01.infra.ntc.com {"face": "front", "name": "nyc-bb-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "position": 48, "asset_tag": null, "device_role": "3e817255-baaf-4276-b892-f22e658ff06e", "device_type": "e202cd25-c9a0-4680-9692-b06523061f75", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.155Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.17", "remote-asn": 65251}, {"ip": "10.10.0.21", "remote-asn": 65252}, {"ip": "10.10.0.29", "remote-asn": 65252}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "4f1092db-761d-4ae6-9d20-275e186b67ea", "url": "/api/dcim/devices/4f1092db-761d-4ae6-9d20-275e186b67ea/", "face": {"label": "Front", "value": "front"}, "name": "nyc-bb-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-bb-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}, "position": 48, "asset_tag": null, "notes_url": "/api/dcim/devices/4f1092db-761d-4ae6-9d20-275e186b67ea/notes/", "primary_ip": null, "device_role": {"id": "3e817255-baaf-4276-b892-f22e658ff06e", "url": "/api/dcim/device-roles/3e817255-baaf-4276-b892-f22e658ff06e/", "name": "Backbone", "slug": "backbone", "display": "Backbone"}, "device_type": {"id": "e202cd25-c9a0-4680-9692-b06523061f75", "url": "/api/dcim/device-types/e202cd25-c9a0-4680-9692-b06523061f75/", "slug": "vmx", "model": "vMX", "display": "Juniper vMX", "manufacturer": {"id": "aa792efd-5108-432a-98ff-c8e0d0b27067", "url": "/api/dcim/manufacturers/aa792efd-5108-432a-98ff-c8e0d0b27067/", "name": "Juniper", "slug": "juniper", "display": "Juniper"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.155669Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.17", "remote-asn": 65251}, {"ip": "10.10.0.21", "remote-asn": 65252}, {"ip": "10.10.0.29", "remote-asn": 65252}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +c58f3381-6378-41d5-b684-b7ebb29a3571 2023-09-19 08:11:05.288818+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N nyc-spine-01.infra.ntc.com {"face": "front", "name": "nyc-spine-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 45, "asset_tag": null, "device_role": "88d95830-16be-46e7-9107-03c74d68d184", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.262Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "be8b5ac0-0df7-4eff-90f1-4c86f16c362e", "url": "/api/dcim/devices/be8b5ac0-0df7-4eff-90f1-4c86f16c362e/", "face": {"label": "Front", "value": "front"}, "name": "nyc-spine-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-spine-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 45, "asset_tag": null, "notes_url": "/api/dcim/devices/be8b5ac0-0df7-4eff-90f1-4c86f16c362e/notes/", "primary_ip": null, "device_role": {"id": "88d95830-16be-46e7-9107-03c74d68d184", "url": "/api/dcim/device-roles/88d95830-16be-46e7-9107-03c74d68d184/", "name": "spine", "slug": "spine", "display": "spine"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.262283Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +b82ee27d-8b51-43c8-856d-41de2c7d4d04 2023-09-19 08:11:05.045148+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update c8fef37f-699a-4f5a-b228-495cb5702a43 \N nyc-rtr-02.infra.ntc.com {"face": "front", "name": "nyc-rtr-02.infra.ntc.com", "rack": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "position": 47, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "e202cd25-c9a0-4680-9692-b06523061f75", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.013Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.30", "remote-asn": 65252}, {"ip": "10.10.0.25", "remote-asn": 65252}, {"ip": "10.11.11.10", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "c8fef37f-699a-4f5a-b228-495cb5702a43", "url": "/api/dcim/devices/c8fef37f-699a-4f5a-b228-495cb5702a43/", "face": {"label": "Front", "value": "front"}, "name": "nyc-rtr-02.infra.ntc.com", "rack": {"id": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "url": "/api/dcim/racks/2e016756-1b1c-4f73-80ac-0f4f845815a7/", "name": "nyc-rack-02", "display": "nyc-rack-02"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-rtr-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}, "position": 47, "asset_tag": null, "notes_url": "/api/dcim/devices/c8fef37f-699a-4f5a-b228-495cb5702a43/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "e202cd25-c9a0-4680-9692-b06523061f75", "url": "/api/dcim/device-types/e202cd25-c9a0-4680-9692-b06523061f75/", "slug": "vmx", "model": "vMX", "display": "Juniper vMX", "manufacturer": {"id": "aa792efd-5108-432a-98ff-c8e0d0b27067", "url": "/api/dcim/manufacturers/aa792efd-5108-432a-98ff-c8e0d0b27067/", "name": "Juniper", "slug": "juniper", "display": "Juniper"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.013249Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.30", "remote-asn": 65252}, {"ip": "10.10.0.25", "remote-asn": 65252}, {"ip": "10.11.11.10", "remote-asn": 65253}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +3a4779bc-ecbf-4a86-ad83-b4c2102e64b6 2023-09-19 08:11:05.150965+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 4f1092db-761d-4ae6-9d20-275e186b67ea \N nyc-bb-01.infra.ntc.com {"face": "front", "name": "nyc-bb-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "position": 48, "asset_tag": null, "device_role": "3e817255-baaf-4276-b892-f22e658ff06e", "device_type": "e202cd25-c9a0-4680-9692-b06523061f75", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.116Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.17", "remote-asn": 65251}, {"ip": "10.10.0.21", "remote-asn": 65252}, {"ip": "10.10.0.29", "remote-asn": 65252}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "4f1092db-761d-4ae6-9d20-275e186b67ea", "url": "/api/dcim/devices/4f1092db-761d-4ae6-9d20-275e186b67ea/", "face": {"label": "Front", "value": "front"}, "name": "nyc-bb-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-bb-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}, "position": 48, "asset_tag": null, "notes_url": "/api/dcim/devices/4f1092db-761d-4ae6-9d20-275e186b67ea/notes/", "primary_ip": null, "device_role": {"id": "3e817255-baaf-4276-b892-f22e658ff06e", "url": "/api/dcim/device-roles/3e817255-baaf-4276-b892-f22e658ff06e/", "name": "Backbone", "slug": "backbone", "display": "Backbone"}, "device_type": {"id": "e202cd25-c9a0-4680-9692-b06523061f75", "url": "/api/dcim/device-types/e202cd25-c9a0-4680-9692-b06523061f75/", "slug": "vmx", "model": "vMX", "display": "Juniper vMX", "manufacturer": {"id": "aa792efd-5108-432a-98ff-c8e0d0b27067", "url": "/api/dcim/manufacturers/aa792efd-5108-432a-98ff-c8e0d0b27067/", "name": "Juniper", "slug": "juniper", "display": "Juniper"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.116562Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65252, "neighbors": [{"ip": "10.10.0.17", "remote-asn": 65251}, {"ip": "10.10.0.21", "remote-asn": 65252}, {"ip": "10.10.0.29", "remote-asn": 65252}]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +4b687109-f861-4faa-9e23-ee2b735fe389 2023-09-19 08:11:05.240438+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N jcy-rtr-01.infra.ntc.com {"face": "front", "name": "jcy-rtr-01.infra.ntc.com", "rack": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "747f56fb-3012-43e4-923c-aed6195b585c", "position": 19, "asset_tag": null, "device_role": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "device_type": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.213Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65251, "rid": "10.0.10.1", "neighbors": [{"ip": "10.10.0.6", "remote-asn": 65251}, {"ip": "10.10.0.10", "remote-asn": 65251}, {"ip": "10.10.11.6", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0 0.0.0.0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "80f9eb01-db6d-4939-9f2e-ef2c222cedee", "url": "/api/dcim/devices/80f9eb01-db6d-4939-9f2e-ef2c222cedee/", "face": {"label": "Front", "value": "front"}, "name": "jcy-rtr-01.infra.ntc.com", "rack": {"id": "c6952bd7-9c1b-42fa-affb-918ab3205eb2", "url": "/api/dcim/racks/c6952bd7-9c1b-42fa-affb-918ab3205eb2/", "name": "jcy-rack-01", "display": "jcy-rack-01"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-rtr-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "747f56fb-3012-43e4-923c-aed6195b585c", "url": "/api/dcim/platforms/747f56fb-3012-43e4-923c-aed6195b585c/", "name": "Cisco IOS", "slug": "cisco_ios", "display": "Cisco IOS"}, "position": 19, "asset_tag": null, "notes_url": "/api/dcim/devices/80f9eb01-db6d-4939-9f2e-ef2c222cedee/notes/", "primary_ip": null, "device_role": {"id": "cb6d99e8-8490-435b-8beb-040bbf5dcc01", "url": "/api/dcim/device-roles/cb6d99e8-8490-435b-8beb-040bbf5dcc01/", "name": "Router", "slug": "router", "display": "Router"}, "device_type": {"id": "5e6c528b-fc44-4c84-8432-e29d8dd9e544", "url": "/api/dcim/device-types/5e6c528b-fc44-4c84-8432-e29d8dd9e544/", "slug": "csr1000v", "model": "CSR1000V", "display": "Cisco CSR1000V", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.213199Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65251, "rid": "10.0.10.1", "neighbors": [{"ip": "10.10.0.6", "remote-asn": 65251}, {"ip": "10.10.0.10", "remote-asn": 65251}, {"ip": "10.10.11.6", "remote-asn": 65250}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0 0.0.0.0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +f834e128-57af-4147-bed9-1a6a4882485d 2023-09-19 08:11:05.323145+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update be8b5ac0-0df7-4eff-90f1-4c86f16c362e \N nyc-spine-01.infra.ntc.com {"face": "front", "name": "nyc-spine-01.infra.ntc.com", "rack": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 45, "asset_tag": null, "device_role": "88d95830-16be-46e7-9107-03c74d68d184", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.294Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "be8b5ac0-0df7-4eff-90f1-4c86f16c362e", "url": "/api/dcim/devices/be8b5ac0-0df7-4eff-90f1-4c86f16c362e/", "face": {"label": "Front", "value": "front"}, "name": "nyc-spine-01.infra.ntc.com", "rack": {"id": "4e48af22-9aea-42d4-b3f8-d457274fd1d5", "url": "/api/dcim/racks/4e48af22-9aea-42d4-b3f8-d457274fd1d5/", "name": "nyc-rack-01", "display": "nyc-rack-01"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-spine-01.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 45, "asset_tag": null, "notes_url": "/api/dcim/devices/be8b5ac0-0df7-4eff-90f1-4c86f16c362e/notes/", "primary_ip": null, "device_role": {"id": "88d95830-16be-46e7-9107-03c74d68d184", "url": "/api/dcim/device-roles/88d95830-16be-46e7-9107-03c74d68d184/", "name": "spine", "slug": "spine", "display": "spine"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.294572Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65253, "rid": "10.0.20.4", "neighbors": [{"ip": "10.11.11.5", "remote-asn": 65252}, {"ip": "10.11.11.14", "remote-asn": 65254}, {"ip": "10.11.11.18", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +24386c27-6196-47d7-bdcd-97d26ae03d96 2023-09-19 08:11:05.406695+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 update 182b57af-ef9e-428d-916d-7f18e14357d1 \N nyc-spine-02.infra.ntc.com {"face": "front", "name": "nyc-spine-02.infra.ntc.com", "rack": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "site": "ceb86423-d80f-4f63-b489-220ba69449c9", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "position": 46, "asset_tag": null, "device_role": "88d95830-16be-46e7-9107-03c74d68d184", "device_type": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.386Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65253, "rid": "10.0.20.5", "neighbors": [{"ip": "10.11.11.9", "remote-asn": 65252}, {"ip": "10.11.11.22", "remote-asn": 65254}, {"ip": "10.11.11.26", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "182b57af-ef9e-428d-916d-7f18e14357d1", "url": "/api/dcim/devices/182b57af-ef9e-428d-916d-7f18e14357d1/", "face": {"label": "Front", "value": "front"}, "name": "nyc-spine-02.infra.ntc.com", "rack": {"id": "2e016756-1b1c-4f73-80ac-0f4f845815a7", "url": "/api/dcim/racks/2e016756-1b1c-4f73-80ac-0f4f845815a7/", "name": "nyc-rack-02", "display": "nyc-rack-02"}, "site": {"id": "ceb86423-d80f-4f63-b489-220ba69449c9", "url": "/api/dcim/sites/ceb86423-d80f-4f63-b489-220ba69449c9/", "name": "New York City", "slug": "nyc", "display": "New York City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "nyc-spine-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}, "position": 46, "asset_tag": null, "notes_url": "/api/dcim/devices/182b57af-ef9e-428d-916d-7f18e14357d1/notes/", "primary_ip": null, "device_role": {"id": "88d95830-16be-46e7-9107-03c74d68d184", "url": "/api/dcim/device-roles/88d95830-16be-46e7-9107-03c74d68d184/", "name": "spine", "slug": "spine", "display": "spine"}, "device_type": {"id": "ad7e3154-b469-4ba1-b111-46c9e82d5746", "url": "/api/dcim/device-types/ad7e3154-b469-4ba1-b111-46c9e82d5746/", "slug": "veos", "model": "vEOS", "display": "Arista vEOS", "manufacturer": {"id": "9e60ff6f-17bc-4041-8576-9503cd63cbf0", "url": "/api/dcim/manufacturers/9e60ff6f-17bc-4041-8576-9503cd63cbf0/", "name": "Arista", "slug": "arista", "display": "Arista"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.386509Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65253, "rid": "10.0.20.5", "neighbors": [{"ip": "10.11.11.9", "remote-asn": 65252}, {"ip": "10.11.11.22", "remote-asn": 65254}, {"ip": "10.11.11.26", "remote-asn": 65255}], "redistribute": ["connected"], "log-neighbor-changes": true}, "routes": {"static": ["ip route 0.0.0.0/0 10.0.0.2"]}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +b5fcc9a8-7c8e-46ce-a198-117678869387 2023-09-19 08:11:05.371525+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac update b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N jcy-spine-02.infra.ntc.com {"face": "front", "name": "jcy-spine-02.infra.ntc.com", "rack": "11a03141-2d38-4aff-8c12-ad5d5643949b", "site": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "tags": [], "serial": "", "status": "3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb", "tenant": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "cluster": null, "created": "2023-09-19", "comments": "", "location": null, "platform": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "position": 47, "asset_tag": null, "device_role": "88d95830-16be-46e7-9107-03c74d68d184", "device_type": "fd17743d-d509-44c1-b975-cea0bb46f540", "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.340Z", "custom_fields": {}, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65250, "rid": "10.0.10.5", "neighbors": [{"ip": "10.10.10.5", "remote-asn": 65250}, {"ip": "10.10.10.9", "remote-asn": 65250}, {"ip": "10.10.10.13", "remote-asn": 65250}, {"ip": "10.10.10.17", "remote-asn": 65250}, {"ip": "10.10.11.9", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null, "local_context_data_owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "local_context_data_owner_content_type": 139} 3 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "b79eb1e8-3a2c-4d13-b130-92eb82f6b8af", "url": "/api/dcim/devices/b79eb1e8-3a2c-4d13-b130-92eb82f6b8af/", "face": {"label": "Front", "value": "front"}, "name": "jcy-spine-02.infra.ntc.com", "rack": {"id": "11a03141-2d38-4aff-8c12-ad5d5643949b", "url": "/api/dcim/racks/11a03141-2d38-4aff-8c12-ad5d5643949b/", "name": "jcy-rack-02", "display": "jcy-rack-02"}, "site": {"id": "a84d3000-72c6-48f5-adcd-245491ddd6f3", "url": "/api/dcim/sites/a84d3000-72c6-48f5-adcd-245491ddd6f3/", "name": "Jersey City", "slug": "jcy", "display": "Jersey City"}, "tags": [], "serial": "", "status": {"label": "Active", "value": "active"}, "tenant": {"id": "422496ff-a2a1-46d7-b4df-71e43eff32cf", "url": "/api/tenancy/tenants/422496ff-a2a1-46d7-b4df-71e43eff32cf/", "name": "Network to Code", "slug": "network-to-code", "display": "Network to Code"}, "cluster": null, "created": "2023-09-19", "display": "jcy-spine-02.infra.ntc.com", "comments": "", "location": null, "platform": {"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}, "position": 47, "asset_tag": null, "notes_url": "/api/dcim/devices/b79eb1e8-3a2c-4d13-b130-92eb82f6b8af/notes/", "primary_ip": null, "device_role": {"id": "88d95830-16be-46e7-9107-03c74d68d184", "url": "/api/dcim/device-roles/88d95830-16be-46e7-9107-03c74d68d184/", "name": "spine", "slug": "spine", "display": "spine"}, "device_type": {"id": "fd17743d-d509-44c1-b975-cea0bb46f540", "url": "/api/dcim/device-types/fd17743d-d509-44c1-b975-cea0bb46f540/", "slug": "cisco-nx-osv-chassis", "model": "Nexus 9Kv", "display": "Cisco Nexus 9Kv", "manufacturer": {"id": "3dea386b-6ceb-4eb7-8ec5-065308dc44f8", "url": "/api/dcim/manufacturers/3dea386b-6ceb-4eb7-8ec5-065308dc44f8/", "name": "Cisco", "slug": "cisco", "display": "Cisco"}}, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "last_updated": "2023-09-19T08:11:05.340812Z", "custom_fields": {}, "parent_device": null, "secrets_group": null, "virtual_chassis": null, "local_context_data": {"bgp": {"asn": 65250, "rid": "10.0.10.5", "neighbors": [{"ip": "10.10.10.5", "remote-asn": 65250}, {"ip": "10.10.10.9", "remote-asn": 65250}, {"ip": "10.10.10.13", "remote-asn": 65250}, {"ip": "10.10.10.17", "remote-asn": 65250}, {"ip": "10.10.11.9", "remote-asn": 65251}], "redistribute": ["connected"], "log-neighbor-changes": true}}, "local_context_schema": null, "device_redundancy_group": null, "device_redundancy_group_priority": null} job +aa24019e-fe23-4be8-975d-0a24c25c3a0e 2023-09-19 08:11:05.506096+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac delete ab66128b-aa43-4e5c-91fc-c64d0fc2ee73 \N [data] data-models {"data": {"cdp": true, "ntp": [{"ip": "10.1.1.1", "prefer": false}, {"ip": "10.2.2.2", "prefer": true}], "lldp": true, "snmp": {"host": [{"ip": "10.1.1.1", "version": "2c", "community": "networktocode"}], "contact": "John Smith", "location": "Network to Code - NYC | NY", "community": [{"name": "ntc-public", "role": "RO"}, {"name": "ntc-private", "role": "RW"}, {"name": "networktocode", "role": "RO"}, {"name": "secure", "role": "RW"}]}, "aaa-new-model": false}, "name": "data-models", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": [], "description": "Global Definitions.", "device_types": [], "last_updated": "2023-09-19T08:11:03.771Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "ab66128b-aa43-4e5c-91fc-c64d0fc2ee73", "url": "/api/extras/config-contexts/ab66128b-aa43-4e5c-91fc-c64d0fc2ee73/", "data": {"cdp": true, "ntp": [{"ip": "10.1.1.1", "prefer": false}, {"ip": "10.2.2.2", "prefer": true}], "lldp": true, "snmp": {"host": [{"ip": "10.1.1.1", "version": "2c", "community": "networktocode"}], "contact": "John Smith", "location": "Network to Code - NYC | NY", "community": [{"name": "ntc-public", "role": "RO"}, {"name": "ntc-private", "role": "RW"}, {"name": "networktocode", "role": "RO"}, {"name": "secure", "role": "RW"}]}, "aaa-new-model": false}, "name": "data-models", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] data-models", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/ab66128b-aa43-4e5c-91fc-c64d0fc2ee73/notes/", "platforms": [], "description": "Global Definitions.", "device_types": [], "last_updated": "2023-09-19T08:11:03.771055Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +24d409b0-5229-46b6-9af2-cb9a945be61a 2023-09-19 08:11:05.615723+00 ntc 9035d065-0230-42cc-8cfd-974e87fefbac delete 704f2cef-3c40-4901-8352-09c8a762f86c \N [data] nxos {"data": {"snmp": {"community": [{"name": "networktocode", "role": "network-operator"}, {"name": "secure", "role": "network-admin"}]}, "copp-profile": "strict", "password-strength-check": false}, "name": "nxos", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": ["6868b094-e65b-4476-ba1c-2a047ffd5ca0"], "description": "Group Definitions for NXOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.380Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "704f2cef-3c40-4901-8352-09c8a762f86c", "url": "/api/extras/config-contexts/704f2cef-3c40-4901-8352-09c8a762f86c/", "data": {"snmp": {"community": [{"name": "networktocode", "role": "network-operator"}, {"name": "secure", "role": "network-admin"}]}, "copp-profile": "strict", "password-strength-check": false}, "name": "nxos", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] nxos", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/704f2cef-3c40-4901-8352-09c8a762f86c/notes/", "platforms": [{"id": "6868b094-e65b-4476-ba1c-2a047ffd5ca0", "url": "/api/dcim/platforms/6868b094-e65b-4476-ba1c-2a047ffd5ca0/", "name": "Cisco NX-OS", "slug": "cisco_nxos", "display": "Cisco NX-OS"}], "description": "Group Definitions for NXOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.380223Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +e9a1c00a-0a13-4346-a73b-9b8ea12a0f4a 2023-09-19 08:11:05.54762+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 delete 100c8434-1e6b-4670-934f-ab4b4c9899cb \N [data] eos {"data": {"snmp": {"community": [{"name": "networktocode", "role": "ro"}, {"name": "secure", "role": "rw"}]}}, "name": "eos", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": ["92ba0e90-cfdd-46f2-8607-1365a0bbd9bb"], "description": "Group Definitions for EOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.635Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "100c8434-1e6b-4670-934f-ab4b4c9899cb", "url": "/api/extras/config-contexts/100c8434-1e6b-4670-934f-ab4b4c9899cb/", "data": {"snmp": {"community": [{"name": "networktocode", "role": "ro"}, {"name": "secure", "role": "rw"}]}}, "name": "eos", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] eos", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/100c8434-1e6b-4670-934f-ab4b4c9899cb/notes/", "platforms": [{"id": "92ba0e90-cfdd-46f2-8607-1365a0bbd9bb", "url": "/api/dcim/platforms/92ba0e90-cfdd-46f2-8607-1365a0bbd9bb/", "name": "Arista EOS", "slug": "arista_eos", "display": "Arista EOS"}], "description": "Group Definitions for EOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.635923Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +88814a8f-b86d-4b84-985a-abeb4a7e95a5 2023-09-19 08:11:05.670979+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 delete e4f28dc4-8b3f-4f28-9dff-6fcb20409a47 \N [data] junos {"data": {"snmp": null, "community": [{"name": "networktocode", "role": "read-only"}], "route-maps": {"send-direct": {"seq": 1, "statements": ["from protocol direct", "then accept"]}}}, "name": "junos", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": ["8758fe0f-e52e-43f6-ae17-5b9ebe650914"], "description": "Group Definitions for JUNOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.125Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "e4f28dc4-8b3f-4f28-9dff-6fcb20409a47", "url": "/api/extras/config-contexts/e4f28dc4-8b3f-4f28-9dff-6fcb20409a47/", "data": {"snmp": null, "community": [{"name": "networktocode", "role": "read-only"}], "route-maps": {"send-direct": {"seq": 1, "statements": ["from protocol direct", "then accept"]}}}, "name": "junos", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] junos", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/e4f28dc4-8b3f-4f28-9dff-6fcb20409a47/notes/", "platforms": [{"id": "8758fe0f-e52e-43f6-ae17-5b9ebe650914", "url": "/api/dcim/platforms/8758fe0f-e52e-43f6-ae17-5b9ebe650914/", "name": "Juniper Junos", "slug": "juniper_junos", "display": "Juniper Junos"}], "description": "Group Definitions for JUNOS", "device_types": [], "last_updated": "2023-09-19T08:11:03.125700Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +2cef613b-da22-49e0-9a2c-722adb637182 2023-09-19 08:11:05.76359+00 ntc 5bbed984-8b32-4a1f-aafb-1fd154fd9001 delete e4893016-d724-4a30-b167-26b312b1b3d5 \N [data] spine {"data": {"acl": {"definitions": {"named": {"PERMIT_ROUTES": ["10 permit ip any any"]}}}, "route-maps": {"PERMIT_CONN_ROUTES": {"seq": 10, "type": "permit", "statements": ["match ip address PERMIT_ROUTES"]}}}, "name": "spine", "tags": [], "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "platforms": [], "description": "Group Definitions for device type SPINE", "device_types": [], "last_updated": "2023-09-19T08:11:03.852Z", "tenant_groups": [], "cluster_groups": [], "dynamic_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": 139, "device_redundancy_groups": []} 135 \N f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 {"id": "e4893016-d724-4a30-b167-26b312b1b3d5", "url": "/api/extras/config-contexts/e4893016-d724-4a30-b167-26b312b1b3d5/", "data": {"acl": {"definitions": {"named": {"PERMIT_ROUTES": ["10 permit ip any any"]}}}, "route-maps": {"PERMIT_CONN_ROUTES": {"seq": 10, "type": "permit", "statements": ["match ip address PERMIT_ROUTES"]}}}, "name": "spine", "tags": [], "owner": {"id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "url": "/api/extras/git-repositories/de7bcb0e-e532-41a6-a98f-39b46fad33e7/", "name": "data", "display": "data"}, "roles": [], "sites": [], "schema": null, "weight": 1000, "created": "2023-09-19", "display": "[data] spine", "regions": [], "tenants": [], "clusters": [], "is_active": true, "locations": [], "notes_url": "/api/extras/config-contexts/e4893016-d724-4a30-b167-26b312b1b3d5/notes/", "platforms": [], "description": "Group Definitions for device type SPINE", "device_types": [], "last_updated": "2023-09-19T08:11:03.852013Z", "tenant_groups": [], "cluster_groups": [], "owner_object_id": "de7bcb0e-e532-41a6-a98f-39b46fad33e7", "owner_content_type": "extras.gitrepository"} job +\. + + +-- +-- Data for Name: extras_relationship; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_relationship (id, created, last_updated, name, slug, description, type, source_label, source_hidden, source_filter, destination_label, destination_hidden, destination_filter, destination_type_id, source_type_id, advanced_ui, required_on) FROM stdin; +d86615c4-d7f0-4a24-8993-d3eecee6a630 2023-09-19 2023-09-19 08:09:26.359838+00 Software on Device device_soft one-to-many Running on Devices f \N Software Version f \N 3 86 f +d356fa5f-bc26-49fd-888e-17db90c46f33 2023-09-19 2023-09-19 08:09:26.362294+00 Software on InventoryItem inventory_item_soft one-to-many Running on Inventory Items f \N Software Version f \N 87 86 f +2be047f0-7306-40e8-9299-079c1c4b91bc 2023-09-19 2023-09-19 08:09:26.364493+00 Contract to dcim.Device contractlcm-to-device many-to-many Devices f \N Contracts f \N 3 88 f +8320f362-b9bb-496c-be33-9fa9c6899740 2023-09-19 2023-09-19 08:09:26.366484+00 Contract to dcim.InventoryItem contractlcm-to-inventoryitem one-to-many Inventory Items f \N Contract f \N 87 88 f +c36ad857-fb2e-4f07-9bf8-03430f830131 2023-09-19 2023-09-19 08:09:26.368464+00 Software to CVE soft_cve many-to-many Corresponding CVEs f \N Affected Softwares f \N 89 86 f +59f1329a-f4b3-4b9d-83e5-406c3b26a536 2023-09-19 2023-09-19 08:09:56.296562+00 Device to Vlan device-to-vlan many-to-many f \N f \N 12 3 f +1aba46f9-dcdd-402f-bb73-d8111586407d 2023-09-19 2023-09-19 08:09:56.311504+00 Rack to Vlan rack-to-vlan one-to-many f \N f \N 12 7 f +dd05215f-7293-44f7-b78f-e121700b7530 2023-09-19 2023-09-19 08:11:21.153164+00 Site Autonomous System site_asn one-to-many Sites f \N Autonomous System f \N 9 199 f +647035cc-e535-47da-a110-62bb7b1d94b5 2023-09-19 2023-09-19 08:11:21.156388+00 Prefix per Circuit prefix_circuit one-to-one f \N f \N 11 1 f +\. + + +-- +-- Data for Name: extras_relationshipassociation; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_relationshipassociation (id, source_id, destination_id, destination_type_id, relationship_id, source_type_id) FROM stdin; +237df91f-3e4d-4886-af58-0e0deaed205c a6751a1a-e274-445d-ab2f-06ead1cb6d3c 9dbbd5b1-faf2-41d9-ad1c-e3ac3ec6cb59 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +fa1a1029-8651-4c1a-9fca-1e603de1cf20 4851d57f-400b-45d5-8254-a30968ce665f 9dbbd5b1-faf2-41d9-ad1c-e3ac3ec6cb59 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +52b36269-e50f-490c-b583-e4205daf9132 a6751a1a-e274-445d-ab2f-06ead1cb6d3c 7b25179a-e097-46f7-bfa1-bbceb024d410 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +b2d6da66-2c65-4a5e-9e54-99b07ed6221c 4851d57f-400b-45d5-8254-a30968ce665f 7b25179a-e097-46f7-bfa1-bbceb024d410 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +f147c7c2-74ae-4cde-9c89-54e79ae2642a 6be296b5-5db3-407b-915b-ebcfa5d73aa3 9fee60c6-da36-4e30-be8f-3cda0de26ac2 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +87df9a61-9477-4a94-9f44-fd6c44c9f89b d2a5a9f0-76dd-4032-a792-f94320744e9c 9fee60c6-da36-4e30-be8f-3cda0de26ac2 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +ff871a8b-acb2-40bd-a74a-fbe2ebb9c2d0 6be296b5-5db3-407b-915b-ebcfa5d73aa3 21ae7475-cea5-45e9-ab1b-0849125346fe 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +5d6258ca-0f25-4e17-9e08-c64edfda1b75 d2a5a9f0-76dd-4032-a792-f94320744e9c 21ae7475-cea5-45e9-ab1b-0849125346fe 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +799582c8-c283-4407-b9a5-91bbf7ee8181 5aa04755-8fbe-4378-97ed-b23f0ac0e928 c3e9927a-d164-45ec-9387-f3a56fe1baf4 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +dab95e29-9f51-4094-8f5d-f190e96757aa f557ec08-708c-4543-b0bb-805ba238bdb5 c3e9927a-d164-45ec-9387-f3a56fe1baf4 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +be6d2762-afc3-4544-8701-8298727e840f 5aa04755-8fbe-4378-97ed-b23f0ac0e928 6841bd14-85c9-4891-a4a6-847edd84079e 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +96d615bf-6186-4886-bab1-b7d35a076c6e f557ec08-708c-4543-b0bb-805ba238bdb5 6841bd14-85c9-4891-a4a6-847edd84079e 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +7ecdc055-3edb-4e34-adf0-2a51996f1dca 17fa82e4-d0ad-4092-b3c0-1f597bc84883 d335c59d-b41c-4efd-9e21-a58dc7958d39 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +727162d6-bd1f-4285-a3c8-c8699cd51652 b8ab72ab-df4c-415d-be75-acf759283693 d335c59d-b41c-4efd-9e21-a58dc7958d39 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +48e4c7b4-2a9b-44e1-bc35-c7164b689011 17fa82e4-d0ad-4092-b3c0-1f597bc84883 c5c2e1a7-b1c1-4b1c-9536-64f82da33898 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +02cf659e-8e07-4c54-8560-6e0b4c86460f b8ab72ab-df4c-415d-be75-acf759283693 c5c2e1a7-b1c1-4b1c-9536-64f82da33898 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +668b97cf-52fd-4c33-acb2-9fc4fa2f8690 684ba856-7ace-4a36-9c56-e646e71ebb6a 47e0d3e2-168b-4313-bfcc-db0a72342cea 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +0cae3b7f-c4b5-4126-b35e-5ea3af633fc4 7260bc91-417a-4237-8865-b46f12fa71ae 47e0d3e2-168b-4313-bfcc-db0a72342cea 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +83f2e494-be07-4529-852f-089ea414ce69 684ba856-7ace-4a36-9c56-e646e71ebb6a 744007e1-98eb-4dc9-9c59-53a84dc17120 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +f6834ec3-13f6-4ac4-924c-bff6e55c2cf3 7260bc91-417a-4237-8865-b46f12fa71ae 744007e1-98eb-4dc9-9c59-53a84dc17120 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +bcfd303e-9ac8-44e6-9344-ee783961d7a6 bb5af4d5-3007-4d6a-8965-10db2ec91b76 5d9246e8-9635-41cc-b4c0-5e85a2d32947 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +70ef5842-e602-4958-bdb5-40aad9758095 477ad3e2-6bc9-4b7f-bbaa-3756bfe7803f 5d9246e8-9635-41cc-b4c0-5e85a2d32947 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +68c72c55-dbed-4dac-9ec3-e7033d09211f bb5af4d5-3007-4d6a-8965-10db2ec91b76 a207452e-4938-4866-ac47-6c526b9cf35e 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +c96b4ef8-2692-4cf5-905a-e95f1715b220 477ad3e2-6bc9-4b7f-bbaa-3756bfe7803f a207452e-4938-4866-ac47-6c526b9cf35e 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +2fb6ec1d-c185-404c-8d84-57737b6e0c98 d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 971b3854-e98f-4168-8fe9-63c34c1f1a95 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +d57e7cd8-69eb-428d-91ac-f0d2b2145e84 4aa7ed1d-24b6-429a-985c-1f15e48dd55d 971b3854-e98f-4168-8fe9-63c34c1f1a95 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +fe9862fd-a36f-45b7-97ca-73cf18c3c513 d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 7a78202a-2742-4e38-bff4-4d61c44b8396 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +4b4da863-fd3c-4d0b-a858-8cfe3aaa9b18 4aa7ed1d-24b6-429a-985c-1f15e48dd55d 7a78202a-2742-4e38-bff4-4d61c44b8396 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +3c42d687-1867-4f79-bf65-cd5b3341367b c2fe5345-d2c7-4214-8406-31b2b2b87aa2 5283cb30-fb99-44f7-8cf1-af7e85b2571c 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +d4fe554d-bf0b-46ca-b886-756044fee69b 1645f307-4c50-4d94-93cc-1870ddb3a4d5 5283cb30-fb99-44f7-8cf1-af7e85b2571c 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +67e1572d-2197-476a-b702-919968d0d41d c2fe5345-d2c7-4214-8406-31b2b2b87aa2 e52ada6a-6480-4300-8775-1fb1b8ef137f 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +94ca6b44-58d0-4a80-b7ee-7fb93dd3b1f5 1645f307-4c50-4d94-93cc-1870ddb3a4d5 e52ada6a-6480-4300-8775-1fb1b8ef137f 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +de8ea262-48a2-4e67-8565-cb80b3247646 c2bb0304-fcac-4397-9d63-e7503688aae6 8b74bf13-d26f-40a2-b7ca-284a0beec407 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +4d447bde-1ef9-4b71-b2fa-774786a4c010 cfc25d49-505e-4d41-a238-45212229fb5c 8b74bf13-d26f-40a2-b7ca-284a0beec407 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +21fa31e2-42df-44d0-9315-b376ac5eed48 c2bb0304-fcac-4397-9d63-e7503688aae6 3aa48e5a-8beb-48a1-ad56-eecc1fbd796b 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +4a99d652-726a-47b3-80fb-f3c230b20798 cfc25d49-505e-4d41-a238-45212229fb5c 3aa48e5a-8beb-48a1-ad56-eecc1fbd796b 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +92d73d98-5c31-486e-abdc-b142c802a417 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae b8ad0ecd-5967-4e37-a4b1-706eeba1b0e3 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +a7be9655-cc2f-432c-84fb-2fea06a48a1e ad31bac2-a109-4cb3-aac7-5b0168201718 b8ad0ecd-5967-4e37-a4b1-706eeba1b0e3 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +d5fb1bfd-fd64-4bbc-aae0-8766f7a70a01 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae ef4e9f7d-7d32-49c2-9bd2-47e34c93063d 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +cd9bc5c9-ca79-41cb-a928-2f96d197312d ad31bac2-a109-4cb3-aac7-5b0168201718 ef4e9f7d-7d32-49c2-9bd2-47e34c93063d 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +9e4fc123-9f6e-4396-955b-e60d91bdc458 dbf9eba6-2713-48f9-94df-7fa36fd3880a d6c0c620-bd72-41fa-84ac-ebc644dc6e0e 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +11f9340b-3ffb-46f7-ac33-0a4a16e958ab 669ff4b2-3613-4126-8c94-6ec633605908 d6c0c620-bd72-41fa-84ac-ebc644dc6e0e 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +84f5eb86-ca67-4f99-a1e2-5b14d1a19c43 dbf9eba6-2713-48f9-94df-7fa36fd3880a db579b3a-f556-4556-a261-53ba7cb29958 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +9ef905b2-c5e4-41e6-8d6f-8ca19aa90415 669ff4b2-3613-4126-8c94-6ec633605908 db579b3a-f556-4556-a261-53ba7cb29958 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +d56e6e7e-065e-4154-a0ff-15bd7202a32e bf032a0f-20ad-4ae4-a37b-a4971292c8b3 c67b3f65-faca-4c2a-b5ad-f8ba7f9a738f 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +3c7017de-dba5-498c-835f-f19c0d9b8bec 6ee94af6-bcc4-4a83-a50c-9f24f280f11e c67b3f65-faca-4c2a-b5ad-f8ba7f9a738f 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +cb8970fd-0bba-4cec-8165-c1a59fd4438a bf032a0f-20ad-4ae4-a37b-a4971292c8b3 d009b4bf-1da6-45d5-94e6-c0c0bb39883b 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +c13932e7-bdef-4e1d-a3f3-3132458c5bbb 6ee94af6-bcc4-4a83-a50c-9f24f280f11e d009b4bf-1da6-45d5-94e6-c0c0bb39883b 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +23f679f0-eca1-4bd9-bd9c-15b6e49ce3cb 06fa92a5-cddc-47aa-9a02-22b140d16be6 e06ad7fd-91c1-463e-a30f-824fee7d3e02 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +91d0a74d-c45e-4bab-a838-3d4b410674bc 71119628-1f47-412c-93c6-6e5d54d14a89 e06ad7fd-91c1-463e-a30f-824fee7d3e02 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +037dc936-97bd-4fba-8f86-4bad7f6159cf 06fa92a5-cddc-47aa-9a02-22b140d16be6 0c2e40b7-8938-47c3-93b3-501214d10986 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +0e3d5aa5-34e1-4dea-b3aa-eef6c392e5ad 71119628-1f47-412c-93c6-6e5d54d14a89 0c2e40b7-8938-47c3-93b3-501214d10986 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +f0a628db-99c7-42e8-8f89-2272ebd602a7 ebe97465-935f-4bf8-b29a-d0e1100d5528 341e3e61-1f40-4e1c-b5f9-1ca4729539ff 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +74f780e5-fe66-4e77-a994-67c1ed2d20d4 f02932bb-a31d-4063-8a01-2e03135942ea 341e3e61-1f40-4e1c-b5f9-1ca4729539ff 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +bfbb6fef-3722-4939-8c20-5b837965badb ebe97465-935f-4bf8-b29a-d0e1100d5528 61ce100e-3761-4451-80f4-0869a86102b8 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +9077e33e-6806-4523-bdaf-687d80014ab3 f02932bb-a31d-4063-8a01-2e03135942ea 61ce100e-3761-4451-80f4-0869a86102b8 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +b5b2aeb8-ce21-400b-9f34-9178ca9afbe1 1724a7eb-1663-47da-abaa-00b6271c9754 80f20309-2ce3-4cee-b0f3-1fe641241295 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +498ee471-a024-4d1b-adec-98698c1c6572 ad48dcdb-4af9-4696-9110-03d203a534ac 80f20309-2ce3-4cee-b0f3-1fe641241295 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +a85e58e4-5e8f-4b7e-85b8-9d50e6307a33 1724a7eb-1663-47da-abaa-00b6271c9754 e71184dd-224f-4da4-94c9-3f26ad3c261a 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +07365b2f-04ec-4499-b0bf-28fd52f2f6a9 ad48dcdb-4af9-4696-9110-03d203a534ac e71184dd-224f-4da4-94c9-3f26ad3c261a 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +3f181ba8-3393-4051-a2fe-5f3893f6c9a5 bf4037a6-1802-48e9-8e95-3fd2326f4bdf 5300dfb3-3b3f-429c-bb0c-0aa91d53568f 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +61ac7057-79af-4cda-a71b-dce6ee0f2058 c64be28e-8586-47b4-9f83-6d203ac60cd9 5300dfb3-3b3f-429c-bb0c-0aa91d53568f 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +64686735-9d05-4b16-a58b-943041898ffa bf4037a6-1802-48e9-8e95-3fd2326f4bdf 88b2e292-0ec5-4caa-ac0c-cde0c4417c03 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +5f04b230-3c0f-4e39-82ad-ae01beeae7f3 c64be28e-8586-47b4-9f83-6d203ac60cd9 88b2e292-0ec5-4caa-ac0c-cde0c4417c03 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +f42428b7-d75d-4e97-ae6f-d7bde475822c ec08f4ed-e461-4aac-8015-9a1daa49fae6 143e0022-d045-4af9-9730-227127df4d30 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +ea965e30-85a8-4e15-9631-2a8d771720db 714ca75d-083d-4de2-86ec-91462e454f88 143e0022-d045-4af9-9730-227127df4d30 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +7ed1da9c-f735-49d2-87ce-e0d349f264bc ec08f4ed-e461-4aac-8015-9a1daa49fae6 22066110-b999-450d-aa05-4e7fcee0c368 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +2b1e9d13-5090-4b5e-a5b2-06de5d007195 714ca75d-083d-4de2-86ec-91462e454f88 22066110-b999-450d-aa05-4e7fcee0c368 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +b496dec8-9322-43a7-b2d0-607ae58bae45 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 80f600d0-f8be-4146-a0f9-c7d54a54a0ff 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +934970c1-67c8-47a7-95b2-e810bfc8072f 79101516-edd8-4fc4-8ac8-8f03881c14aa 80f600d0-f8be-4146-a0f9-c7d54a54a0ff 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +3456e5e8-af0b-4b90-957b-ef68964e2e85 0d12dbec-16f5-414f-ab68-cd3eda8edb9b b4da0b29-0daa-47de-ba0c-37741c7fd176 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +b971cc7f-f740-4e69-97da-2e6777174a80 79101516-edd8-4fc4-8ac8-8f03881c14aa b4da0b29-0daa-47de-ba0c-37741c7fd176 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +e1fb2686-4aa1-4f46-9de1-6b3896ed684b 1642541a-a832-42b8-b80b-c661b9fdd9dc 47820032-d1a7-4cdb-ab4e-4e71429db1db 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +92907cb9-19c0-4cfc-8261-00a469ddb8cf e6bddf2a-db84-4400-b5f6-fb86ba385f48 47820032-d1a7-4cdb-ab4e-4e71429db1db 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +a833945b-5d9b-42cd-a0a8-728f2110d9f9 1642541a-a832-42b8-b80b-c661b9fdd9dc cae6a987-9b46-4c42-8e15-372a75e2271c 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +f07a99c3-d18a-46af-bdcb-0922f1b65bc3 e6bddf2a-db84-4400-b5f6-fb86ba385f48 cae6a987-9b46-4c42-8e15-372a75e2271c 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +06a958a8-1d5d-4d4e-86d9-e5143998b83c f23f0755-7e34-4610-a5af-d21f4d669186 eec94de8-2850-4a40-8e58-8e46ce4645de 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +3a09a416-2577-45d0-a978-3c59553dfdd9 5dddf39b-002a-4561-8596-6e9f9fbdc2c1 eec94de8-2850-4a40-8e58-8e46ce4645de 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +c33fc646-5a83-4611-b6de-ebd16929d0ad f23f0755-7e34-4610-a5af-d21f4d669186 441d0b23-b88b-42c4-854b-98f1167f0e25 12 59f1329a-f4b3-4b9d-83e5-406c3b26a536 3 +a57889cf-1466-4178-bfd5-1531333963dd 5dddf39b-002a-4561-8596-6e9f9fbdc2c1 441d0b23-b88b-42c4-854b-98f1167f0e25 12 1aba46f9-dcdd-402f-bb73-d8111586407d 7 +cf18e9cb-34ed-4d3a-bbd2-9b5755b06622 914ecbd4-0f2d-4447-9d80-f5b4d791a968 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +a0f40bb6-f1ab-4c00-b2c7-64bea3848d03 914ecbd4-0f2d-4447-9d80-f5b4d791a968 bed003a4-068f-493c-8519-b7ff3ab94f63 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +82435d7b-2004-4ac8-a7ce-8effc4e006f6 914ecbd4-0f2d-4447-9d80-f5b4d791a968 a6751a1a-e274-445d-ab2f-06ead1cb6d3c 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +6846acec-3a36-45da-b254-15885aa13183 914ecbd4-0f2d-4447-9d80-f5b4d791a968 6be296b5-5db3-407b-915b-ebcfa5d73aa3 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +80967b7f-cae8-4b8b-94e6-8b8bfc805a8a 914ecbd4-0f2d-4447-9d80-f5b4d791a968 5aa04755-8fbe-4378-97ed-b23f0ac0e928 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +107d5a5a-b293-421a-b5c3-7ceb24250653 914ecbd4-0f2d-4447-9d80-f5b4d791a968 17fa82e4-d0ad-4092-b3c0-1f597bc84883 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +5d1384eb-5ecf-4a04-a766-35e936d78264 914ecbd4-0f2d-4447-9d80-f5b4d791a968 684ba856-7ace-4a36-9c56-e646e71ebb6a 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +3c3e9fc8-0793-4b73-b96c-75e3fa4467aa 914ecbd4-0f2d-4447-9d80-f5b4d791a968 bb5af4d5-3007-4d6a-8965-10db2ec91b76 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +b1bba690-1dbb-43b4-a1b2-4269f4a20d39 914ecbd4-0f2d-4447-9d80-f5b4d791a968 d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +90768889-f953-4981-bf9d-120f8cf36f27 914ecbd4-0f2d-4447-9d80-f5b4d791a968 c2fe5345-d2c7-4214-8406-31b2b2b87aa2 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +c37c4041-259c-45ce-9f4e-102541b1c566 914ecbd4-0f2d-4447-9d80-f5b4d791a968 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +94b43ccc-93f5-4ab3-b920-cc4b34355c82 914ecbd4-0f2d-4447-9d80-f5b4d791a968 16745b0e-5964-4f3e-99e3-aa1646f275f5 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +b79443d3-8f3f-42c2-8973-83ac3e5fa59a 914ecbd4-0f2d-4447-9d80-f5b4d791a968 ec08f4ed-e461-4aac-8015-9a1daa49fae6 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +f105a8ff-e6fa-4fb0-891f-02b32a613f90 914ecbd4-0f2d-4447-9d80-f5b4d791a968 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +43229ca0-a083-488f-b459-f403c932d475 914ecbd4-0f2d-4447-9d80-f5b4d791a968 1642541a-a832-42b8-b80b-c661b9fdd9dc 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +17f3e8d3-a09a-42a1-a1a7-fa248dfb0779 914ecbd4-0f2d-4447-9d80-f5b4d791a968 f23f0755-7e34-4610-a5af-d21f4d669186 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +cad86770-66f3-4c55-8c40-6615898ecba1 7227df35-5814-4d77-9efc-113ee8abf4d0 b99c3111-0b6d-4a36-8207-45d2d00e7e37 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +2c65acb0-4f36-493d-ac10-432dadc78235 7227df35-5814-4d77-9efc-113ee8abf4d0 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +872adbfc-6154-4a56-b296-fd6a2e741b2b 7227df35-5814-4d77-9efc-113ee8abf4d0 be8b5ac0-0df7-4eff-90f1-4c86f16c362e 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +4ba90b76-bbfe-4b9f-a4c1-ad6bb78f4fbc 7227df35-5814-4d77-9efc-113ee8abf4d0 182b57af-ef9e-428d-916d-7f18e14357d1 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +2cc2b60b-a90f-4f5b-8502-4ed6cb312064 914ecbd4-0f2d-4447-9d80-f5b4d791a968 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +b058ee85-9a16-4cb2-b240-b70cc9e19253 914ecbd4-0f2d-4447-9d80-f5b4d791a968 b1d1e038-acb3-468f-810b-5d0f549a66cc 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +df5f4ea9-0124-492b-b691-5e5229b3cb30 914ecbd4-0f2d-4447-9d80-f5b4d791a968 c2bb0304-fcac-4397-9d63-e7503688aae6 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +c1203b34-3502-45c4-9cd2-44a1da63353f 914ecbd4-0f2d-4447-9d80-f5b4d791a968 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +1a06d985-fefc-41a0-9efb-1b3c9fea7531 914ecbd4-0f2d-4447-9d80-f5b4d791a968 dbf9eba6-2713-48f9-94df-7fa36fd3880a 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +017097b6-a028-423a-85f3-e6ac6ff5036a 914ecbd4-0f2d-4447-9d80-f5b4d791a968 bf032a0f-20ad-4ae4-a37b-a4971292c8b3 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +1b741808-c179-4dad-889d-8d7fbe20a8c7 914ecbd4-0f2d-4447-9d80-f5b4d791a968 06fa92a5-cddc-47aa-9a02-22b140d16be6 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +7eab4d5a-df66-447d-85a4-d8a71c8a5c40 914ecbd4-0f2d-4447-9d80-f5b4d791a968 ebe97465-935f-4bf8-b29a-d0e1100d5528 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +01af735c-c8fd-42e2-b653-d063dd4a8c21 914ecbd4-0f2d-4447-9d80-f5b4d791a968 1724a7eb-1663-47da-abaa-00b6271c9754 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +ba74f1d6-298c-414d-a417-837b356b6605 914ecbd4-0f2d-4447-9d80-f5b4d791a968 bf4037a6-1802-48e9-8e95-3fd2326f4bdf 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +0acaafd0-0d62-4374-9197-8b321da600d7 914ecbd4-0f2d-4447-9d80-f5b4d791a968 cdece2fc-4010-45d0-9949-3de52bb707c5 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +cff858b9-6bf3-427e-9dd8-71ff27399f32 b5b681da-e1c4-4594-9f09-0708560d94fd 06448d2a-efc7-46ed-835c-b5dcf8178556 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +2402a038-5dab-4acc-af83-4fd921d6ebbd b5b681da-e1c4-4594-9f09-0708560d94fd c1ad30ce-4757-4bc7-96f1-77522ca019d4 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +6ba4398d-39be-4a42-9cba-3748618c4123 b5b681da-e1c4-4594-9f09-0708560d94fd b150f1d5-6b4c-46a4-8a0e-e6c79280b63b 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +9e0b573d-eed1-4115-8d59-8d28ec92d7f1 b5b681da-e1c4-4594-9f09-0708560d94fd 2646bbfd-1134-4b76-af3d-6ae0927d5916 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +3937cb57-4ba3-4270-babb-22b6a826e200 b5b681da-e1c4-4594-9f09-0708560d94fd beabae34-b69a-4aaa-bf44-33ebd7d2e4f9 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +e249924d-0c6f-4d78-9afc-d896c371abd6 b5b681da-e1c4-4594-9f09-0708560d94fd fa7f3228-db3e-449a-9e99-c5185b5de9b7 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +97ec5726-5b26-4121-a8ae-d3ec55fb259a 40a3aef0-b913-4e62-b96f-5aeb228a9b9b be0fe922-f660-483a-b305-92106f09c597 87 d356fa5f-bc26-49fd-888e-17db90c46f33 86 +7a117332-6db4-4e9b-80b6-c6ba3b7ede31 40a3aef0-b913-4e62-b96f-5aeb228a9b9b 4dfda64d-518c-4be1-b7fe-6b94a4302699 87 d356fa5f-bc26-49fd-888e-17db90c46f33 86 +cb5b7056-6875-4a9c-bc77-b8e35f137640 40a3aef0-b913-4e62-b96f-5aeb228a9b9b 17857e38-779b-46a8-ab2a-d0f875be7719 87 d356fa5f-bc26-49fd-888e-17db90c46f33 86 +59bf5baa-7fdb-4d4a-b03e-d0a7bfca12bf 40a3aef0-b913-4e62-b96f-5aeb228a9b9b e498552c-6beb-4701-9e59-3c4bafc9ee75 87 d356fa5f-bc26-49fd-888e-17db90c46f33 86 +6fc325d3-f4b9-4b34-92d0-13667ce0fdf9 40a3aef0-b913-4e62-b96f-5aeb228a9b9b a13df2d7-35f0-4849-9411-7ce4f8359a49 87 d356fa5f-bc26-49fd-888e-17db90c46f33 86 +301b95ff-26bc-4e35-ad5b-f9953c56147d 40a3aef0-b913-4e62-b96f-5aeb228a9b9b 4e17c8d1-0263-4fe6-aa5f-9654c0c9b89f 87 d356fa5f-bc26-49fd-888e-17db90c46f33 86 +40695697-5488-4923-880b-f703ceff2eed ef16216a-2808-42e3-930f-3c92fc3c038b 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +176cf826-c5f6-4579-b0fa-64b9210f8910 ef16216a-2808-42e3-930f-3c92fc3c038b bed003a4-068f-493c-8519-b7ff3ab94f63 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +499dba7c-558d-44e3-9d2f-d805db5e745f ef16216a-2808-42e3-930f-3c92fc3c038b a6751a1a-e274-445d-ab2f-06ead1cb6d3c 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +dee5e93b-127d-4948-9cb9-f25c30bbe8fe ef16216a-2808-42e3-930f-3c92fc3c038b 6be296b5-5db3-407b-915b-ebcfa5d73aa3 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +8ff46b90-131c-409e-97c0-a03e0aa8d936 ef16216a-2808-42e3-930f-3c92fc3c038b 5aa04755-8fbe-4378-97ed-b23f0ac0e928 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +0c27b21e-1a51-4e79-8c27-7eff8570e7af ef16216a-2808-42e3-930f-3c92fc3c038b 17fa82e4-d0ad-4092-b3c0-1f597bc84883 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +cf584825-c957-4274-a293-089704119437 ef16216a-2808-42e3-930f-3c92fc3c038b 684ba856-7ace-4a36-9c56-e646e71ebb6a 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +83ab2394-e516-4347-b699-ac8b1c34c755 ef16216a-2808-42e3-930f-3c92fc3c038b bb5af4d5-3007-4d6a-8965-10db2ec91b76 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +36728d5d-e1c8-43f0-b612-248eea9631a7 ef16216a-2808-42e3-930f-3c92fc3c038b d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +1c783573-d991-4ffd-be8d-1979316abf36 ef16216a-2808-42e3-930f-3c92fc3c038b c2fe5345-d2c7-4214-8406-31b2b2b87aa2 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +cd285427-d73d-4dea-b02d-e62e890a6b68 ef16216a-2808-42e3-930f-3c92fc3c038b 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +778ca5d9-cb06-4ff5-91f4-a0fe70e965ec ef16216a-2808-42e3-930f-3c92fc3c038b 16745b0e-5964-4f3e-99e3-aa1646f275f5 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +23884578-31ae-4997-9611-79d29c4676e9 ef16216a-2808-42e3-930f-3c92fc3c038b ec08f4ed-e461-4aac-8015-9a1daa49fae6 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +952bbfd8-8814-4c76-bf6f-ccbe6765d731 ef16216a-2808-42e3-930f-3c92fc3c038b 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +4e801166-5b18-4846-81bd-8d768db811f5 ef16216a-2808-42e3-930f-3c92fc3c038b 1642541a-a832-42b8-b80b-c661b9fdd9dc 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +76864287-8445-48c5-9ca6-74682bcf1be4 ef16216a-2808-42e3-930f-3c92fc3c038b f23f0755-7e34-4610-a5af-d21f4d669186 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +7a4e4912-9ce0-4873-b4e7-61886df9c044 ef16216a-2808-42e3-930f-3c92fc3c038b b99c3111-0b6d-4a36-8207-45d2d00e7e37 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +eb8aa11d-2918-4144-9a4c-94edb7ae83f3 ef16216a-2808-42e3-930f-3c92fc3c038b 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +c8351d4a-28a7-469d-907f-4c908b1fb1f0 ef16216a-2808-42e3-930f-3c92fc3c038b be8b5ac0-0df7-4eff-90f1-4c86f16c362e 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +bb81de0e-eef3-4be8-a5ae-8900cd7cd5b3 ef16216a-2808-42e3-930f-3c92fc3c038b 182b57af-ef9e-428d-916d-7f18e14357d1 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +857997ab-6c68-48b3-83ce-eff72e8df987 ef16216a-2808-42e3-930f-3c92fc3c038b 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +21a9a77e-f442-4c41-9dd9-435e80f249eb ef16216a-2808-42e3-930f-3c92fc3c038b b1d1e038-acb3-468f-810b-5d0f549a66cc 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +720161f4-9c43-4cf1-b8a9-bb6889852196 ef16216a-2808-42e3-930f-3c92fc3c038b c2bb0304-fcac-4397-9d63-e7503688aae6 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +36e7a214-dec8-4434-8083-4ceea74c80fe ef16216a-2808-42e3-930f-3c92fc3c038b 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +75ae7904-0263-49dc-9faf-8434f56c4c92 ef16216a-2808-42e3-930f-3c92fc3c038b dbf9eba6-2713-48f9-94df-7fa36fd3880a 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +a60aab92-50b7-4a2c-a9b3-6556d847921d ef16216a-2808-42e3-930f-3c92fc3c038b bf032a0f-20ad-4ae4-a37b-a4971292c8b3 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +1f0c7d4d-0d33-4b6d-8195-8fa530860fdb ef16216a-2808-42e3-930f-3c92fc3c038b 06fa92a5-cddc-47aa-9a02-22b140d16be6 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +0f661553-e710-4169-947b-f066001a3c21 ef16216a-2808-42e3-930f-3c92fc3c038b ebe97465-935f-4bf8-b29a-d0e1100d5528 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +18a33267-429e-4ebe-a755-e99dd3d57fdb ef16216a-2808-42e3-930f-3c92fc3c038b 1724a7eb-1663-47da-abaa-00b6271c9754 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +f0b6db74-cc55-477c-bd95-144ad0dd0ed8 ef16216a-2808-42e3-930f-3c92fc3c038b bf4037a6-1802-48e9-8e95-3fd2326f4bdf 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +f95cbd18-76b1-41d3-965c-370ceae0496d ef16216a-2808-42e3-930f-3c92fc3c038b cdece2fc-4010-45d0-9949-3de52bb707c5 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +9cbaefe4-b0fb-4b12-aa19-63a4ba52df02 ec6345b1-707e-4fad-96e8-136589a0cd6f 06448d2a-efc7-46ed-835c-b5dcf8178556 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +59bf1405-a025-40a7-af13-d64f9e2de744 ec6345b1-707e-4fad-96e8-136589a0cd6f c1ad30ce-4757-4bc7-96f1-77522ca019d4 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +4c41b893-297a-492b-b359-2b29af47fd60 ec6345b1-707e-4fad-96e8-136589a0cd6f b150f1d5-6b4c-46a4-8a0e-e6c79280b63b 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +00c16ec0-2bbc-410d-ab51-0731a93ab1dc ec6345b1-707e-4fad-96e8-136589a0cd6f 2646bbfd-1134-4b76-af3d-6ae0927d5916 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +c68c20dd-8c42-4032-9464-9f7f9605a687 ec6345b1-707e-4fad-96e8-136589a0cd6f beabae34-b69a-4aaa-bf44-33ebd7d2e4f9 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +94016c75-15db-43b0-af84-b51100c35316 ec6345b1-707e-4fad-96e8-136589a0cd6f fa7f3228-db3e-449a-9e99-c5185b5de9b7 3 2be047f0-7306-40e8-9299-079c1c4b91bc 88 +5dd3d0e3-421c-48ba-bc2b-b8020e3cf2cc d3780b5d-5e76-41ac-9499-26ce46a6ceea be0fe922-f660-483a-b305-92106f09c597 87 8320f362-b9bb-496c-be33-9fa9c6899740 88 +79b3a60f-dc39-44f9-a87c-d95fe58b2ba1 d3780b5d-5e76-41ac-9499-26ce46a6ceea 4dfda64d-518c-4be1-b7fe-6b94a4302699 87 8320f362-b9bb-496c-be33-9fa9c6899740 88 +c7de3ba3-6ebd-4ea3-bc44-016b84d18b63 d3780b5d-5e76-41ac-9499-26ce46a6ceea 17857e38-779b-46a8-ab2a-d0f875be7719 87 8320f362-b9bb-496c-be33-9fa9c6899740 88 +ffedab98-722f-45a4-b1df-328fd648ac78 d3780b5d-5e76-41ac-9499-26ce46a6ceea e498552c-6beb-4701-9e59-3c4bafc9ee75 87 8320f362-b9bb-496c-be33-9fa9c6899740 88 +e3fdbd2d-cf42-45ab-a01b-26b96819457b d3780b5d-5e76-41ac-9499-26ce46a6ceea a13df2d7-35f0-4849-9411-7ce4f8359a49 87 8320f362-b9bb-496c-be33-9fa9c6899740 88 +65ccd02e-c424-461d-9f68-8e78b3753485 d3780b5d-5e76-41ac-9499-26ce46a6ceea 4e17c8d1-0263-4fe6-aa5f-9654c0c9b89f 87 8320f362-b9bb-496c-be33-9fa9c6899740 88 +b9168ef2-48c7-40f2-ad0a-8f71f279f309 5e3ae3ca-254d-4718-80af-03bda2d2171c 4d397720-bbbd-4ee4-b2fd-8548fcd29b9f 89 c36ad857-fb2e-4f07-9bf8-03430f830131 86 +bdfd228c-2483-41b5-a917-d0de4630267c 5e3ae3ca-254d-4718-80af-03bda2d2171c 720ef39b-a75e-4681-ac70-4237598974d0 3 d86615c4-d7f0-4a24-8993-d3eecee6a630 86 +936f7e58-1d2e-4f39-951c-6be0e5e91df1 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d b909f1f1-c702-4adc-80f1-ec5018737592 9 dd05215f-7293-44f7-b78f-e121700b7530 199 +319c6bf0-fe5b-444b-bae3-059e7def8509 47e0e9e1-4c1f-43e2-9495-57f31eec8892 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 9 dd05215f-7293-44f7-b78f-e121700b7530 199 +de954c0e-cb26-4e6f-a622-e38dba0da5cd b63967a8-29da-42a2-9e6f-c3407cd5b386 4ffb1f52-fb9b-4c9b-b385-f89f20dd590e 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +887ea0b0-79a9-4f61-8c8c-d425f811813b b6af66c2-3ed1-417d-b51f-88a9ce79ba1a 5118f759-94c5-450d-aaf2-e9dc08a9846b 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +70b1b065-d21f-48cd-8bdb-88a80298ed48 c6d8b1e0-7f69-4a1c-8793-f4a29652dba7 15581e94-2f07-41a6-a6ac-ae06e2b3da52 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +42955d3a-84af-4725-9a86-f0e658e76eb8 8b1e401d-2071-42a0-b643-f7d8168f29c5 b0613810-a118-4135-95a5-77503029263e 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +043c7359-ab0f-4320-bd50-df3c2bcc2df4 6868c1af-8d4a-4524-9bdc-8edd7c904b59 ddf4cff9-22a2-4bd5-9a19-7937901c7a2c 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +21fd638e-3fe6-450b-abf7-88e28a8b06ce 97294f3c-f6bd-4128-826a-8d5233c1270d 662e2fc5-f72e-402b-ac15-e6af54eee916 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +1a587fe7-d2c6-44df-ab2b-c7ede2fbd6ac ee4d2904-f91e-4968-8b3a-44686ec768f6 48e992b3-be11-47f9-81bf-9e17c8139030 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +14eadbe0-bbe5-4f83-9831-d25f9ced2178 2954a9c3-8d08-44db-b93c-2e000314b31a 790ad87b-27df-4c32-addd-287ee8da2de1 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +f72807da-49a2-4fe4-82b0-11af6a8cb6e0 a8e8e14c-0a9e-40f5-bf9c-6a231a9bb09f 6a392a33-9c71-4721-98a4-8cced704a351 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +a0a08d26-f416-45e7-a738-016c32d3e9e4 a759a45a-5db5-4f1d-b322-f8df348902b1 cb7a4e3b-5ac5-40c7-a954-9c02fff53a87 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +21bea76b-e13f-4380-8095-25e6b34447e7 54da6afa-058e-4367-aeb6-883729a8ad8e d1812f8e-e999-40a2-92bb-a0d1969d172a 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +52222114-24b0-48b8-a2e1-497fca32574c 0ca0aabc-bc4e-49d6-b6ab-85a4ad578447 d4802ca1-4f1e-4b7a-81be-793020193283 11 647035cc-e535-47da-a110-62bb7b1d94b5 1 +\. + + +-- +-- Data for Name: extras_scheduledjob; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_scheduledjob (id, name, task, job_class, "interval", args, kwargs, queue, one_off, start_time, enabled, last_run_at, total_run_count, date_changed, description, approval_required, approved_at, approved_by_user_id, user_id, job_model_id, crontab) FROM stdin; +\. + + +-- +-- Data for Name: extras_scheduledjobs; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_scheduledjobs (ident, last_update) FROM stdin; +\. + + +-- +-- Data for Name: extras_secret; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_secret (id, created, last_updated, _custom_field_data, name, slug, description, provider, parameters) FROM stdin; +\. + + +-- +-- Data for Name: extras_secretsgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_secretsgroup (id, created, last_updated, _custom_field_data, name, slug, description) FROM stdin; +\. + + +-- +-- Data for Name: extras_secretsgroupassociation; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_secretsgroupassociation (id, access_type, secret_type, group_id, secret_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_status; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_status (id, created, last_updated, _custom_field_data, name, color, slug, description) FROM stdin; +d816709d-3338-4522-868e-f86c19522ffb 2023-09-19 2023-09-19 08:07:57.636702+00 {} Connected 4caf50 connected Cable is connected +37095ba4-694f-4827-a072-3e4a8ca8d51a 2023-09-19 2023-09-19 08:07:57.644191+00 {} Decommissioning ffc107 decommissioning Unit is being decommissioned +fb042691-883e-4166-9f66-75c30b47b0e4 2023-09-19 2023-09-19 08:07:57.66129+00 {} Staged 2196f3 staged Unit has been staged +4dfbb9ac-fc0a-4b82-9a7f-8494f738752e 2023-09-19 2023-09-19 08:07:57.665509+00 {} Failed f44336 failed Unit has failed +23a6409e-92a4-4129-a365-125d2b6321e9 2023-09-19 2023-09-19 08:07:57.669551+00 {} Inventory 9e9e9e inventory Device is in inventory +c4b56871-e610-4214-994c-8e9e15686e8a 2023-09-19 2023-09-19 08:07:57.692438+00 {} Maintenance 9e9e9e maintenance Unit is under maintenance +01941cbf-6bda-40c8-9b48-46600763959d 2023-09-19 2023-09-19 08:07:57.702056+00 {} Staging 2196f3 staging Site or Location is in the process of being staged +2c3cb224-5699-47e0-a651-18a0e6710855 2023-09-19 2023-09-19 08:07:57.71271+00 {} Retired f44336 retired Site or Location has been retired +4aa10d60-1bfa-4637-8433-63382c45eb53 2023-09-19 2023-09-19 08:07:57.734329+00 {} Reserved 00bcd4 reserved Unit is reserved +e2e389ab-a5cc-466f-b6bd-8f254c82e8fb 2023-09-19 2023-09-19 08:07:57.749094+00 {} Deprecated f44336 deprecated Unit has been deprecated +d2dc7e37-ea2d-4548-b3b6-14737c2b6698 2023-09-19 2023-09-19 08:07:57.803549+00 {} DHCP 4caf50 dhcp Dynamically assigned IPv4/IPv6 address +1b184d34-53d7-484f-a50d-080fb65b9caf 2023-09-19 2023-09-19 08:07:57.807618+00 {} SLAAC 4caf50 slaac Dynamically assigned IPv6 address +b7358514-c1fa-4b60-80a6-c7763c255001 2023-09-19 2023-09-19 08:07:57.813863+00 {} Container 9e9e9e container Network contains children +a03ed2bb-6035-436b-90cc-7ff095bc9339 2023-09-19 2023-09-19 08:09:26.709719+00 {} Available 4caf50 available Unit is available +3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 2023-09-19 2023-09-19 08:09:26.719632+00 {} Active 4caf50 active Unit is active +20e9cfdd-68ad-48a3-ad49-a9247c464355 2023-09-19 2023-09-19 08:09:26.724256+00 {} Decommissioned 9e9e9e decommissioned Circuit has been decommissioned +7f380257-6839-4ba4-91ee-348732d95056 2023-09-19 2023-09-19 08:09:26.728812+00 {} Deprovisioning ffc107 deprovisioning Circuit is being deprovisioned +690b21c4-e0f3-4a6e-8fc9-01518921b8e0 2023-09-19 2023-09-19 08:09:26.733081+00 {} Offline ffc107 offline Unit is offline +fb4ab99d-6d3d-4763-8422-9941089237b0 2023-09-19 2023-09-19 08:09:26.737996+00 {} Planned 00bcd4 planned Unit has been planned +8957e20d-407b-48ae-a684-6b95a4e5ad2f 2023-09-19 2023-09-19 08:09:26.742333+00 {} Provisioning 2196f3 provisioning Circuit is being provisioned +2b1d44db-bf7f-47a4-a890-0727d0809a1c 2023-09-19 2023-09-19 08:09:43.704709+00 {} Peer-to-Peer ff1e1e p2p +\. + + +-- +-- Data for Name: extras_status_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_status_content_types (id, status_id, contenttype_id) FROM stdin; +1 fb4ab99d-6d3d-4763-8422-9941089237b0 1 +2 8957e20d-407b-48ae-a684-6b95a4e5ad2f 1 +3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 1 +4 690b21c4-e0f3-4a6e-8fc9-01518921b8e0 1 +5 7f380257-6839-4ba4-91ee-348732d95056 1 +6 20e9cfdd-68ad-48a3-ad49-a9247c464355 1 +7 d816709d-3338-4522-868e-f86c19522ffb 2 +8 fb4ab99d-6d3d-4763-8422-9941089237b0 2 +9 37095ba4-694f-4827-a072-3e4a8ca8d51a 2 +10 690b21c4-e0f3-4a6e-8fc9-01518921b8e0 3 +11 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 3 +12 fb4ab99d-6d3d-4763-8422-9941089237b0 3 +13 fb042691-883e-4166-9f66-75c30b47b0e4 3 +14 4dfbb9ac-fc0a-4b82-9a7f-8494f738752e 3 +15 23a6409e-92a4-4129-a365-125d2b6321e9 3 +16 37095ba4-694f-4827-a072-3e4a8ca8d51a 3 +17 fb4ab99d-6d3d-4763-8422-9941089237b0 4 +18 4dfbb9ac-fc0a-4b82-9a7f-8494f738752e 4 +19 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 4 +20 37095ba4-694f-4827-a072-3e4a8ca8d51a 4 +21 c4b56871-e610-4214-994c-8e9e15686e8a 4 +22 fb4ab99d-6d3d-4763-8422-9941089237b0 5 +23 01941cbf-6bda-40c8-9b48-46600763959d 5 +24 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 5 +25 37095ba4-694f-4827-a072-3e4a8ca8d51a 5 +26 2c3cb224-5699-47e0-a651-18a0e6710855 5 +27 690b21c4-e0f3-4a6e-8fc9-01518921b8e0 6 +28 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6 +29 fb4ab99d-6d3d-4763-8422-9941089237b0 6 +30 4dfbb9ac-fc0a-4b82-9a7f-8494f738752e 6 +31 4aa10d60-1bfa-4637-8433-63382c45eb53 7 +32 a03ed2bb-6035-436b-90cc-7ff095bc9339 7 +33 fb4ab99d-6d3d-4763-8422-9941089237b0 7 +34 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 7 +35 e2e389ab-a5cc-466f-b6bd-8f254c82e8fb 7 +36 fb4ab99d-6d3d-4763-8422-9941089237b0 8 +37 01941cbf-6bda-40c8-9b48-46600763959d 8 +38 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 8 +39 37095ba4-694f-4827-a072-3e4a8ca8d51a 8 +40 2c3cb224-5699-47e0-a651-18a0e6710855 8 +41 fb4ab99d-6d3d-4763-8422-9941089237b0 9 +42 01941cbf-6bda-40c8-9b48-46600763959d 9 +43 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 9 +44 37095ba4-694f-4827-a072-3e4a8ca8d51a 9 +45 2c3cb224-5699-47e0-a651-18a0e6710855 9 +46 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 10 +47 4aa10d60-1bfa-4637-8433-63382c45eb53 10 +48 e2e389ab-a5cc-466f-b6bd-8f254c82e8fb 10 +49 d2dc7e37-ea2d-4548-b3b6-14737c2b6698 10 +50 1b184d34-53d7-484f-a50d-080fb65b9caf 10 +51 b7358514-c1fa-4b60-80a6-c7763c255001 11 +52 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 11 +53 4aa10d60-1bfa-4637-8433-63382c45eb53 11 +54 e2e389ab-a5cc-466f-b6bd-8f254c82e8fb 11 +55 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 12 +56 4aa10d60-1bfa-4637-8433-63382c45eb53 12 +57 e2e389ab-a5cc-466f-b6bd-8f254c82e8fb 12 +58 690b21c4-e0f3-4a6e-8fc9-01518921b8e0 13 +59 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 13 +60 fb4ab99d-6d3d-4763-8422-9941089237b0 13 +61 fb042691-883e-4166-9f66-75c30b47b0e4 13 +62 4dfbb9ac-fc0a-4b82-9a7f-8494f738752e 13 +63 37095ba4-694f-4827-a072-3e4a8ca8d51a 13 +64 4dfbb9ac-fc0a-4b82-9a7f-8494f738752e 14 +65 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 14 +66 37095ba4-694f-4827-a072-3e4a8ca8d51a 14 +67 c4b56871-e610-4214-994c-8e9e15686e8a 14 +68 fb4ab99d-6d3d-4763-8422-9941089237b0 14 +69 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 17 +70 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 18 +71 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 19 +72 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 20 +73 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 21 +74 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 22 +75 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 23 +76 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 24 +77 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 25 +78 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 26 +79 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 27 +80 fb042691-883e-4166-9f66-75c30b47b0e4 17 +81 fb042691-883e-4166-9f66-75c30b47b0e4 18 +82 fb042691-883e-4166-9f66-75c30b47b0e4 19 +83 fb042691-883e-4166-9f66-75c30b47b0e4 20 +84 fb042691-883e-4166-9f66-75c30b47b0e4 21 +85 fb042691-883e-4166-9f66-75c30b47b0e4 22 +86 fb042691-883e-4166-9f66-75c30b47b0e4 23 +87 fb042691-883e-4166-9f66-75c30b47b0e4 24 +88 fb042691-883e-4166-9f66-75c30b47b0e4 25 +89 fb042691-883e-4166-9f66-75c30b47b0e4 26 +90 fb042691-883e-4166-9f66-75c30b47b0e4 27 +91 20e9cfdd-68ad-48a3-ad49-a9247c464355 17 +92 20e9cfdd-68ad-48a3-ad49-a9247c464355 18 +93 20e9cfdd-68ad-48a3-ad49-a9247c464355 19 +94 20e9cfdd-68ad-48a3-ad49-a9247c464355 20 +95 20e9cfdd-68ad-48a3-ad49-a9247c464355 21 +96 20e9cfdd-68ad-48a3-ad49-a9247c464355 22 +97 20e9cfdd-68ad-48a3-ad49-a9247c464355 23 +98 20e9cfdd-68ad-48a3-ad49-a9247c464355 24 +99 20e9cfdd-68ad-48a3-ad49-a9247c464355 25 +100 20e9cfdd-68ad-48a3-ad49-a9247c464355 26 +101 20e9cfdd-68ad-48a3-ad49-a9247c464355 27 +102 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 28 +103 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 29 +104 fb042691-883e-4166-9f66-75c30b47b0e4 28 +105 fb042691-883e-4166-9f66-75c30b47b0e4 29 +106 20e9cfdd-68ad-48a3-ad49-a9247c464355 28 +107 20e9cfdd-68ad-48a3-ad49-a9247c464355 29 +108 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 72 +109 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 73 +110 fb042691-883e-4166-9f66-75c30b47b0e4 72 +111 fb042691-883e-4166-9f66-75c30b47b0e4 73 +112 20e9cfdd-68ad-48a3-ad49-a9247c464355 72 +113 20e9cfdd-68ad-48a3-ad49-a9247c464355 73 +114 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 199 +115 a03ed2bb-6035-436b-90cc-7ff095bc9339 199 +116 fb4ab99d-6d3d-4763-8422-9941089237b0 199 +117 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 202 +118 20e9cfdd-68ad-48a3-ad49-a9247c464355 202 +119 7f380257-6839-4ba4-91ee-348732d95056 202 +120 690b21c4-e0f3-4a6e-8fc9-01518921b8e0 202 +121 fb4ab99d-6d3d-4763-8422-9941089237b0 202 +122 8957e20d-407b-48ae-a684-6b95a4e5ad2f 202 +123 2b1d44db-bf7f-47a4-a890-0727d0809a1c 11 +\. + + +-- +-- Data for Name: extras_tag; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_tag (name, slug, id, created, last_updated, _custom_field_data, color, description) FROM stdin; +sup-720 sup-720 245b7d60-398a-46ef-a7fe-4919b1c57116 2023-09-19 2023-09-19 08:11:10.439297+00 {} 607d8b Supervisor Engine 720 +\. + + +-- +-- Data for Name: extras_tag_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_tag_content_types (id, tag_id, contenttype_id) FROM stdin; +\. + + +-- +-- Data for Name: extras_taggeditem; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_taggeditem (id, object_id, content_type_id, tag_id) FROM stdin; +6a832f21-2174-41ab-951e-15511253f80a be0fe922-f660-483a-b305-92106f09c597 87 245b7d60-398a-46ef-a7fe-4919b1c57116 +a3f1229a-00dd-40f1-a713-ac56febac895 4dfda64d-518c-4be1-b7fe-6b94a4302699 87 245b7d60-398a-46ef-a7fe-4919b1c57116 +1c0b2b8c-4d09-4296-8c0d-53bbbfb0d048 17857e38-779b-46a8-ab2a-d0f875be7719 87 245b7d60-398a-46ef-a7fe-4919b1c57116 +61021e36-fc5b-42ac-93ef-717e0741b383 e498552c-6beb-4701-9e59-3c4bafc9ee75 87 245b7d60-398a-46ef-a7fe-4919b1c57116 +e5789cce-62d6-482c-b313-94256a67c137 a13df2d7-35f0-4849-9411-7ce4f8359a49 87 245b7d60-398a-46ef-a7fe-4919b1c57116 +4a145d14-8671-4ecc-a19e-a2b219fd4fdb 4e17c8d1-0263-4fe6-aa5f-9654c0c9b89f 87 245b7d60-398a-46ef-a7fe-4919b1c57116 +\. + + +-- +-- Data for Name: extras_webhook; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_webhook (id, created, last_updated, name, type_create, type_update, type_delete, payload_url, enabled, http_method, http_content_type, additional_headers, body_template, secret, ssl_verification, ca_file_path) FROM stdin; +\. + + +-- +-- Data for Name: extras_webhook_content_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.extras_webhook_content_types (id, webhook_id, contenttype_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_aggregate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_aggregate (id, created, last_updated, _custom_field_data, network, broadcast, prefix_length, date_added, description, rir_id, tenant_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_ipaddress; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_ipaddress (id, created, last_updated, _custom_field_data, host, broadcast, prefix_length, role, assigned_object_id, dns_name, description, assigned_object_type_id, nat_inside_id, status_id, tenant_id, vrf_id) FROM stdin; +64518eac-39ec-4faf-88ad-2c20b8504e89 2023-09-19 2023-09-19 08:09:56.78418+00 {} \\x0a008001 \\x0a008001 32 12446c38-8f3a-44f1-86e5-0d284c24c734 edge-01.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +87bf1742-e06c-4d2a-95d8-42511691d98d 2023-09-19 2023-09-19 08:09:57.37126+00 {} \\x0a008002 \\x0a008002 32 2c867a18-1320-45fa-9958-e75be7561a7a edge-02.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +fb3bbfdd-f144-4f46-b56e-4adddd78001d 2023-09-19 2023-09-19 08:09:57.85085+00 {} \\x0a008003 \\x0a008003 32 ea12f535-d8cb-46e6-90b5-756f4fce335f leaf-01.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +8ba8f566-b9cf-4caf-a4ed-e9e1ee80d7ea 2023-09-19 2023-09-19 08:09:58.258636+00 {} \\x0a000000 \\x0a000000 32 83b17306-00e3-4926-9009-04980f0e54f6 ip-10-0-0-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6c6d56cc-eeba-4d6e-8054-e47ef7bac474 2023-09-19 2023-09-19 08:09:58.291808+00 {} \\x0a004000 \\x0a004000 32 03de9c94-3d94-409e-bb47-5ae4b5401b57 ip-10-0-64-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +1a98af18-01d2-4eb5-bc31-4eceb76ebb45 2023-09-19 2023-09-19 08:09:58.487636+00 {} \\x0a008004 \\x0a008004 32 3fae3212-60c9-4a79-833c-bf87c299e3c4 leaf-02.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +22d89819-b2ac-47d6-b1ee-665cc016a3e7 2023-09-19 2023-09-19 08:09:58.896523+00 {} \\x0a000100 \\x0a000100 32 2d1a9ffa-054e-4443-9cbb-ca891ddc28bf ip-10-0-1-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +27aa296a-1bc4-4592-8745-c846693d1e5f 2023-09-19 2023-09-19 08:09:58.924529+00 {} \\x0a004100 \\x0a004100 32 b9205252-8618-4b18-9718-64319f41f5a9 ip-10-0-65-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +df195778-2193-4339-b1e3-4260573c7215 2023-09-19 2023-09-19 08:09:59.130436+00 {} \\x0a008005 \\x0a008005 32 f85285f6-a1a5-4e5e-b34d-1d22e40f600c leaf-03.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +53f7e092-f577-4d9e-a2e0-5d977ca076ae 2023-09-19 2023-09-19 08:09:59.596089+00 {} \\x0a000200 \\x0a000200 32 754695ff-14e7-4192-a3dd-15f7e1e8264c ip-10-0-2-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +99cb1250-f3d9-4b48-870c-ac624cea5ca1 2023-09-19 2023-09-19 08:09:59.62398+00 {} \\x0a004200 \\x0a004200 32 23e9b7cf-999e-4477-b51f-6b87bf6e7694 ip-10-0-66-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +904db0ae-f100-4dd1-9c5c-a1f79030cc69 2023-09-19 2023-09-19 08:09:59.947933+00 {} \\x0a008006 \\x0a008006 32 3978bfb1-3431-4427-b39a-f561a7ae4d86 leaf-04.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +a86cdb39-d602-4750-9be3-ab38f29cc46e 2023-09-19 2023-09-19 08:10:00.659174+00 {} \\x0a000300 \\x0a000300 32 13f4c923-1ed5-44be-8375-b95b77ce3e91 ip-10-0-3-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6052b1f1-97e2-4679-b37e-22ba5c9553f2 2023-09-19 2023-09-19 08:10:00.707689+00 {} \\x0a004300 \\x0a004300 32 f35dbce1-b80a-405f-868c-e71cc6d31f1e ip-10-0-67-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +45ffde5e-e266-48b2-b155-552f699d5fc7 2023-09-19 2023-09-19 08:10:01.035853+00 {} \\x0a008007 \\x0a008007 32 74a1aa74-6fd9-4983-8b24-c52deef280db leaf-05.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c4c8ec13-daaf-4c2c-aecf-e3eb63a8de4a 2023-09-19 2023-09-19 08:10:01.786862+00 {} \\x0a000400 \\x0a000400 32 108f92a9-3a34-4da5-9cde-e5df427f12b5 ip-10-0-4-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +2699e656-0667-4fcf-9e5a-0b42d87c378c 2023-09-19 2023-09-19 08:10:01.830887+00 {} \\x0a004400 \\x0a004400 32 c48a95c3-f463-498b-a23a-957a83c6e231 ip-10-0-68-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +433128bb-b56c-4372-85cc-cac843662608 2023-09-19 2023-09-19 08:10:02.086861+00 {} \\x0a008008 \\x0a008008 32 2b2cc005-3f37-42d6-9da5-cb4d8361d7af leaf-06.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +42349e97-c7d6-4b53-87ec-ebf06cfe0ed1 2023-09-19 2023-09-19 08:10:02.851529+00 {} \\x0a000500 \\x0a000500 32 17dbd356-a83b-4a9b-aa48-4d71764bddc4 ip-10-0-5-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d7509346-c4cb-41f5-8909-1b6c3ab55fae 2023-09-19 2023-09-19 08:10:02.905422+00 {} \\x0a004500 \\x0a004500 32 55e29846-933b-4581-a42a-0e821456764b ip-10-0-69-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +e553a141-464b-4a96-887b-6b7ddb4253dc 2023-09-19 2023-09-19 08:10:03.390402+00 {} \\x0a008009 \\x0a008009 32 5e1114f4-9986-4fc9-980e-11c1bfc9b47d leaf-07.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +f1f65f0c-1023-4498-b0bd-8d1983184da1 2023-09-19 2023-09-19 08:10:03.996003+00 {} \\x0a000600 \\x0a000600 32 1707bd4e-2320-4a99-9411-e0ca9325c14d ip-10-0-6-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ba732055-d5ff-442e-b29e-b8c0963256e7 2023-09-19 2023-09-19 08:10:04.02491+00 {} \\x0a004600 \\x0a004600 32 5400d1f1-7f72-4ba6-87de-39eafe991cfa ip-10-0-70-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +af16b55b-d4eb-4004-afb9-03984ec463ac 2023-09-19 2023-09-19 08:10:04.325796+00 {} \\x0a00800a \\x0a00800a 32 e33d93d4-c120-41e3-b442-c7e9755373a3 leaf-08.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d75f32c5-fb53-4761-a031-3b99b9015aea 2023-09-19 2023-09-19 08:10:04.808838+00 {} \\x0a000700 \\x0a000700 32 72508a9b-99a3-4514-8324-c3e27251a846 ip-10-0-7-0.server.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +29c58f64-2125-4848-ab8c-01116740b837 2023-09-19 2023-09-19 08:10:04.869148+00 {} \\x0a004700 \\x0a004700 32 14ce43cd-7276-4988-b13d-cdbc456ce5da ip-10-0-71-0.mgmt.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +eda8db19-960e-4317-8b19-f6ec0490eb1b 2023-09-19 2023-09-19 08:10:05.322249+00 {} \\x0a00c000 \\x0a00c000 32 7320f8e3-2d6d-4e79-aecb-ca1cb982a11c ip-10-0-192-0.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +adddd335-5a38-495a-9d60-2a1163b7840c 2023-09-19 2023-09-19 08:10:05.323683+00 {} \\x0a00c001 \\x0a00c001 32 1e0f6ad8-62f2-400a-8f2c-1bfeb7e84519 ip-10-0-192-1.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0aed9edb-e3b3-4f27-84c5-553f23db52a1 2023-09-19 2023-09-19 08:10:05.509111+00 {} \\x0a00c002 \\x0a00c002 32 1b1b6868-e3f8-44ba-9c3a-cfbc0a69b800 ip-10-0-192-2.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +b348b408-497b-4fdd-a533-f6d62e73232d 2023-09-19 2023-09-19 08:10:05.510409+00 {} \\x0a00c003 \\x0a00c003 32 d5b8a4e1-7043-41e9-8d1e-e110ade7973c ip-10-0-192-3.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +14521caa-d277-4e4d-8712-017451f40c1f 2023-09-19 2023-09-19 08:10:05.678908+00 {} \\x0a00c004 \\x0a00c004 32 4528f8bf-75ef-4f8f-867a-5e1634b893cf ip-10-0-192-4.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +8b807f52-9f46-41fc-9bf1-28cf6c5810e1 2023-09-19 2023-09-19 08:10:05.68678+00 {} \\x0a00c005 \\x0a00c005 32 69b084a1-d987-44e2-991f-f500acfd0d60 ip-10-0-192-5.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c9f683ef-8dcf-4763-b7ba-756ffc670a65 2023-09-19 2023-09-19 08:10:05.836157+00 {} \\x0a00c006 \\x0a00c006 32 48757a3d-13f0-408e-9863-3af97189ff2d ip-10-0-192-6.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +b657247a-4051-4cd8-ae6d-025f5794f7ca 2023-09-19 2023-09-19 08:10:05.839114+00 {} \\x0a00c007 \\x0a00c007 32 9ab0df39-4525-473c-b134-d903f406aeab ip-10-0-192-7.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c62f013b-c1a2-411e-a33f-a6991ddef53c 2023-09-19 2023-09-19 08:10:06.037684+00 {} \\x0a00c008 \\x0a00c008 32 b292811f-370b-4a74-b584-779facc0bb68 ip-10-0-192-8.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +83d54242-265a-404d-a9d9-d4f7b418b294 2023-09-19 2023-09-19 08:10:06.039009+00 {} \\x0a00c009 \\x0a00c009 32 bf4b250b-fc2b-4905-8476-32b56bb66958 ip-10-0-192-9.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +8fb13373-13e7-40f8-851f-e0dc0ae8a1b0 2023-09-19 2023-09-19 08:10:06.228049+00 {} \\x0a00c00a \\x0a00c00a 32 ef8ad9c2-3d78-4434-b898-bc230b9f7c79 ip-10-0-192-10.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d85fa851-6367-4afc-bfa0-f4215082e0d8 2023-09-19 2023-09-19 08:10:06.229312+00 {} \\x0a00c00b \\x0a00c00b 32 6d95cdbb-0df4-47d7-95b4-009273c74611 ip-10-0-192-11.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +44afde42-44cc-412b-a062-ced70d22f039 2023-09-19 2023-09-19 08:10:06.379776+00 {} \\x0a00c00c \\x0a00c00c 32 0e4d86be-e92a-4b26-b2c7-1961d3668344 ip-10-0-192-12.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +255bc5a8-4b0f-4ea6-8d00-4be306ce3ac7 2023-09-19 2023-09-19 08:10:06.381092+00 {} \\x0a00c00d \\x0a00c00d 32 3d9f069c-734b-4fc9-9eb7-34b7d34e5441 ip-10-0-192-13.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +2e58698b-c709-478c-b62d-91b61179f143 2023-09-19 2023-09-19 08:10:06.515669+00 {} \\x0a00c00e \\x0a00c00e 32 92c887ed-b2a5-4a63-9a97-6756b9258842 ip-10-0-192-14.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7301b474-030a-41e7-bd60-e968f722d9b4 2023-09-19 2023-09-19 08:10:06.516897+00 {} \\x0a00c00f \\x0a00c00f 32 bd23378a-dbc4-4dc0-be7b-ce989834d3fd ip-10-0-192-15.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +354820f3-7347-4c50-91c3-ee109b8d04f2 2023-09-19 2023-09-19 08:10:06.598543+00 {} \\x0a00c010 \\x0a00c010 32 328436af-6df3-41aa-9839-36fca96a1771 ip-10-0-192-16.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +20187bcb-df69-4545-a46b-051082e4e0ba 2023-09-19 2023-09-19 08:10:06.599736+00 {} \\x0a00c011 \\x0a00c011 32 39c12269-1ccc-4b47-8788-9830e3b6ee53 ip-10-0-192-17.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7a64429f-a372-4e5f-a8ad-f5d93429f232 2023-09-19 2023-09-19 08:10:06.679193+00 {} \\x0a00c012 \\x0a00c012 32 cb47baba-9476-4dfc-a334-7d244d2e2be1 ip-10-0-192-18.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +1e216ec0-6691-42e0-8ce0-aadfdbe45657 2023-09-19 2023-09-19 08:10:06.680355+00 {} \\x0a00c013 \\x0a00c013 32 92ad1c81-fc83-49c0-bf9b-bb727f5df8a4 ip-10-0-192-19.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7440b210-7c1c-4f60-bb14-8ec3719ced31 2023-09-19 2023-09-19 08:10:06.762508+00 {} \\x0a00c014 \\x0a00c014 32 27ce4598-c7a6-4307-aa86-524149200ec1 ip-10-0-192-20.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +1c603af3-7a72-4462-8264-038e8d9eb254 2023-09-19 2023-09-19 08:10:06.763711+00 {} \\x0a00c015 \\x0a00c015 32 adbb105c-ef41-4c56-83f9-3decf72fa469 ip-10-0-192-21.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +e9e3ada3-6379-4b6a-8fa0-1d0f6979ed0c 2023-09-19 2023-09-19 08:10:06.842764+00 {} \\x0a00c016 \\x0a00c016 32 c885b7d6-df35-41c6-89d3-7d570a01b37f ip-10-0-192-22.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +93025e1a-1d2f-4997-98b0-b10273481d1e 2023-09-19 2023-09-19 08:10:06.84399+00 {} \\x0a00c017 \\x0a00c017 32 f25fd314-9571-404f-ba61-5e33d4808523 ip-10-0-192-23.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d51c9fd8-757c-42ed-ab13-bba373096b7a 2023-09-19 2023-09-19 08:10:06.925475+00 {} \\x0a00c018 \\x0a00c018 32 b0fab83c-27f0-4789-9a1a-153dbbc5674f ip-10-0-192-24.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +1887efd8-ce95-48f6-925b-ca74bae48162 2023-09-19 2023-09-19 08:10:06.926835+00 {} \\x0a00c019 \\x0a00c019 32 15ee8663-a4c9-4e13-88c9-2ad2533f8a58 ip-10-0-192-25.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6701a63f-8939-43c6-a3bd-2d36a3052954 2023-09-19 2023-09-19 08:10:07.006391+00 {} \\x0a00c01a \\x0a00c01a 32 b20ab714-a9bb-4d57-bf1b-29e93cbcce0f ip-10-0-192-26.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +3d690c7e-30d0-47df-89c2-e51e06f5db28 2023-09-19 2023-09-19 08:10:07.007605+00 {} \\x0a00c01b \\x0a00c01b 32 b8ae6d6f-920c-437f-9610-3c67eea45262 ip-10-0-192-27.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +513c2f3f-b00a-41ef-90c7-543ff9fbbc38 2023-09-19 2023-09-19 08:10:07.089283+00 {} \\x0a00c01c \\x0a00c01c 32 ccd2f499-a160-443b-9795-f8d35acdc6cc ip-10-0-192-28.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7cd563d1-a932-45e7-b3c6-18bf17d13517 2023-09-19 2023-09-19 08:10:07.090514+00 {} \\x0a00c01d \\x0a00c01d 32 d53f715c-c93b-4aaf-88a4-c4b95407326f ip-10-0-192-29.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +70891a2e-24bd-4dc3-9149-f8e04ebe9ac4 2023-09-19 2023-09-19 08:10:07.170123+00 {} \\x0a00c01e \\x0a00c01e 32 b39b674d-df06-4813-a0bd-eefec8fae300 ip-10-0-192-30.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ec8118d0-e029-4d87-ba3b-ea9f0a7de9bf 2023-09-19 2023-09-19 08:10:07.171318+00 {} \\x0a00c01f \\x0a00c01f 32 f1cf411b-411e-4bde-95a3-e2ec64ac1ff1 ip-10-0-192-31.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d812a3d2-dbd0-49a3-bac4-81ba40f7b6fc 2023-09-19 2023-09-19 08:10:07.253352+00 {} \\x0a00c020 \\x0a00c020 32 fb0e845d-5cd1-4e23-8021-69d3b84b8a9c ip-10-0-192-32.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +4922c5d8-801c-404e-8f80-cfa6912b870b 2023-09-19 2023-09-19 08:10:07.254553+00 {} \\x0a00c021 \\x0a00c021 32 babf2eca-c221-4feb-a649-b469302fbf0b ip-10-0-192-33.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +89d723d5-9ade-425d-af04-0332648dbada 2023-09-19 2023-09-19 08:10:07.335176+00 {} \\x0a00c022 \\x0a00c022 32 80a51250-4175-49a6-984e-276be502fdb5 ip-10-0-192-34.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +34eba86d-70cd-4ae8-872a-2d7d03438cfb 2023-09-19 2023-09-19 08:10:07.336494+00 {} \\x0a00c023 \\x0a00c023 32 f96de7a0-c907-4600-8ef6-fbacdbfce491 ip-10-0-192-35.p2p.atl01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +8f22c78d-3f82-43d8-beb5-fba7273025c0 2023-09-19 2023-09-19 08:10:07.947152+00 {} \\x0a018001 \\x0a018001 32 2935841e-4484-4099-b12a-d883cff33fb2 edge-01.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +68458e69-78e8-4bf0-ad80-ea994ce47ba0 2023-09-19 2023-09-19 08:10:08.541123+00 {} \\x0a018002 \\x0a018002 32 b458dc77-7839-47b2-9676-1d230f796898 edge-02.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +e112232c-fd9e-4ada-b2d4-77a315cd7669 2023-09-19 2023-09-19 08:10:09.001371+00 {} \\x0a018003 \\x0a018003 32 875e4604-e654-4d8a-ad93-3d91711c6457 leaf-01.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6bbc77ee-0d2d-4c3f-998b-5d56e095ace2 2023-09-19 2023-09-19 08:10:09.407887+00 {} \\x0a010000 \\x0a010000 32 73500d0e-757e-4eb4-bca9-a1b9cfa39a92 ip-10-1-0-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +35d1aa57-99cd-44f4-b26a-c504276c5582 2023-09-19 2023-09-19 08:10:09.437309+00 {} \\x0a014000 \\x0a014000 32 9cfac371-0728-4687-ac2c-b42e912db505 ip-10-1-64-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +8f5eeac4-47bf-4617-b754-af32b9196014 2023-09-19 2023-09-19 08:10:09.629982+00 {} \\x0a018004 \\x0a018004 32 69a9155f-9056-408e-935e-2a754f29a205 leaf-02.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +b5e1697f-5ec6-42d4-a38d-8fe48dbb1fca 2023-09-19 2023-09-19 08:10:10.025952+00 {} \\x0a010100 \\x0a010100 32 a68b36b7-7fe0-43f3-ae82-839133cb1c11 ip-10-1-1-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7403c62d-9395-4809-97ba-6d83fe4c1fd0 2023-09-19 2023-09-19 08:10:10.071505+00 {} \\x0a014100 \\x0a014100 32 61200cb9-4129-4be9-b76b-eda9a10c9b22 ip-10-1-65-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6de276b4-b572-4a6b-b314-546b0ce1def1 2023-09-19 2023-09-19 08:10:10.286737+00 {} \\x0a018005 \\x0a018005 32 ba1881c7-5b73-402d-b94e-264a6061b8af leaf-03.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +3264a530-a68b-4f0e-bef9-8bcb78436f8e 2023-09-19 2023-09-19 08:10:10.74135+00 {} \\x0a010200 \\x0a010200 32 936a51da-0da9-49dd-8526-460ed0c94c0b ip-10-1-2-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0e262880-ad95-4576-afa2-c9437d27c0b1 2023-09-19 2023-09-19 08:10:10.769693+00 {} \\x0a014200 \\x0a014200 32 c95d5401-d9cd-4d13-aeb4-672bac738de4 ip-10-1-66-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +173c0d97-7df8-4b1a-8bd2-ddcb22d11f06 2023-09-19 2023-09-19 08:10:10.96251+00 {} \\x0a018006 \\x0a018006 32 0efc260c-fbc9-4a34-b319-60f93eefaca9 leaf-04.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +a593ff59-b385-452d-8139-4642eb733bd3 2023-09-19 2023-09-19 08:10:11.360837+00 {} \\x0a010300 \\x0a010300 32 3376ad08-e54a-432e-aa20-b1996dd348ea ip-10-1-3-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +a7713dde-fd08-40fc-a4ef-af44254fde52 2023-09-19 2023-09-19 08:10:11.389919+00 {} \\x0a014300 \\x0a014300 32 56b661f2-2198-40d7-91f4-2f33c683c6a8 ip-10-1-67-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ff0fa780-be2b-46cf-9e68-d9f8411e8526 2023-09-19 2023-09-19 08:10:11.584289+00 {} \\x0a018007 \\x0a018007 32 9c3a26c2-c74f-4062-9d88-4a7f894f6488 leaf-05.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +772bef46-f881-4011-95c2-8ad3680dcf30 2023-09-19 2023-09-19 08:10:11.988778+00 {} \\x0a010400 \\x0a010400 32 56c445f6-ee6e-46b2-ae63-49bff0652000 ip-10-1-4-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +cdabd34c-736d-4baa-ad30-458c7c7edf41 2023-09-19 2023-09-19 08:10:12.016607+00 {} \\x0a014400 \\x0a014400 32 f2ecb108-b061-4d18-9917-9c8b0f3f77ae ip-10-1-68-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +4dcce844-fc38-48cc-9727-9bf7fb0e197d 2023-09-19 2023-09-19 08:10:12.379173+00 {} \\x0a018008 \\x0a018008 32 8e8fdd38-b7af-4277-8dfd-e470c0b5fe16 leaf-06.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +12da808a-5d06-429c-97cc-5b15b7ba32ae 2023-09-19 2023-09-19 08:10:12.780211+00 {} \\x0a010500 \\x0a010500 32 4a6053e3-85aa-4f34-9d08-acaa7c8dd4c2 ip-10-1-5-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c65bb050-e20d-4377-91ea-64022ca442a4 2023-09-19 2023-09-19 08:10:12.80807+00 {} \\x0a014500 \\x0a014500 32 8b9c178c-d7ae-420b-a38d-bc862ea89050 ip-10-1-69-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +aa93b8c4-6278-4752-9039-a4822ba10574 2023-09-19 2023-09-19 08:10:13.002344+00 {} \\x0a018009 \\x0a018009 32 2405c89b-d65b-4734-bf8d-5adfe6569c86 leaf-07.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +dd68c1ce-7d9a-4dba-9a08-e6ac4f7f23b4 2023-09-19 2023-09-19 08:10:13.40551+00 {} \\x0a010600 \\x0a010600 32 721f6b9b-41f3-45f9-8305-d4241296cab3 ip-10-1-6-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d3505dff-f316-44f8-8c42-e4e5925d3790 2023-09-19 2023-09-19 08:10:13.433439+00 {} \\x0a014600 \\x0a014600 32 1f4ed9ca-07c3-42de-b44a-61d5364f4a0f ip-10-1-70-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +82f1f156-351e-4485-84b1-8276f3853a72 2023-09-19 2023-09-19 08:10:13.627547+00 {} \\x0a01800a \\x0a01800a 32 03a3c582-b01a-4aa3-80e2-7d2bb9cb913b leaf-08.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +3760857b-f8fa-473a-8d99-5ff7ce9d4c03 2023-09-19 2023-09-19 08:10:36.894316+00 {} \\x0a000a04 \\x0a000a04 32 af39599b-230f-4593-a608-8c9bef3d3218 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +89987ac4-62dc-4363-8bc5-aa7fbb8d1a4d 2023-09-19 2023-09-19 08:10:14.030087+00 {} \\x0a010700 \\x0a010700 32 af94e4c3-a287-402b-9a66-5cac08e17e4f ip-10-1-7-0.server.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +cac61f5b-1c91-4c76-a164-35003d0c8357 2023-09-19 2023-09-19 08:10:14.059258+00 {} \\x0a014700 \\x0a014700 32 0a7ecad3-5772-4f99-beff-4ad0df51894e ip-10-1-71-0.mgmt.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +082b918b-3481-4aeb-a4ea-f047d41b1581 2023-09-19 2023-09-19 08:10:14.242106+00 {} \\x0a01c000 \\x0a01c000 32 06d20bba-949b-4273-9463-01dba8f644cf ip-10-1-192-0.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +71f68f20-18ad-4f9d-8012-4fd630745941 2023-09-19 2023-09-19 08:10:14.243398+00 {} \\x0a01c001 \\x0a01c001 32 1c95cc4d-eab8-4041-985c-77614056005a ip-10-1-192-1.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ac36e020-d5da-41cf-b8aa-3c1b3cab3423 2023-09-19 2023-09-19 08:10:14.323873+00 {} \\x0a01c002 \\x0a01c002 32 d758f08c-2994-4638-b0b4-41099f599981 ip-10-1-192-2.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +617ea30a-ce9b-41f1-8772-9214a83c47ff 2023-09-19 2023-09-19 08:10:14.325111+00 {} \\x0a01c003 \\x0a01c003 32 af41be32-c31e-4550-862a-2e80956ca407 ip-10-1-192-3.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +2442302c-0ba8-42db-8bd8-8c2094f44a05 2023-09-19 2023-09-19 08:10:14.41222+00 {} \\x0a01c004 \\x0a01c004 32 0fd015fb-4384-4e98-a83d-700c601678da ip-10-1-192-4.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +56877495-c3d9-4ee2-88c2-24dc56779a93 2023-09-19 2023-09-19 08:10:14.413523+00 {} \\x0a01c005 \\x0a01c005 32 99f4be16-7595-47c3-b701-c4d3222418e4 ip-10-1-192-5.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +881bf01e-6b45-4a97-b588-90730ae15e8e 2023-09-19 2023-09-19 08:10:14.508394+00 {} \\x0a01c006 \\x0a01c006 32 ed0e4858-e34a-4f20-8f18-9257bb4e36e5 ip-10-1-192-6.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +f18276ce-261d-4724-a1c2-e92d9d7d7fab 2023-09-19 2023-09-19 08:10:14.509585+00 {} \\x0a01c007 \\x0a01c007 32 1825310b-6b1f-46e0-a9b1-55c830206d68 ip-10-1-192-7.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d0a8a075-432f-459f-a368-e6f94f81e1e5 2023-09-19 2023-09-19 08:10:14.603179+00 {} \\x0a01c008 \\x0a01c008 32 a275628b-47b8-43c7-9c2a-33c6e49362f6 ip-10-1-192-8.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0b76d432-b05f-4221-a61b-e659c859a011 2023-09-19 2023-09-19 08:10:14.604412+00 {} \\x0a01c009 \\x0a01c009 32 8cc336a6-e575-4c50-8ad4-cbec52ad0526 ip-10-1-192-9.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +03b0ff76-eda2-4121-89d5-07b286e62e7c 2023-09-19 2023-09-19 08:10:14.68455+00 {} \\x0a01c00a \\x0a01c00a 32 1fd56ad1-a795-4302-9b28-ca6655d87956 ip-10-1-192-10.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +344a95a9-67d7-4c90-b092-6e48dd1cc1af 2023-09-19 2023-09-19 08:10:14.685771+00 {} \\x0a01c00b \\x0a01c00b 32 291e676f-26a9-4589-aaeb-a12f3c8a1bba ip-10-1-192-11.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +1d2442b2-2fe0-47b1-a211-1e017c44ae04 2023-09-19 2023-09-19 08:10:14.768886+00 {} \\x0a01c00c \\x0a01c00c 32 6bee7896-71cd-4864-b0f5-0fc5836d4e07 ip-10-1-192-12.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +cc5ad6ab-b5d3-4bc8-a0ed-a87b87f3aa6c 2023-09-19 2023-09-19 08:10:14.770103+00 {} \\x0a01c00d \\x0a01c00d 32 47b26f21-668a-4c86-b37b-54d65373427c ip-10-1-192-13.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +021fab39-9436-49ea-aa0a-591cbd357766 2023-09-19 2023-09-19 08:10:14.850672+00 {} \\x0a01c00e \\x0a01c00e 32 7f1b1ee2-cca8-4ce7-83e7-ddfc1488a932 ip-10-1-192-14.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +71c7c423-dc73-4de1-a169-a4daa6727d40 2023-09-19 2023-09-19 08:10:14.851878+00 {} \\x0a01c00f \\x0a01c00f 32 a14f8127-92c5-41dc-a210-330c36287814 ip-10-1-192-15.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d11291f0-28b7-48a5-b3fc-3b32296d8f3e 2023-09-19 2023-09-19 08:10:14.938404+00 {} \\x0a01c010 \\x0a01c010 32 bca969b1-264d-482a-9986-0e155e2c0d01 ip-10-1-192-16.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +800108f6-03a8-403e-99f7-301574ed30fc 2023-09-19 2023-09-19 08:10:14.939605+00 {} \\x0a01c011 \\x0a01c011 32 50e63731-21ff-4bc1-a900-ed71f1c25b1f ip-10-1-192-17.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +57b329c3-c3aa-47e8-9568-f1a46a6a10ab 2023-09-19 2023-09-19 08:10:15.018328+00 {} \\x0a01c012 \\x0a01c012 32 0ea49852-bcf2-4221-9413-9587b2f501e8 ip-10-1-192-18.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0fe09ad9-2b50-4c93-9088-95f1715830a8 2023-09-19 2023-09-19 08:10:15.019532+00 {} \\x0a01c013 \\x0a01c013 32 7c98085d-64fc-4353-af04-7502363414cd ip-10-1-192-19.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +5355a8bf-7539-474e-997c-b22304b1fb22 2023-09-19 2023-09-19 08:10:15.100247+00 {} \\x0a01c014 \\x0a01c014 32 658a8717-44a3-4770-ad5a-0aa3a1e9edcb ip-10-1-192-20.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6a9c7c65-3f32-4092-869d-77189d182cb6 2023-09-19 2023-09-19 08:10:15.101419+00 {} \\x0a01c015 \\x0a01c015 32 4e7e06ba-0a67-40db-a13a-b7a1d0ff429d ip-10-1-192-21.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +bacf1551-72be-474a-9482-b64aff09f645 2023-09-19 2023-09-19 08:10:15.192649+00 {} \\x0a01c016 \\x0a01c016 32 a88d0ca0-81d6-4c64-838c-83668983f923 ip-10-1-192-22.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +99be25c5-47c5-4fa2-8891-a7b51d542487 2023-09-19 2023-09-19 08:10:15.194141+00 {} \\x0a01c017 \\x0a01c017 32 893bac86-8f1b-4539-ad0d-f135002a1547 ip-10-1-192-23.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0433afc4-3aa1-4c51-bd10-1c8423345345 2023-09-19 2023-09-19 08:10:15.29401+00 {} \\x0a01c018 \\x0a01c018 32 d8dff6c9-6185-4d8b-8327-a99ce574b62f ip-10-1-192-24.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +f7fe1658-c806-4dca-928f-fb2c65a1e8df 2023-09-19 2023-09-19 08:10:15.295205+00 {} \\x0a01c019 \\x0a01c019 32 16a2a324-4396-4672-aeef-29f47c359a60 ip-10-1-192-25.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +02d15af7-288d-4709-a675-88a712259d14 2023-09-19 2023-09-19 08:10:15.377749+00 {} \\x0a01c01a \\x0a01c01a 32 72c992f5-62da-489d-abee-c14f62f52097 ip-10-1-192-26.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +9590b80f-f27f-4af2-b476-e23e1ffe8ae9 2023-09-19 2023-09-19 08:10:15.378972+00 {} \\x0a01c01b \\x0a01c01b 32 b8de16c3-d047-4665-9c47-4620be7b187c ip-10-1-192-27.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +09cfb662-b6c2-49a5-899a-72772ebfd486 2023-09-19 2023-09-19 08:10:15.473046+00 {} \\x0a01c01c \\x0a01c01c 32 1912fee0-5a5b-4f49-ba2a-7fa99715976d ip-10-1-192-28.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ec3e1752-858a-462b-b91b-05c287681655 2023-09-19 2023-09-19 08:10:15.474609+00 {} \\x0a01c01d \\x0a01c01d 32 91a64db3-f588-4ccd-aa3e-94159e16d098 ip-10-1-192-29.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0f62fa1d-eeea-4ae7-8199-ca1e8984dac4 2023-09-19 2023-09-19 08:10:15.558013+00 {} \\x0a01c01e \\x0a01c01e 32 b177c282-969a-409d-ba36-2d6594e21550 ip-10-1-192-30.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +202f8d5b-1162-4b6c-b651-8d65dc4937f4 2023-09-19 2023-09-19 08:10:15.559302+00 {} \\x0a01c01f \\x0a01c01f 32 e250cb5b-4a82-4dbb-8e9e-18ab8798cfec ip-10-1-192-31.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +9b56d37f-69b3-4520-a8ed-886469e800e2 2023-09-19 2023-09-19 08:10:15.644616+00 {} \\x0a01c020 \\x0a01c020 32 ce01a4bd-4ea9-4f29-af12-9270857547f6 ip-10-1-192-32.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +5c555394-262f-4414-a943-ecb6c083884d 2023-09-19 2023-09-19 08:10:15.645883+00 {} \\x0a01c021 \\x0a01c021 32 146e02be-a8b6-488a-a197-9f197ecb100c ip-10-1-192-33.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +5876d8b8-7049-471e-b847-7725d577f707 2023-09-19 2023-09-19 08:10:15.726463+00 {} \\x0a01c022 \\x0a01c022 32 7b9a34be-0f8e-4a42-a9f2-925cc836a623 ip-10-1-192-34.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6d58a1ff-8598-4d45-87e3-bed60592ef9e 2023-09-19 2023-09-19 08:10:15.727644+00 {} \\x0a01c023 \\x0a01c023 32 f6f159b2-79c8-4091-9573-35a6f9b4754c ip-10-1-192-35.p2p.pek01.atc.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +08438ad8-772b-4701-b495-8b7fc4963f92 2023-09-19 2023-09-19 08:10:24.074488+00 {} \\x0a028001 \\x0a028001 32 8fe49e10-a6ec-43ab-be44-ee89672e0e2f edge-01.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +a9049632-eb83-47e1-8306-7bebce7d55c4 2023-09-19 2023-09-19 08:10:24.611954+00 {} \\x0a028002 \\x0a028002 32 b3e7e0a9-ccd2-4b10-8dfa-ab863a059383 edge-02.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +e3ea3e10-5ccb-41f4-a6fe-add08f51c6b2 2023-09-19 2023-09-19 08:10:25.03713+00 {} \\x0a028003 \\x0a028003 32 3dd0ab27-5cfd-4a3e-aad3-016b4748df5e leaf-01.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +66c14447-c955-4d43-bfe9-968bab687324 2023-09-19 2023-09-19 08:10:25.42063+00 {} \\x0a020000 \\x0a020000 32 6b68385c-3170-4a02-a9c8-835c72deeba9 ip-10-2-0-0.server.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +4138f35e-7e51-4741-bd93-e7eccac885e5 2023-09-19 2023-09-19 08:10:25.47569+00 {} \\x0a024000 \\x0a024000 32 fb146dfb-2a8f-4991-a07f-a009648ac7a0 ip-10-2-64-0.mgmt.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +56886de2-c2cb-4ae0-98ee-b0776d2039a3 2023-09-19 2023-09-19 08:10:25.679048+00 {} \\x0a028004 \\x0a028004 32 61660fb2-6201-48eb-9a85-bc8d6da38e32 leaf-02.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +e5f78180-cbbe-40ea-b1ff-413e7d60a31e 2023-09-19 2023-09-19 08:10:26.04112+00 {} \\x0a020100 \\x0a020100 32 23dde101-c853-4e47-93a9-64f23ff80c27 ip-10-2-1-0.server.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +020382de-ffae-4198-9fa4-7096ef0bdbfe 2023-09-19 2023-09-19 08:10:26.068122+00 {} \\x0a024100 \\x0a024100 32 c69e4208-2ae7-48fe-9f38-da57b8fd8fd7 ip-10-2-65-0.mgmt.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +9d29c356-1fa7-4cb9-b996-4908fa8a76be 2023-09-19 2023-09-19 08:10:26.250465+00 {} \\x0a028005 \\x0a028005 32 2de82db3-727d-4f38-886b-e68c98a877c6 leaf-03.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +4e64fe30-839a-4f37-bc7b-ce64db272ad7 2023-09-19 2023-09-19 08:10:26.629506+00 {} \\x0a020200 \\x0a020200 32 a63d171b-f494-47be-b807-b536ca1e2e83 ip-10-2-2-0.server.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +eed9a5e1-eea2-4055-90ed-2dec2cfbd710 2023-09-19 2023-09-19 08:10:26.657998+00 {} \\x0a024200 \\x0a024200 32 f2cbef78-3bf9-495d-8617-1cdbdcd0dc8c ip-10-2-66-0.mgmt.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +1b7932ae-63ed-4c02-b25a-8ba3b965e3c5 2023-09-19 2023-09-19 08:10:26.840201+00 {} \\x0a028006 \\x0a028006 32 f73916f6-cac7-435f-b003-e4059597abe3 leaf-04.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +dcd43a02-ef8f-430d-8e58-e42771b572f0 2023-09-19 2023-09-19 08:10:27.219297+00 {} \\x0a020300 \\x0a020300 32 18e343cb-7433-4c6e-bc93-fad6a17d09c3 ip-10-2-3-0.server.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +a4cb31be-04ad-4167-9d58-451cd95a6e60 2023-09-19 2023-09-19 08:10:27.245127+00 {} \\x0a024300 \\x0a024300 32 896458b3-532e-41cd-8d34-d3a3b1f4a065 ip-10-2-67-0.mgmt.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +8f277cba-4a60-4fd9-a224-156a3ad08cdb 2023-09-19 2023-09-19 08:10:27.437478+00 {} \\x0a02c000 \\x0a02c000 32 db739229-5dcd-4d05-94f5-52bd234647b9 ip-10-2-192-0.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +4fe4d48d-3e69-40a1-988b-bafc18962d91 2023-09-19 2023-09-19 08:10:27.43862+00 {} \\x0a02c001 \\x0a02c001 32 a1e88275-4a5c-4b89-8017-4ad695ff14f8 ip-10-2-192-1.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +68c30769-a561-4358-9640-d1a38b1dc6f1 2023-09-19 2023-09-19 08:10:27.51765+00 {} \\x0a02c002 \\x0a02c002 32 2aa91dab-b223-48ff-96de-03e1a71ffa56 ip-10-2-192-2.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +7ad73981-4327-4955-a101-84dcad293037 2023-09-19 2023-09-19 08:10:27.51889+00 {} \\x0a02c003 \\x0a02c003 32 24d7e176-9284-4e90-ae96-383a2133cb1c ip-10-2-192-3.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +81ae5404-5262-4a5e-94e2-3ad681202429 2023-09-19 2023-09-19 08:10:27.60348+00 {} \\x0a02c004 \\x0a02c004 32 aec8c705-f321-4d0c-9a66-29ca6e23995b ip-10-2-192-4.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +4a50f40e-5d87-47c3-ac65-25e768785834 2023-09-19 2023-09-19 08:10:27.605183+00 {} \\x0a02c005 \\x0a02c005 32 2829d904-99cf-4100-9b89-ca40bdafd284 ip-10-2-192-5.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +49e41970-05b2-4a51-9f4b-e05fc0749ada 2023-09-19 2023-09-19 08:10:27.689597+00 {} \\x0a02c006 \\x0a02c006 32 b572e507-1492-4722-be8a-d1668ff1011c ip-10-2-192-6.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +37184b25-5c3e-41da-8078-47060ddea496 2023-09-19 2023-09-19 08:10:27.690968+00 {} \\x0a02c007 \\x0a02c007 32 269811e4-2d04-4396-8eab-3bffb1556a60 ip-10-2-192-7.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +d62cf34c-f273-4dd8-8d60-fb18b0af808c 2023-09-19 2023-09-19 08:10:27.774324+00 {} \\x0a02c008 \\x0a02c008 32 8cd7bfcf-9a6f-4605-843a-418736ad7c5e ip-10-2-192-8.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +1335b79a-0397-4bbe-8ddb-b152ff101baf 2023-09-19 2023-09-19 08:10:27.775466+00 {} \\x0a02c009 \\x0a02c009 32 06b11a10-9918-4d96-9194-ccc202f9aa5d ip-10-2-192-9.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +b9d10a6a-69e3-4fb2-bfcb-5d4271f4f47a 2023-09-19 2023-09-19 08:10:27.851078+00 {} \\x0a02c00a \\x0a02c00a 32 d9f730a2-ce98-4c34-9db9-56be5abba079 ip-10-2-192-10.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +b26d1d0b-6acb-40f9-b5e6-cd54bdf1b892 2023-09-19 2023-09-19 08:10:27.85238+00 {} \\x0a02c00b \\x0a02c00b 32 a6d24885-2024-48ca-ba60-727802474b2d ip-10-2-192-11.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +2b38df36-668b-4d17-9095-525234091114 2023-09-19 2023-09-19 08:10:27.930274+00 {} \\x0a02c00c \\x0a02c00c 32 2e43df0e-86aa-498b-bf73-e22af4baa0f0 ip-10-2-192-12.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +0f61a74b-9369-4a2a-a2f9-88b7a3781a51 2023-09-19 2023-09-19 08:10:27.931588+00 {} \\x0a02c00d \\x0a02c00d 32 6f96fac1-0bbc-4544-9292-fb437ed9e73e ip-10-2-192-13.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +37018938-b5b3-49ef-aa22-18879bda022b 2023-09-19 2023-09-19 08:10:28.005436+00 {} \\x0a02c00e \\x0a02c00e 32 be42d85a-b6b5-4126-b6e2-dfcd99117a31 ip-10-2-192-14.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +bbc6ca55-9cca-4b8b-9353-9d5bcc0d57ea 2023-09-19 2023-09-19 08:10:28.006916+00 {} \\x0a02c00f \\x0a02c00f 32 93913062-d728-494d-b5bf-61f55e4302c0 ip-10-2-192-15.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +269d9af0-b682-4d83-8afc-14bb1c143cdb 2023-09-19 2023-09-19 08:10:28.083568+00 {} \\x0a02c010 \\x0a02c010 32 571a071c-a01c-4ba8-b749-415d9c95665b ip-10-2-192-16.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +8784cd07-fd04-4b75-921c-7bb50b396a35 2023-09-19 2023-09-19 08:10:28.08477+00 {} \\x0a02c011 \\x0a02c011 32 6ee18771-590a-4da9-8e06-f42a0c1346ea ip-10-2-192-17.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +03e3857c-ca7d-4854-9cb3-b0f335959ffd 2023-09-19 2023-09-19 08:10:28.159363+00 {} \\x0a02c012 \\x0a02c012 32 aa11d7f2-7d54-41c5-8693-69d32ef6e5b0 ip-10-2-192-18.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +98ed9c4a-5085-429f-8dfb-eced594ff6b9 2023-09-19 2023-09-19 08:10:28.160623+00 {} \\x0a02c013 \\x0a02c013 32 9188b1c9-d827-437d-ac75-59561877b64c ip-10-2-192-19.p2p.bre01.mlb.nautobot.com 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +0108d90e-7042-43e4-80ae-f4a1ef435a59 2023-09-19 2023-09-19 08:10:36.090312+00 {} \\x0a0a0006 \\x0a0a0007 30 e0d150e4-dbb6-4414-aa1d-f9f9fadecb1e 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +3695ad6d-2481-4eb1-939e-b194edb54ecc 2023-09-19 2023-09-19 08:10:36.107839+00 {} \\x0a0a000e \\x0a0a000f 30 77173f36-7b17-4914-882c-5f8b66e6b6a7 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +5b0cbdf6-ed49-4ed5-9982-6195525d62b8 2023-09-19 2023-09-19 08:10:36.124891+00 {} \\x0a0a0011 \\x0a0a0013 30 6b8ad446-36ca-4d35-b290-d21e2f0c760b 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +75efc019-141e-4ca2-8bca-9c3cb983ddd5 2023-09-19 2023-09-19 08:10:36.150432+00 {} \\x0a000a03 \\x0a000a03 32 89bff223-7fe0-42cb-ac61-fb88ff877f3f 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +cddc175a-9196-4004-b3e9-e8e8f78dd292 2023-09-19 2023-09-19 08:10:36.240259+00 {} \\x0a0a0005 \\x0a0a0007 30 79a58def-4c93-43ce-b021-cfb07171f3ac 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +2de985bb-a079-4062-bf44-3069ee37869a 2023-09-19 2023-09-19 08:10:36.260534+00 {} \\x0a0a0009 \\x0a0a000b 30 84f95280-f48f-46e2-b348-d9b31c087f8c 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +763ff507-37ac-4c35-95a4-f259ddc211c2 2023-09-19 2023-09-19 08:10:36.279135+00 {} \\x0a0a0b05 \\x0a0a0b07 30 d860a3b4-5224-420b-8797-0dde34bd2eea 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +ca17c2c0-9238-45bb-b68f-4205a007fea1 2023-09-19 2023-09-19 08:10:36.303989+00 {} \\x0a000a01 \\x0a000a01 32 703525fd-50d6-4326-8965-cc1640237ea7 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +eab2334b-5f37-473b-80c6-3ae669a13eae 2023-09-19 2023-09-19 08:10:36.390247+00 {} \\x0a0a000d \\x0a0a000f 30 114e1107-cad6-49a4-90f8-64510c3d2fb3 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +6f840727-3f57-45bd-8def-0539eb35df38 2023-09-19 2023-09-19 08:10:36.407303+00 {} \\x0a0a000a \\x0a0a000b 30 e51dbb12-9e60-4c4c-adc4-60d9b1bf7cee 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +4a14b81f-d9ed-47a7-b376-a34e62d45d7f 2023-09-19 2023-09-19 08:10:36.424299+00 {} \\x0a0a0b09 \\x0a0a0b0b 30 1142060d-5488-460e-87dc-c1fbc14126b1 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +02dc9eaa-0188-4b4b-95fe-692b2901cd3d 2023-09-19 2023-09-19 08:10:36.447278+00 {} \\x0a000a02 \\x0a000a02 32 2ef35e38-b666-49fd-a0a9-768c1346a5ab 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +7d6190e5-dc82-4fb4-8c8b-44a6fc524854 2023-09-19 2023-09-19 08:10:36.713025+00 {} \\x0a0a0a05 \\x0a0a0a07 30 c12205bc-0d17-4d6a-849c-1229fc0dc1f5 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +6b18bb45-793c-4fd3-af1b-7af9ec2cc308 2023-09-19 2023-09-19 08:10:36.742044+00 {} \\x0a0a0a09 \\x0a0a0a0b 30 517037e4-24f6-489c-ac66-0d1ee6cd80d4 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +998493d2-e8c6-409d-8ddf-2ae7b002c08f 2023-09-19 2023-09-19 08:10:36.761096+00 {} \\x0a0a0a0d \\x0a0a0a0f 30 ab9f7e9b-3693-4094-8bea-1e5696ce24b3 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +15298206-7ae0-401f-b42d-1664e395b126 2023-09-19 2023-09-19 08:10:36.779788+00 {} \\x0a0a0a11 \\x0a0a0a13 30 3166b8f9-3e49-440a-83a9-4fefbf9625c7 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +33ca873d-cc88-4ba7-ad60-d2aa4ed7b6c4 2023-09-19 2023-09-19 08:10:36.798601+00 {} \\x0a0a0b06 \\x0a0a0b07 30 229d6f26-00cb-4804-b2bc-3c40ea130d75 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +a8673a9a-cbae-476a-a67b-7eb36f14c6f4 2023-09-19 2023-09-19 08:10:37.154685+00 {} \\x0a0a0a06 \\x0a0a0a07 30 a6fea30f-2e31-4a7d-b682-ea677d622049 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +8750d9cf-1258-4cbd-b915-736e8c1840f5 2023-09-19 2023-09-19 08:10:37.173669+00 {} \\x0a0a0a0a \\x0a0a0a0b 30 88ea6b24-e63d-4b89-9303-84630ff66d3c 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +ba398963-cf2a-4e6a-b68a-7ad214de9cea 2023-09-19 2023-09-19 08:10:37.192458+00 {} \\x0a0a0a0e \\x0a0a0a0f 30 10bae2f5-a05b-4841-85b9-861e625a6d94 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +cf4c7c84-e06b-4b59-b30a-b44ab109cc50 2023-09-19 2023-09-19 08:10:37.211328+00 {} \\x0a0a0a12 \\x0a0a0a13 30 d8f23dbd-968f-4d0f-b6cf-1b6e01f35e55 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +eff0194c-264d-4ba4-9449-5480b48d5375 2023-09-19 2023-09-19 08:10:37.230418+00 {} \\x0a0a0b0a \\x0a0a0b0b 30 991b9031-d92e-49d1-8189-cee52fa067a4 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +1f623165-a73a-43b1-b4fb-9146ae7dd909 2023-09-19 2023-09-19 08:10:37.368852+00 {} \\x0a000a05 \\x0a000a05 32 ce5a825e-8eeb-4578-97ba-567789f55b07 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +d6969ab7-eb9b-42b9-9f24-a37ee954d872 2023-09-19 2023-09-19 08:10:37.503805+00 {} \\x0a0a0016 \\x0a0a0017 30 5908461e-4480-4d43-bde7-9b1777584f5d 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +2cc9670e-2132-4de7-9dc6-682ab6350d0c 2023-09-19 2023-09-19 08:10:37.523739+00 {} \\x0a0a001e \\x0a0a001f 30 b4ccac56-b9e1-4574-a4fe-0d1bf75698c5 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +8719fc1e-6016-469c-9739-a8853dbbea85 2023-09-19 2023-09-19 08:10:37.542503+00 {} \\x0a0a0012 \\x0a0a0013 30 9ee067f2-f3c9-4eb2-aab0-30c6c39b3ff0 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +c4bd7bee-94c5-45e8-bd65-a81c6f43210c 2023-09-19 2023-09-19 08:10:37.58464+00 {} \\x0a001403 \\x0a001403 32 0b7b58e9-e4ae-464d-98cd-c6b84cb1900c 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +e6196ef4-8d56-4d12-9ee9-79a5da88f9c4 2023-09-19 2023-09-19 08:10:37.722803+00 {} \\x0a0b0b0e \\x0a0b0b0f 30 c60ff405-f8f1-4b95-9c0b-f157e1c659b5 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +573da6ef-14ce-4556-adb9-08c5ddd41e56 2023-09-19 2023-09-19 08:10:37.751451+00 {} \\x0a0b0b16 \\x0a0b0b17 30 b5f22608-97ba-42ad-8a43-93cc0912cc87 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +f811b75b-12d1-4dfa-875d-5aa8919f977c 2023-09-19 2023-09-19 08:10:37.792568+00 {} \\x0a001406 \\x0a001406 32 c096eed3-4748-4e8a-abce-02684a2e3ef2 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +ee4c08af-9397-4341-8fed-2ebff720b9c6 2023-09-19 2023-09-19 08:10:37.915507+00 {} \\x0a0b0b12 \\x0a0b0b13 30 c425ea6a-27ff-4fb7-bffc-41ba6e7fc770 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +4bbda036-0646-4faa-a1b4-e9cfea03eaea 2023-09-19 2023-09-19 08:10:37.934012+00 {} \\x0a0b0b1a \\x0a0b0b1b 30 e504f8d0-08ba-4d9b-9ee5-762ffb9aea51 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +ba3a052d-4f3f-4775-9abe-d3f4e77378ae 2023-09-19 2023-09-19 08:10:37.975085+00 {} \\x0a001407 \\x0a001407 32 4c1d70c1-80d0-4ce8-9b45-b985fce4aff2 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +b65044bd-7d9a-4649-b869-f868ec402632 2023-09-19 2023-09-19 08:10:38.098795+00 {} \\x0a0a0015 \\x0a0a0017 30 17950897-4131-4efa-9a43-ea97f75fe2a5 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +5282719b-7460-4501-b18b-e406cf79a082 2023-09-19 2023-09-19 08:10:38.117375+00 {} \\x0a0a0019 \\x0a0a001b 30 6ea6d11f-1d2a-45a2-9cd1-40a43afc6efa 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +05d86f38-3f88-4b04-aba2-cabfbdc57695 2023-09-19 2023-09-19 08:10:38.150671+00 {} \\x0a0b0b05 \\x0a0b0b07 30 a02b21d1-4e1a-448f-9292-255de05644c1 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +f8cf4c63-cb84-4105-82ee-a6269793d3c2 2023-09-19 2023-09-19 08:10:38.210062+00 {} \\x0a001401 \\x0a001401 32 e5829593-3de9-4bed-b4d7-1885e116beea 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +0bcc2877-cdbf-4984-ba4f-69c460f2a306 2023-09-19 2023-09-19 08:10:38.333974+00 {} \\x0a0a001a \\x0a0a001b 30 f9d892b5-2c42-420d-882a-39bbf8205dff 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +824a3a46-9fee-4d97-967a-c15c90260fd2 2023-09-19 2023-09-19 08:10:38.352316+00 {} \\x0a0a001d \\x0a0a001f 30 0bf737da-80af-438c-add6-12914a8d6889 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +2ba4ff48-99e1-4f68-8c61-10f6faaf8f19 2023-09-19 2023-09-19 08:10:38.370789+00 {} \\x0a0b0b09 \\x0a0b0b0b 30 80bbc8c8-7408-4ac4-9a68-2a9b17be4e23 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +9f0f49d7-0fe5-46b9-b4c2-22d0a5077e4c 2023-09-19 2023-09-19 08:10:38.412821+00 {} \\x0a001402 \\x0a001402 32 7b5da967-926d-4a1f-a28f-7a0787f9a3c6 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +0b75c1e4-6642-4ee7-9f05-e63db8313462 2023-09-19 2023-09-19 08:10:38.536439+00 {} \\x0a0b0b06 \\x0a0b0b07 30 350f4cfe-1a31-473d-be9f-2950de48ce82 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +490229b5-0bf3-4631-b143-24f4869a7127 2023-09-19 2023-09-19 08:10:38.572915+00 {} \\x0a0b0b0d \\x0a0b0b0f 30 9892d575-8d82-4d82-91e0-02b958d125e7 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +541ace8d-a47a-4feb-93d7-c215c8de8ac8 2023-09-19 2023-09-19 08:10:38.591722+00 {} \\x0a0b0b11 \\x0a0b0b13 30 7e577d0b-d751-4d2c-9262-15ebb00ea960 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +f59eb92d-3eeb-42fd-aae1-b658195191aa 2023-09-19 2023-09-19 08:10:38.63232+00 {} \\x0a001404 \\x0a001404 32 5fbf4780-3b17-42ad-8073-599fd7ecb159 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +f8dc9f66-64c4-4e4e-b4aa-91b2611ae61d 2023-09-19 2023-09-19 08:10:38.769122+00 {} \\x0a0b0b0a \\x0a0b0b0b 30 f697b84b-5d6e-45a5-985f-d6acad3ccdb1 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +83861819-e2e2-4ab4-8d37-e86c3c7e865f 2023-09-19 2023-09-19 08:10:38.78777+00 {} \\x0a0b0b15 \\x0a0b0b17 30 e1d27cd6-5924-45a5-b5b4-6c90e24e6fc5 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +ed24228b-3a8d-4ac8-96e5-ee8a3b14c433 2023-09-19 2023-09-19 08:10:38.825835+00 {} \\x0a0b0b19 \\x0a0b0b1b 30 d6683aa3-cc33-43e7-b64e-47f6bc0b45d9 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +da2027b8-0dc9-4557-8d60-0ec8225916db 2023-09-19 2023-09-19 08:10:38.939567+00 {} \\x0a001405 \\x0a001405 32 8724bf12-4996-43af-8587-9757aa4d2ce9 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +3e0e6ef6-fa3f-47f2-99c8-0170fc009950 2023-09-19 2023-09-19 08:10:48.883056+00 {} \\x44aa93b0 \\x44aa93b0 32 5172a52c-e37e-4f4f-b40b-032e9b746c01 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +42664a85-b5d1-4da8-a3da-f22709bbbee3 2023-09-19 2023-09-19 08:10:49.194934+00 {} \\x44aa93a8 \\x44aa93a8 32 811a298c-0822-423a-8988-94ff0b0c83bb 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +82dedfba-973b-440e-bdd5-2b0d83166dce 2023-09-19 2023-09-19 08:10:49.499644+00 {} \\x44aa93a9 \\x44aa93a9 32 5c311ce2-f45d-4a0c-b08d-d44acb3cb841 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 422496ff-a2a1-46d7-b4df-71e43eff32cf \N +2fb5f801-cd1a-4bc6-ac99-283d4da9d7b4 2023-09-19 2023-09-19 08:11:23.598424+00 {} \\x685e8001 \\x685e8007 29 f75fa9dd-597a-4985-82dc-7dcd428e9ef1 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +64d69c5c-c136-4c16-824b-705fbe1143dd 2023-09-19 2023-09-19 08:11:23.604694+00 {} \\x685e8002 \\x685e8007 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +bcfe63fc-8510-49d6-af6e-11fa85ab7fb7 2023-09-19 2023-09-19 08:11:23.723624+00 {} \\x685e8009 \\x685e800f 29 02783645-57c4-459d-b43d-5b8ccabd8026 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +890eaf56-d9d2-4b0e-8081-08729751bf68 2023-09-19 2023-09-19 08:11:23.729621+00 {} \\x685e800a \\x685e800f 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +ad208bd2-a144-42b4-8ffa-a51acdf7ed6a 2023-09-19 2023-09-19 08:11:23.851291+00 {} \\x685e8011 \\x685e8017 29 5f2654c9-81d2-4862-bab1-ffb897829334 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +8cba037f-267a-4e63-82b7-4523434c4dde 2023-09-19 2023-09-19 08:11:23.857108+00 {} \\x685e8012 \\x685e8017 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +663e4fdc-c987-4de6-9887-a2dd70dd4633 2023-09-19 2023-09-19 08:11:23.978706+00 {} \\x685e8019 \\x685e801f 29 aed29452-c3bf-4a6c-9e9e-de9f83608e88 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +36baf07d-b3d3-43fc-8506-9c8c8b65fc00 2023-09-19 2023-09-19 08:11:23.984668+00 {} \\x685e801a \\x685e801f 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +48dca1d6-421b-4971-b1a6-4d4808cc16ab 2023-09-19 2023-09-19 08:11:24.108266+00 {} \\x685e8021 \\x685e8027 29 305b8153-e80c-42e5-b40b-988dbbacadf6 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +aecec508-9ba0-4428-a027-66b9de261b6f 2023-09-19 2023-09-19 08:11:24.114117+00 {} \\x685e8022 \\x685e8027 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +a6972fcc-ab6a-4c3e-b5e1-ee3a00702d31 2023-09-19 2023-09-19 08:11:24.23478+00 {} \\x685e8029 \\x685e802f 29 14ea3cf8-07a6-4363-a61b-284288cda5c4 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +408ccb4c-5fa4-447f-bcce-2cf3a8d37d82 2023-09-19 2023-09-19 08:11:24.240685+00 {} \\x685e802a \\x685e802f 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +eecd6191-3b40-4634-b013-2eee82ca2b7b 2023-09-19 2023-09-19 08:11:24.363659+00 {} \\x685e8031 \\x685e8037 29 a6a98b4b-5214-4cdd-be68-0f567c56f509 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +0a8a1192-403f-4dba-938c-9ab0ca70f554 2023-09-19 2023-09-19 08:11:24.37007+00 {} \\x685e8032 \\x685e8037 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +fa553809-dd9d-4ccf-b224-79b98ff3040f 2023-09-19 2023-09-19 08:11:24.496394+00 {} \\x685e8039 \\x685e803f 29 db6b2d90-7792-4ad1-b8d7-d84b3dbed0ac 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +f8fdc6d9-d46c-42de-8b08-2cb4b66ba4d2 2023-09-19 2023-09-19 08:11:24.502544+00 {} \\x685e803a \\x685e803f 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +7de1026a-45e2-4abd-83ae-d1a1eecf38bd 2023-09-19 2023-09-19 08:11:24.626773+00 {} \\x685e8041 \\x685e8047 29 4cb24a05-363c-4cba-80d1-8e97bce198d3 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +0199540a-ed73-4caf-b3d3-aaa1f0f4e8ef 2023-09-19 2023-09-19 08:11:24.632734+00 {} \\x685e8042 \\x685e8047 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +8c2f7fb8-87b5-4d8b-8599-ea3f81dfbc89 2023-09-19 2023-09-19 08:11:24.756409+00 {} \\x685e8049 \\x685e804f 29 c8f831c0-f008-45ba-a789-20c2626e6921 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +aa9b226d-4131-4896-ac36-13ed737ac23c 2023-09-19 2023-09-19 08:11:24.762395+00 {} \\x685e804a \\x685e804f 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +0010356c-c28f-4f31-82e7-2e308f2320e4 2023-09-19 2023-09-19 08:11:24.88615+00 {} \\x685e8051 \\x685e8057 29 edbdc7f1-9209-4710-a219-c325d0c918e0 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +91397a07-17d9-4807-b869-05ee2fb7581e 2023-09-19 2023-09-19 08:11:24.891998+00 {} \\x685e8052 \\x685e8057 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +28878ad2-3ae2-4a76-98be-ca2f838d3d93 2023-09-19 2023-09-19 08:11:25.011173+00 {} \\x685e8059 \\x685e805f 29 c682cb76-aff2-4612-ac09-06c9479f51b9 4 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +a35b4139-f5a2-43dd-acbc-08f33091273a 2023-09-19 2023-09-19 08:11:25.017147+00 {} \\x685e805a \\x685e805f 29 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N +c0591240-4887-4de7-ad9d-0895fa20fb8c 2023-09-19 2023-09-19 08:11:39.622252+00 {} \\x0a000001 \\x0a000001 32 \N \N \N \N \N \N +\. + + +-- +-- Data for Name: ipam_prefix; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_prefix (id, created, last_updated, _custom_field_data, network, broadcast, prefix_length, is_pool, description, role_id, site_id, status_id, tenant_id, vlan_id, vrf_id, location_id) FROM stdin; +a97b5140-d25e-4e32-a868-3f9602878e13 2023-09-19 2023-09-19 08:09:56.004907+00 {} \\x0a000000 \\x0affffff 8 f 4db67f22-2dff-428c-a7da-4d2badd13155 \N b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +7bda5d61-94cd-4637-b588-7c033670c9f8 2023-09-19 2023-09-19 08:09:56.378172+00 {} \\x0a000000 \\x0a00ffff 16 f 0468bd04-b398-4402-87c7-e0fdad26fc55 b909f1f1-c702-4adc-80f1-ec5018737592 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +2c4ceb4b-c9db-4f9d-9a28-6d3da22cf0f1 2023-09-19 2023-09-19 08:09:56.383506+00 {} \\x0a000000 \\x0a003fff 18 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +f26b2390-c1af-4f01-ab54-135adf55325f 2023-09-19 2023-09-19 08:09:56.387879+00 {} \\x0a004000 \\x0a007fff 18 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +32b1284e-fd33-44a1-b5dd-4085edd09920 2023-09-19 2023-09-19 08:09:56.392302+00 {} \\x0a008000 \\x0a00bfff 18 f 443fbf6f-9b3e-4ee4-8bea-5abe31547cc9 b909f1f1-c702-4adc-80f1-ec5018737592 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +7370315d-6230-4502-ae0e-88bbd17dce6d 2023-09-19 2023-09-19 08:09:56.396535+00 {} \\x0a00c000 \\x0a00ffff 18 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +731743fe-a80f-4fa9-85ef-9df60ad72050 2023-09-19 2023-09-19 08:09:58.25412+00 {} \\x0a000000 \\x0a0000ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 9dbbd5b1-faf2-41d9-ad1c-e3ac3ec6cb59 \N \N +a7d62ac3-54dc-44bb-9e83-9c429cbbcda8 2023-09-19 2023-09-19 08:09:58.287551+00 {} \\x0a004000 \\x0a0040ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 7b25179a-e097-46f7-bfa1-bbceb024d410 \N \N +ddf7f3f9-ef7a-42ef-af31-8f23344ee8dc 2023-09-19 2023-09-19 08:09:58.892541+00 {} \\x0a000100 \\x0a0001ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 9fee60c6-da36-4e30-be8f-3cda0de26ac2 \N \N +c5d96f0b-cdc6-4d26-a0b7-5ec5dcafa64f 2023-09-19 2023-09-19 08:09:58.920332+00 {} \\x0a004100 \\x0a0041ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 21ae7475-cea5-45e9-ab1b-0849125346fe \N \N +0b77737a-3346-4b7e-a2a7-9cadd01762c7 2023-09-19 2023-09-19 08:09:59.591915+00 {} \\x0a000200 \\x0a0002ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 c3e9927a-d164-45ec-9387-f3a56fe1baf4 \N \N +3bf2a963-b2ff-48b8-acc4-75fca58726a8 2023-09-19 2023-09-19 08:09:59.619452+00 {} \\x0a004200 \\x0a0042ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 6841bd14-85c9-4891-a4a6-847edd84079e \N \N +47ba876b-920d-486f-8c9d-e2d55039279f 2023-09-19 2023-09-19 08:10:00.65488+00 {} \\x0a000300 \\x0a0003ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 d335c59d-b41c-4efd-9e21-a58dc7958d39 \N \N +dddfd559-f559-42c2-a8fe-51c38da6d144 2023-09-19 2023-09-19 08:10:00.702692+00 {} \\x0a004300 \\x0a0043ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 c5c2e1a7-b1c1-4b1c-9536-64f82da33898 \N \N +af97dc2a-3b42-4bc7-aa9a-1af8bd6773f4 2023-09-19 2023-09-19 08:10:01.773177+00 {} \\x0a000400 \\x0a0004ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 47e0d3e2-168b-4313-bfcc-db0a72342cea \N \N +69df9cba-6b0e-403a-8e19-87b723bf8926 2023-09-19 2023-09-19 08:10:01.821384+00 {} \\x0a004400 \\x0a0044ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 744007e1-98eb-4dc9-9c59-53a84dc17120 \N \N +d7b7499b-8282-4a52-964e-f544954c69b0 2023-09-19 2023-09-19 08:10:02.842006+00 {} \\x0a000500 \\x0a0005ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 5d9246e8-9635-41cc-b4c0-5e85a2d32947 \N \N +4ff5d73f-8fa3-422f-b916-cfcb3f1ee680 2023-09-19 2023-09-19 08:10:02.900898+00 {} \\x0a004500 \\x0a0045ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 a207452e-4938-4866-ac47-6c526b9cf35e \N \N +e245a422-e110-4657-a8e7-db165c96e7b2 2023-09-19 2023-09-19 08:10:03.991608+00 {} \\x0a000600 \\x0a0006ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 971b3854-e98f-4168-8fe9-63c34c1f1a95 \N \N +4983b3e9-128e-4467-b905-3b528d455ade 2023-09-19 2023-09-19 08:10:04.020508+00 {} \\x0a004600 \\x0a0046ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 7a78202a-2742-4e38-bff4-4d61c44b8396 \N \N +ac908295-07d4-42cc-979d-5b6a4a31e934 2023-09-19 2023-09-19 08:10:04.801289+00 {} \\x0a000700 \\x0a0007ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 5283cb30-fb99-44f7-8cf1-af7e85b2571c \N \N +1f60e6e2-498e-42f0-b5e1-1b9c3e44a48c 2023-09-19 2023-09-19 08:10:04.856915+00 {} \\x0a004700 \\x0a0047ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 e52ada6a-6480-4300-8775-1fb1b8ef137f \N \N +70bad9ec-31ba-45a0-922c-6909b9c409c1 2023-09-19 2023-09-19 08:10:05.313432+00 {} \\x0a00c000 \\x0a00c001 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +1874e59e-2f82-4ff8-b6ae-cbb333c05829 2023-09-19 2023-09-19 08:10:05.506109+00 {} \\x0a00c002 \\x0a00c003 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +28eb19f7-d962-46ac-93e0-b9237c842b1c 2023-09-19 2023-09-19 08:10:05.675777+00 {} \\x0a00c004 \\x0a00c005 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +baa47489-8c74-4fce-98f0-7d6fa6601350 2023-09-19 2023-09-19 08:10:05.832987+00 {} \\x0a00c006 \\x0a00c007 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +b05e4f87-3413-497c-a60a-7bf6d5de5213 2023-09-19 2023-09-19 08:10:06.03257+00 {} \\x0a00c008 \\x0a00c009 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +3ab67caa-9846-478e-8646-f69c3af80ae7 2023-09-19 2023-09-19 08:10:06.225052+00 {} \\x0a00c00a \\x0a00c00b 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +26746a79-d368-43d2-8e8f-0e4d89650b4b 2023-09-19 2023-09-19 08:10:06.376509+00 {} \\x0a00c00c \\x0a00c00d 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +4349e8c2-44df-4f1b-8c53-5bc7e19e6fce 2023-09-19 2023-09-19 08:10:06.512821+00 {} \\x0a00c00e \\x0a00c00f 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +5f9f01c9-9fa4-4f86-b0b4-51448018982a 2023-09-19 2023-09-19 08:10:06.595748+00 {} \\x0a00c010 \\x0a00c011 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +717be3e6-d442-43dd-ba0e-dc68826a6920 2023-09-19 2023-09-19 08:10:06.676383+00 {} \\x0a00c012 \\x0a00c013 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +f6433169-0a9d-48d7-865a-11802e01a75b 2023-09-19 2023-09-19 08:10:06.759866+00 {} \\x0a00c014 \\x0a00c015 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +a2b11ee3-60a2-4f24-a112-2abc36963dab 2023-09-19 2023-09-19 08:10:06.84023+00 {} \\x0a00c016 \\x0a00c017 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +f7277dc2-1dfd-483c-bb48-448eb762ea18 2023-09-19 2023-09-19 08:10:06.922861+00 {} \\x0a00c018 \\x0a00c019 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +5b7610ca-1bff-4a75-aef2-49ee006ecbac 2023-09-19 2023-09-19 08:10:07.003656+00 {} \\x0a00c01a \\x0a00c01b 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +39c15238-b28d-49d4-a729-f083b5772974 2023-09-19 2023-09-19 08:10:07.086692+00 {} \\x0a00c01c \\x0a00c01d 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +5c22d252-e034-4d01-a490-e72ccd63ff10 2023-09-19 2023-09-19 08:10:07.16753+00 {} \\x0a00c01e \\x0a00c01f 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +39a51a48-bbe9-4a7a-80f0-4fe56a8e139b 2023-09-19 2023-09-19 08:10:07.250758+00 {} \\x0a00c020 \\x0a00c021 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +9a2f6fb0-df0e-4f5d-b8a3-10fc06afa04d 2023-09-19 2023-09-19 08:10:07.332568+00 {} \\x0a00c022 \\x0a00c023 31 f 41d88da2-9744-498f-9882-546d5150d674 b909f1f1-c702-4adc-80f1-ec5018737592 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +1d4111f6-dac9-46cb-b2c9-828899d6172a 2023-09-19 2023-09-19 08:10:07.597159+00 {} \\x0a010000 \\x0a01ffff 16 f 0468bd04-b398-4402-87c7-e0fdad26fc55 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +b3e5f8e5-3a12-4f42-b217-674eb3499a6d 2023-09-19 2023-09-19 08:10:07.602034+00 {} \\x0a010000 \\x0a013fff 18 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +f8388967-458a-408e-9701-62b049792ee2 2023-09-19 2023-09-19 08:10:07.606085+00 {} \\x0a014000 \\x0a017fff 18 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +c2dd9751-74c6-4753-a564-380964fc5463 2023-09-19 2023-09-19 08:10:07.610194+00 {} \\x0a018000 \\x0a01bfff 18 f 443fbf6f-9b3e-4ee4-8bea-5abe31547cc9 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +0f8f8506-8fef-48c1-a462-1c64ed8c66d0 2023-09-19 2023-09-19 08:10:07.614062+00 {} \\x0a01c000 \\x0a01ffff 18 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 b7358514-c1fa-4b60-80a6-c7763c255001 b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +8a63f9a9-646d-4e1a-80b3-b2016fbc6d25 2023-09-19 2023-09-19 08:10:09.403383+00 {} \\x0a010000 \\x0a0100ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 8b74bf13-d26f-40a2-b7ca-284a0beec407 \N \N +8e3a9794-ed54-4a12-a82f-1d55805aecc8 2023-09-19 2023-09-19 08:10:09.433238+00 {} \\x0a014000 \\x0a0140ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 3aa48e5a-8beb-48a1-ad56-eecc1fbd796b \N \N +e3fc12b4-4cb1-4544-a8ef-cd86c092373a 2023-09-19 2023-09-19 08:10:10.021736+00 {} \\x0a010100 \\x0a0101ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 b8ad0ecd-5967-4e37-a4b1-706eeba1b0e3 \N \N +3e8a6e07-3821-410a-be27-7a9b455cd1d9 2023-09-19 2023-09-19 08:10:10.054799+00 {} \\x0a014100 \\x0a0141ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 ef4e9f7d-7d32-49c2-9bd2-47e34c93063d \N \N +b83c131a-fd0c-413c-aa62-cce0e29bb995 2023-09-19 2023-09-19 08:10:10.736857+00 {} \\x0a010200 \\x0a0102ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 d6c0c620-bd72-41fa-84ac-ebc644dc6e0e \N \N +0596fc10-db38-4355-9886-0e6f6acb259f 2023-09-19 2023-09-19 08:10:10.765616+00 {} \\x0a014200 \\x0a0142ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 db579b3a-f556-4556-a261-53ba7cb29958 \N \N +6f5ebab8-5cac-4ef8-9fee-231f846ede56 2023-09-19 2023-09-19 08:10:11.356653+00 {} \\x0a010300 \\x0a0103ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 c67b3f65-faca-4c2a-b5ad-f8ba7f9a738f \N \N +892a900a-7b42-489c-92fa-f4ca18e4b61f 2023-09-19 2023-09-19 08:10:11.38575+00 {} \\x0a014300 \\x0a0143ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 d009b4bf-1da6-45d5-94e6-c0c0bb39883b \N \N +c268139d-03bc-48d4-ad5d-a20877a88e4b 2023-09-19 2023-09-19 08:10:11.984606+00 {} \\x0a010400 \\x0a0104ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 e06ad7fd-91c1-463e-a30f-824fee7d3e02 \N \N +7de3a52b-f5a2-4f63-bbcb-c1efe97bf374 2023-09-19 2023-09-19 08:10:12.01236+00 {} \\x0a014400 \\x0a0144ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 0c2e40b7-8938-47c3-93b3-501214d10986 \N \N +114c2af7-7f7b-4ab8-bc5c-255fe085e3f9 2023-09-19 2023-09-19 08:10:12.776046+00 {} \\x0a010500 \\x0a0105ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 341e3e61-1f40-4e1c-b5f9-1ca4729539ff \N \N +2321bed9-ed2e-4e3d-a664-409bc8ff8d96 2023-09-19 2023-09-19 08:10:12.803701+00 {} \\x0a014500 \\x0a0145ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 61ce100e-3761-4451-80f4-0869a86102b8 \N \N +224f93ab-b80d-4fe7-b120-e1863559a805 2023-09-19 2023-09-19 08:10:13.401312+00 {} \\x0a010600 \\x0a0106ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 80f20309-2ce3-4cee-b0f3-1fe641241295 \N \N +879714ad-efbe-4895-be2a-3fcea6c27292 2023-09-19 2023-09-19 08:10:13.429197+00 {} \\x0a014600 \\x0a0146ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 e71184dd-224f-4da4-94c9-3f26ad3c261a \N \N +37aac430-da78-40d9-bcd4-808ebdb7cccd 2023-09-19 2023-09-19 08:10:14.025795+00 {} \\x0a010700 \\x0a0107ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 5300dfb3-3b3f-429c-bb0c-0aa91d53568f \N \N +08d9e719-7ca7-4cab-8ab2-abbd47d043fe 2023-09-19 2023-09-19 08:10:14.054625+00 {} \\x0a014700 \\x0a0147ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 88b2e292-0ec5-4caa-ac0c-cde0c4417c03 \N \N +7acfc03c-540b-4cd8-be57-bf68d9053eb5 2023-09-19 2023-09-19 08:10:14.239181+00 {} \\x0a01c000 \\x0a01c001 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +457ddad0-dc02-41a8-b753-5d0f8602aa3a 2023-09-19 2023-09-19 08:10:14.321059+00 {} \\x0a01c002 \\x0a01c003 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +2256eb18-e126-466c-bb71-707d0a3deb95 2023-09-19 2023-09-19 08:10:14.40957+00 {} \\x0a01c004 \\x0a01c005 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +9eccaa9b-990e-42a3-a0cc-60c168aef951 2023-09-19 2023-09-19 08:10:14.500416+00 {} \\x0a01c006 \\x0a01c007 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +0b66212f-c514-4edd-b856-a69ba901c53c 2023-09-19 2023-09-19 08:10:14.600587+00 {} \\x0a01c008 \\x0a01c009 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +e56783b0-93bb-45c2-8b62-2f06bdcd7614 2023-09-19 2023-09-19 08:10:14.681876+00 {} \\x0a01c00a \\x0a01c00b 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +fbbbf6f0-4bbe-4e21-8b55-f7711d8f4a5a 2023-09-19 2023-09-19 08:10:14.76624+00 {} \\x0a01c00c \\x0a01c00d 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +3650d93a-6394-4ab0-95ec-5b11d2746e8e 2023-09-19 2023-09-19 08:10:14.847855+00 {} \\x0a01c00e \\x0a01c00f 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +8d42ce33-e10d-4815-ad8b-2a029db53738 2023-09-19 2023-09-19 08:10:14.93574+00 {} \\x0a01c010 \\x0a01c011 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +14134d8e-017d-4a69-aba6-62b8a78a9789 2023-09-19 2023-09-19 08:10:15.015736+00 {} \\x0a01c012 \\x0a01c013 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +efc96bbc-b2a4-4f89-ae2b-afdc5522f68d 2023-09-19 2023-09-19 08:10:15.097681+00 {} \\x0a01c014 \\x0a01c015 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +714aba6c-c77b-4ea6-a03c-3ff6406e370b 2023-09-19 2023-09-19 08:10:15.179336+00 {} \\x0a01c016 \\x0a01c017 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +e94d445f-1e6b-4a83-92fb-613dd2a42361 2023-09-19 2023-09-19 08:10:15.291303+00 {} \\x0a01c018 \\x0a01c019 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +1936cd9a-5171-4f33-a63c-513c66bf121c 2023-09-19 2023-09-19 08:10:15.37514+00 {} \\x0a01c01a \\x0a01c01b 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +9c474c38-c428-44c3-8df8-e1c6c2905562 2023-09-19 2023-09-19 08:10:15.459916+00 {} \\x0a01c01c \\x0a01c01d 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +61992ede-c584-44b1-bacf-4b0e3a8aeccc 2023-09-19 2023-09-19 08:10:15.555209+00 {} \\x0a01c01e \\x0a01c01f 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +d4ce88d5-2530-45ca-8445-fde57e92ab01 2023-09-19 2023-09-19 08:10:15.641757+00 {} \\x0a01c020 \\x0a01c021 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +0dae64d0-7201-4817-a033-9e08f119bf34 2023-09-19 2023-09-19 08:10:15.723905+00 {} \\x0a01c022 \\x0a01c023 31 f 41d88da2-9744-498f-9882-546d5150d674 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 2b1d44db-bf7f-47a4-a890-0727d0809a1c b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N \N \N +3ee56d97-4dbb-45ca-8136-db08a164ba82 2023-09-19 2023-09-19 08:10:23.441802+00 {} \\x0a000000 \\x0affffff 8 f 4db67f22-2dff-428c-a7da-4d2badd13155 \N b7358514-c1fa-4b60-80a6-c7763c255001 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +c84771b5-a5ea-45c7-96e4-61be8e0fb302 2023-09-19 2023-09-19 08:10:23.726634+00 {} \\x0a020000 \\x0a02ffff 16 f 0468bd04-b398-4402-87c7-e0fdad26fc55 fdcd398c-6a1b-4713-89d2-de930637a38b b7358514-c1fa-4b60-80a6-c7763c255001 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +a82e7aa8-fff8-4e1b-9de2-caf260ed46aa 2023-09-19 2023-09-19 08:10:23.73152+00 {} \\x0a020000 \\x0a023fff 18 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b b7358514-c1fa-4b60-80a6-c7763c255001 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +d54dcb94-735e-4ab1-b1e8-c3689745b3f9 2023-09-19 2023-09-19 08:10:23.735407+00 {} \\x0a024000 \\x0a027fff 18 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b b7358514-c1fa-4b60-80a6-c7763c255001 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +f1c20dea-923c-4bb3-9f57-9954ed3800c9 2023-09-19 2023-09-19 08:10:23.739299+00 {} \\x0a028000 \\x0a02bfff 18 f 443fbf6f-9b3e-4ee4-8bea-5abe31547cc9 fdcd398c-6a1b-4713-89d2-de930637a38b b7358514-c1fa-4b60-80a6-c7763c255001 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +6710af4e-aba1-4865-8297-12d67fe8caa2 2023-09-19 2023-09-19 08:10:23.743262+00 {} \\x0a02c000 \\x0a02ffff 18 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b b7358514-c1fa-4b60-80a6-c7763c255001 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +728ff42f-5b19-408a-acaf-babbabbeec81 2023-09-19 2023-09-19 08:10:25.41508+00 {} \\x0a020000 \\x0a0200ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e 143e0022-d045-4af9-9730-227127df4d30 \N \N +0ac9fe64-8249-49d8-88f5-55db68a1f276 2023-09-19 2023-09-19 08:10:25.469632+00 {} \\x0a024000 \\x0a0240ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e 22066110-b999-450d-aa05-4e7fcee0c368 \N \N +5b6658c4-bcbc-4807-9c7c-4ed2194ef190 2023-09-19 2023-09-19 08:10:26.03709+00 {} \\x0a020100 \\x0a0201ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e 80f600d0-f8be-4146-a0f9-c7d54a54a0ff \N \N +ca73bbe7-0387-4cf8-b614-ed700a3b70ea 2023-09-19 2023-09-19 08:10:26.064076+00 {} \\x0a024100 \\x0a0241ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e b4da0b29-0daa-47de-ba0c-37741c7fd176 \N \N +b7438158-4ad7-43e2-964e-046d446e100c 2023-09-19 2023-09-19 08:10:26.624848+00 {} \\x0a020200 \\x0a0202ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e 47820032-d1a7-4cdb-ab4e-4e71429db1db \N \N +e3f1ea37-ac31-441d-abbb-f3c2218e92c7 2023-09-19 2023-09-19 08:10:26.653813+00 {} \\x0a024200 \\x0a0242ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e cae6a987-9b46-4c42-8e15-372a75e2271c \N \N +d2f4023a-e69b-4d86-bf2b-49de13131fc0 2023-09-19 2023-09-19 08:10:27.215343+00 {} \\x0a020300 \\x0a0203ff 24 f 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e eec94de8-2850-4a40-8e58-8e46ce4645de \N \N +37dadd28-e26e-4c1d-aae7-a6cd1d4e5070 2023-09-19 2023-09-19 08:10:27.241133+00 {} \\x0a024300 \\x0a0243ff 24 f cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e 441d0b23-b88b-42c4-854b-98f1167f0e25 \N \N +9fef8547-6c35-4f94-a0f5-f1211e4ca7ee 2023-09-19 2023-09-19 08:10:27.434691+00 {} \\x0a02c000 \\x0a02c001 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +2251f0a2-143f-46a2-9f57-03e1248cd03a 2023-09-19 2023-09-19 08:10:27.514851+00 {} \\x0a02c002 \\x0a02c003 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +83f0c136-71b7-4c82-86ac-c4750a408f0a 2023-09-19 2023-09-19 08:10:27.600286+00 {} \\x0a02c004 \\x0a02c005 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +31c0892e-9016-4a74-9ea9-bb63a59e947a 2023-09-19 2023-09-19 08:10:27.68683+00 {} \\x0a02c006 \\x0a02c007 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +8cc76a7c-2a8a-4ef5-b1fd-926c3f11c7eb 2023-09-19 2023-09-19 08:10:27.771446+00 {} \\x0a02c008 \\x0a02c009 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +114ba53f-037d-4d1f-a4cd-a5137d62f2e0 2023-09-19 2023-09-19 08:10:27.84842+00 {} \\x0a02c00a \\x0a02c00b 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +add3c0ee-95ab-4baa-8edd-2d8d00735449 2023-09-19 2023-09-19 08:10:27.92754+00 {} \\x0a02c00c \\x0a02c00d 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +e7d4fd04-a773-45c8-9f52-a38bdc62ec36 2023-09-19 2023-09-19 08:10:28.002896+00 {} \\x0a02c00e \\x0a02c00f 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +eb0792be-5a94-4c1f-8055-7ee62822f396 2023-09-19 2023-09-19 08:10:28.080862+00 {} \\x0a02c010 \\x0a02c011 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +951040d7-bc53-4a06-9b63-ed4654da2502 2023-09-19 2023-09-19 08:10:28.156843+00 {} \\x0a02c012 \\x0a02c013 31 f 41d88da2-9744-498f-9882-546d5150d674 fdcd398c-6a1b-4713-89d2-de930637a38b 2b1d44db-bf7f-47a4-a890-0727d0809a1c 6d31d164-645b-47af-91c2-8815ac6c077e \N \N \N +4ffb1f52-fb9b-4c9b-b385-f89f20dd590e 2023-09-19 2023-09-19 08:11:23.562101+00 {} \\x685e8000 \\x685e8007 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +5118f759-94c5-450d-aaf2-e9dc08a9846b 2023-09-19 2023-09-19 08:11:23.692315+00 {} \\x685e8008 \\x685e800f 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +15581e94-2f07-41a6-a6ac-ae06e2b3da52 2023-09-19 2023-09-19 08:11:23.819833+00 {} \\x685e8010 \\x685e8017 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +b0613810-a118-4135-95a5-77503029263e 2023-09-19 2023-09-19 08:11:23.946227+00 {} \\x685e8018 \\x685e801f 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +ddf4cff9-22a2-4bd5-9a19-7937901c7a2c 2023-09-19 2023-09-19 08:11:24.076335+00 {} \\x685e8020 \\x685e8027 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +662e2fc5-f72e-402b-ac15-e6af54eee916 2023-09-19 2023-09-19 08:11:24.202777+00 {} \\x685e8028 \\x685e802f 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +48e992b3-be11-47f9-81bf-9e17c8139030 2023-09-19 2023-09-19 08:11:24.330006+00 {} \\x685e8030 \\x685e8037 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +790ad87b-27df-4c32-addd-287ee8da2de1 2023-09-19 2023-09-19 08:11:24.461366+00 {} \\x685e8038 \\x685e803f 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +6a392a33-9c71-4721-98a4-8cced704a351 2023-09-19 2023-09-19 08:11:24.595533+00 {} \\x685e8040 \\x685e8047 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +cb7a4e3b-5ac5-40c7-a954-9c02fff53a87 2023-09-19 2023-09-19 08:11:24.724042+00 {} \\x685e8048 \\x685e804f 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +d1812f8e-e999-40a2-92bb-a0d1969d172a 2023-09-19 2023-09-19 08:11:24.85483+00 {} \\x685e8050 \\x685e8057 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +d4802ca1-4f1e-4b7a-81be-793020193283 2023-09-19 2023-09-19 08:11:24.97953+00 {} \\x685e8058 \\x685e805f 29 f \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N \N \N \N +0ba10041-acac-4843-8b18-f325e6eb3989 2023-09-19 2023-09-19 08:11:39.625505+00 {} \\x0a000000 \\x0a0000ff 24 f \N \N \N \N \N \N \N +7662c7f2-d116-472f-83a6-f15fc6d0fb21 2023-09-19 2023-09-19 08:11:40.124141+00 {} \\x0a640000 \\x0a6400ff 24 f \N \N \N \N \N \N \N +abb6efa2-0c94-4bf9-98cb-e2ebf9145cd4 2023-09-19 2023-09-19 08:11:40.133535+00 {} \\x0ac80000 \\x0ac800ff 24 f \N \N \N \N \N \N \N +a73deeb5-9a79-4afe-acd1-0050925dfb3e 2023-09-19 2023-09-19 08:11:40.142781+00 {} \\xc0a80000 \\xc0a800ff 24 f \N \N \N \N \N \N \N +\. + + +-- +-- Data for Name: ipam_rir; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_rir (id, created, last_updated, _custom_field_data, name, slug, is_private, description) FROM stdin; +\. + + +-- +-- Data for Name: ipam_role; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_role (id, created, last_updated, _custom_field_data, name, slug, weight, description) FROM stdin; +4db67f22-2dff-428c-a7da-4d2badd13155 2023-09-19 2023-09-19 08:09:55.993746+00 {} POP Global Pool pop-global-pool 1000 +41d88da2-9744-498f-9882-546d5150d674 2023-09-19 2023-09-19 08:09:56.31377+00 {} point-to-point point-to-point 1000 +443fbf6f-9b3e-4ee4-8bea-5abe31547cc9 2023-09-19 2023-09-19 08:09:56.315783+00 {} loopback loopback 1000 +7161a5f2-e53c-46df-8c50-d5e8f21e9268 2023-09-19 2023-09-19 08:09:56.31774+00 {} server server 1000 +cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 2023-09-19 2023-09-19 08:09:56.319558+00 {} mgmt mgmt 1000 +0468bd04-b398-4402-87c7-e0fdad26fc55 2023-09-19 2023-09-19 08:09:56.321313+00 {} pop pop 1000 +\. + + +-- +-- Data for Name: ipam_routetarget; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_routetarget (id, created, last_updated, _custom_field_data, name, description, tenant_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_service; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_service (id, created, last_updated, _custom_field_data, name, protocol, ports, description, device_id, virtual_machine_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_service_ipaddresses; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_service_ipaddresses (id, service_id, ipaddress_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_vlan; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_vlan (id, created, last_updated, _custom_field_data, vid, name, description, group_id, role_id, site_id, status_id, tenant_id, location_id) FROM stdin; +9dbbd5b1-faf2-41d9-ad1c-e3ac3ec6cb59 2023-09-19 2023-09-19 08:09:58.230355+00 {} 1000 atl01-101-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7b25179a-e097-46f7-bfa1-bbceb024d410 2023-09-19 2023-09-19 08:09:58.26636+00 {} 99 atl01-101-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +9fee60c6-da36-4e30-be8f-3cda0de26ac2 2023-09-19 2023-09-19 08:09:58.873064+00 {} 1000 atl01-102-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +21ae7475-cea5-45e9-ab1b-0849125346fe 2023-09-19 2023-09-19 08:09:58.900514+00 {} 99 atl01-102-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c3e9927a-d164-45ec-9387-f3a56fe1baf4 2023-09-19 2023-09-19 08:09:59.571504+00 {} 1000 atl01-103-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +6841bd14-85c9-4891-a4a6-847edd84079e 2023-09-19 2023-09-19 08:09:59.59969+00 {} 99 atl01-103-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d335c59d-b41c-4efd-9e21-a58dc7958d39 2023-09-19 2023-09-19 08:10:00.630306+00 {} 1000 atl01-104-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c5c2e1a7-b1c1-4b1c-9536-64f82da33898 2023-09-19 2023-09-19 08:10:00.665024+00 {} 99 atl01-104-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +47e0d3e2-168b-4313-bfcc-db0a72342cea 2023-09-19 2023-09-19 08:10:01.737754+00 {} 1000 atl01-105-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +744007e1-98eb-4dc9-9c59-53a84dc17120 2023-09-19 2023-09-19 08:10:01.790839+00 {} 99 atl01-105-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +5d9246e8-9635-41cc-b4c0-5e85a2d32947 2023-09-19 2023-09-19 08:10:02.787896+00 {} 1000 atl01-106-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +a207452e-4938-4866-ac47-6c526b9cf35e 2023-09-19 2023-09-19 08:10:02.861186+00 {} 99 atl01-106-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +971b3854-e98f-4168-8fe9-63c34c1f1a95 2023-09-19 2023-09-19 08:10:03.970541+00 {} 1000 atl01-107-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +7a78202a-2742-4e38-bff4-4d61c44b8396 2023-09-19 2023-09-19 08:10:03.999779+00 {} 99 atl01-107-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +5283cb30-fb99-44f7-8cf1-af7e85b2571c 2023-09-19 2023-09-19 08:10:04.778158+00 {} 1000 atl01-108-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +e52ada6a-6480-4300-8775-1fb1b8ef137f 2023-09-19 2023-09-19 08:10:04.816051+00 {} 99 atl01-108-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 b909f1f1-c702-4adc-80f1-ec5018737592 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +8b74bf13-d26f-40a2-b7ca-284a0beec407 2023-09-19 2023-09-19 08:10:09.373657+00 {} 1000 pek01-101-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +3aa48e5a-8beb-48a1-ad56-eecc1fbd796b 2023-09-19 2023-09-19 08:10:09.41394+00 {} 99 pek01-101-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +b8ad0ecd-5967-4e37-a4b1-706eeba1b0e3 2023-09-19 2023-09-19 08:10:10.001903+00 {} 1000 pek01-102-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +ef4e9f7d-7d32-49c2-9bd2-47e34c93063d 2023-09-19 2023-09-19 08:10:10.031389+00 {} 99 pek01-102-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d6c0c620-bd72-41fa-84ac-ebc644dc6e0e 2023-09-19 2023-09-19 08:10:10.71635+00 {} 1000 pek01-103-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +db579b3a-f556-4556-a261-53ba7cb29958 2023-09-19 2023-09-19 08:10:10.745071+00 {} 99 pek01-103-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +c67b3f65-faca-4c2a-b5ad-f8ba7f9a738f 2023-09-19 2023-09-19 08:10:11.336338+00 {} 1000 pek01-104-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +d009b4bf-1da6-45d5-94e6-c0c0bb39883b 2023-09-19 2023-09-19 08:10:11.364368+00 {} 99 pek01-104-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +e06ad7fd-91c1-463e-a30f-824fee7d3e02 2023-09-19 2023-09-19 08:10:11.964613+00 {} 1000 pek01-105-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +0c2e40b7-8938-47c3-93b3-501214d10986 2023-09-19 2023-09-19 08:10:11.992294+00 {} 99 pek01-105-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +341e3e61-1f40-4e1c-b5f9-1ca4729539ff 2023-09-19 2023-09-19 08:10:12.755613+00 {} 1000 pek01-106-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +61ce100e-3761-4451-80f4-0869a86102b8 2023-09-19 2023-09-19 08:10:12.783841+00 {} 99 pek01-106-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +80f20309-2ce3-4cee-b0f3-1fe641241295 2023-09-19 2023-09-19 08:10:13.381341+00 {} 1000 pek01-107-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +e71184dd-224f-4da4-94c9-3f26ad3c261a 2023-09-19 2023-09-19 08:10:13.40902+00 {} 99 pek01-107-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +5300dfb3-3b3f-429c-bb0c-0aa91d53568f 2023-09-19 2023-09-19 08:10:14.005023+00 {} 1000 pek01-108-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +88b2e292-0ec5-4caa-ac0c-cde0c4417c03 2023-09-19 2023-09-19 08:10:14.033936+00 {} 99 pek01-108-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 ee6928a6-7b7d-451b-b4c3-ac4b8b987286 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb b22a2ff3-f440-4cb1-9b55-57e8531f53a7 \N +143e0022-d045-4af9-9730-227127df4d30 2023-09-19 2023-09-19 08:10:25.382836+00 {} 1000 bre01-101-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +22066110-b999-450d-aa05-4e7fcee0c368 2023-09-19 2023-09-19 08:10:25.428543+00 {} 99 bre01-101-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +80f600d0-f8be-4146-a0f9-c7d54a54a0ff 2023-09-19 2023-09-19 08:10:26.018327+00 {} 1000 bre01-102-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +b4da0b29-0daa-47de-ba0c-37741c7fd176 2023-09-19 2023-09-19 08:10:26.044593+00 {} 99 bre01-102-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +47820032-d1a7-4cdb-ab4e-4e71429db1db 2023-09-19 2023-09-19 08:10:26.603421+00 {} 1000 bre01-103-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +cae6a987-9b46-4c42-8e15-372a75e2271c 2023-09-19 2023-09-19 08:10:26.633243+00 {} 99 bre01-103-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +eec94de8-2850-4a40-8e58-8e46ce4645de 2023-09-19 2023-09-19 08:10:27.196536+00 {} 1000 bre01-104-server \N 7161a5f2-e53c-46df-8c50-d5e8f21e9268 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +441d0b23-b88b-42c4-854b-98f1167f0e25 2023-09-19 2023-09-19 08:10:27.222561+00 {} 99 bre01-104-mgmt \N cb4ded45-da00-484e-bb9c-dc0dee0f0bb2 fdcd398c-6a1b-4713-89d2-de930637a38b 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 6d31d164-645b-47af-91c2-8815ac6c077e \N +\. + + +-- +-- Data for Name: ipam_vlangroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_vlangroup (id, created, last_updated, _custom_field_data, name, slug, description, site_id, location_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_vrf; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_vrf (id, created, last_updated, _custom_field_data, name, rd, enforce_unique, description, tenant_id) FROM stdin; +2a3bd78f-e433-401d-8e68-33b1d409a276 2023-09-19 2023-09-19 08:11:39.618389+00 {} global \N t \N +758a1c41-fc25-488f-922a-bd4c18aecc46 2023-09-19 2023-09-19 08:11:39.631962+00 {} global \N t \N +\. + + +-- +-- Data for Name: ipam_vrf_export_targets; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_vrf_export_targets (id, vrf_id, routetarget_id) FROM stdin; +\. + + +-- +-- Data for Name: ipam_vrf_import_targets; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.ipam_vrf_import_targets (id, vrf_id, routetarget_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_bgp_models_addressfamily; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_addressfamily (id, created, last_updated, _custom_field_data, afi_safi, import_policy, export_policy, multipath, routing_instance_id, vrf_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_bgp_models_autonomoussystem; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_autonomoussystem (id, created, last_updated, _custom_field_data, asn, description, provider_id, status_id) FROM stdin; +25a88fbc-8191-4262-bf08-1d1f76762c2d 2023-09-19 2023-09-19 08:11:21.186451+00 {} 7018 ASN for AT&T 3ba3f410-7fd3-45f5-aa2c-db5070bb8196 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +49be4aaa-7156-4d97-938b-9e4d4f67025b 2023-09-19 2023-09-19 08:11:21.188492+00 {} 174 ASN for Cogent 16556a0e-9dcd-4225-a40c-319fb16784b1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +166c4fbb-d59a-4580-96aa-67b73cb5e8e8 2023-09-19 2023-09-19 08:11:21.190056+00 {} 3320 ASN for Deutsche Telekom ff28f942-1a24-4279-a502-c45e938f7589 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +b4ed9634-f2ed-466f-9683-17c59875867a 2023-09-19 2023-09-19 08:11:21.191568+00 {} 3257 ASN for GTT 85db4e38-cd9b-4b79-b7fd-f404cf63bdf0 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +8f5777be-30e2-4382-bdfc-f61923c7b27e 2023-09-19 2023-09-19 08:11:21.193144+00 {} 6830 ASN for Liberty Global 5c242241-6e11-45d6-acd1-1045ecd8fe88 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a3c8cb10-331a-4961-9745-f58943c1d426 2023-09-19 2023-09-19 08:11:21.194668+00 {} 3356 ASN for Lumen Technologies 61abdc78-8c73-4a3f-8839-85abc3a0f11e 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +eeb320b3-0f42-4e80-ba2a-b3e7afc5a05f 2023-09-19 2023-09-19 08:11:21.196319+00 {} 2914 ASN for NTT c39947f0-8564-4c82-be16-eb5bad9fc335 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +393f7912-c3f6-4f4f-86bf-4ccd85457afa 2023-09-19 2023-09-19 08:11:21.197679+00 {} 5511 ASN for Orange dfd42b50-659c-48a3-8da9-ad46c3f1307c 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +e9d5b761-f378-4570-b419-3cbcfc6dd004 2023-09-19 2023-09-19 08:11:21.199117+00 {} 3491 ASN for PCCW Global 1fd548b9-ff01-4349-a290-229db15af630 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +ddb2567d-2a7e-415d-9000-43d1c39b77dd 2023-09-19 2023-09-19 08:11:21.200653+00 {} 1239 ASN for Sprint 722e375a-f153-4335-8fed-6740f9ea1ba4 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +01a88f7b-db2b-4016-89e2-de6b744a8045 2023-09-19 2023-09-19 08:11:21.201979+00 {} 6453 ASN for Tata Communications 60e5e9cf-7675-473c-992d-1d31233fd250 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +09321fa5-2968-49b7-9035-36352505707a 2023-09-19 2023-09-19 08:11:21.20335+00 {} 6762 ASN for Telecom Italia 66c19682-b520-4c23-8d5e-72775e7f9bce 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +d45d85ba-5f8a-48ba-bc49-468c6868c734 2023-09-19 2023-09-19 08:11:21.204625+00 {} 1299 ASN for Telia Carrier 1a61127c-09c1-44e9-bfee-e84215fa168c 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +52841a58-4952-4338-9b89-934f5fc3dbe2 2023-09-19 2023-09-19 08:11:21.206327+00 {} 12956 ASN for Telxius ac6c0b53-2411-41a1-aeef-8c7c0bd198da 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +5ac2f13f-664c-4d98-bc73-d4b37298e292 2023-09-19 2023-09-19 08:11:21.207702+00 {} 701 ASN for Verizon 6b268df7-c6ba-4783-ae89-0840dd690e49 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +fca6e321-c0af-4583-bd1c-685397bef488 2023-09-19 2023-09-19 08:11:21.209137+00 {} 6461 ASN for Zayo dfe5f192-30de-40b4-8cf8-5049e87afb54 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +2574962b-0311-4356-8e0a-6b871ec2daec 2023-09-19 2023-09-19 08:11:21.212786+00 {} 65535 Public ASN for Nautobot Airports \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d 2023-09-19 2023-09-19 08:11:21.367465+00 {} 4200000000 Private ASN for Site ATL01 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +47e0e9e1-4c1f-43e2-9495-57f31eec8892 2023-09-19 2023-09-19 08:11:21.462488+00 {} 4200000001 Private ASN for Site PEK01 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_bgp_models_bgproutinginstance; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_bgproutinginstance (id, created, last_updated, _custom_field_data, extra_attributes, description, autonomous_system_id, device_id, router_id_id) FROM stdin; +48bffb72-d91d-4f2a-a92b-a134e6001dfb 2023-09-19 2023-09-19 08:11:21.233264+00 {} \N BGP Routing Instance for atl01-edge-01 2574962b-0311-4356-8e0a-6b871ec2daec 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 64518eac-39ec-4faf-88ad-2c20b8504e89 +78f61d14-769b-4a00-bd1c-a1303434e985 2023-09-19 2023-09-19 08:11:21.249238+00 {} \N BGP Routing Instance for atl01-edge-02 2574962b-0311-4356-8e0a-6b871ec2daec bed003a4-068f-493c-8519-b7ff3ab94f63 87bf1742-e06c-4d2a-95d8-42511691d98d +ed4aad54-51a9-494f-ba61-dfb5cfc1698a 2023-09-19 2023-09-19 08:11:21.262066+00 {} \N BGP Routing Instance for bre01-edge-01 2574962b-0311-4356-8e0a-6b871ec2daec 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 08438ad8-772b-4701-b495-8b7fc4963f92 +ca69864b-c033-436e-b16b-e3bbd45c0cc5 2023-09-19 2023-09-19 08:11:21.279513+00 {} \N BGP Routing Instance for bre01-edge-02 2574962b-0311-4356-8e0a-6b871ec2daec 16745b0e-5964-4f3e-99e3-aa1646f275f5 a9049632-eb83-47e1-8306-7bebce7d55c4 +5ef510b4-342b-47ab-8227-bdf0803a56e6 2023-09-19 2023-09-19 08:11:21.302547+00 {} \N BGP Routing Instance for pek01-edge-01 2574962b-0311-4356-8e0a-6b871ec2daec 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 8f22c78d-3f82-43d8-beb5-fba7273025c0 +260595ec-07bb-4fca-8420-0bf4bc376c82 2023-09-19 2023-09-19 08:11:21.325858+00 {} \N BGP Routing Instance for pek01-edge-02 2574962b-0311-4356-8e0a-6b871ec2daec b1d1e038-acb3-468f-810b-5d0f549a66cc 68458e69-78e8-4bf0-ad80-ea994ce47ba0 +0bc95d41-a029-40b8-a549-6f01df630618 2023-09-19 2023-09-19 08:11:21.38794+00 {} \N BGP Routing Instance for atl01-leaf-01 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d a6751a1a-e274-445d-ab2f-06ead1cb6d3c fb3bbfdd-f144-4f46-b56e-4adddd78001d +afcdf211-9d31-437f-8ea8-fdc357447165 2023-09-19 2023-09-19 08:11:21.39627+00 {} \N BGP Routing Instance for atl01-leaf-02 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d 6be296b5-5db3-407b-915b-ebcfa5d73aa3 1a98af18-01d2-4eb5-bc31-4eceb76ebb45 +59dee9f6-2e93-4adc-97e6-1e8fcdfa5348 2023-09-19 2023-09-19 08:11:21.404197+00 {} \N BGP Routing Instance for atl01-leaf-03 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d 5aa04755-8fbe-4378-97ed-b23f0ac0e928 df195778-2193-4339-b1e3-4260573c7215 +f386cfe8-3c44-495d-9ff4-dba7105e7981 2023-09-19 2023-09-19 08:11:21.412381+00 {} \N BGP Routing Instance for atl01-leaf-04 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d 17fa82e4-d0ad-4092-b3c0-1f597bc84883 904db0ae-f100-4dd1-9c5c-a1f79030cc69 +2ef503da-0950-4354-adb0-0a43bbba5279 2023-09-19 2023-09-19 08:11:21.420259+00 {} \N BGP Routing Instance for atl01-leaf-05 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d 684ba856-7ace-4a36-9c56-e646e71ebb6a 45ffde5e-e266-48b2-b155-552f699d5fc7 +f2777cda-57f1-40a5-8f5a-2f327d6c64b9 2023-09-19 2023-09-19 08:11:21.428397+00 {} \N BGP Routing Instance for atl01-leaf-06 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d bb5af4d5-3007-4d6a-8965-10db2ec91b76 433128bb-b56c-4372-85cc-cac843662608 +85ee99bb-b29d-4034-9229-6dd300446b8d 2023-09-19 2023-09-19 08:11:21.436399+00 {} \N BGP Routing Instance for atl01-leaf-07 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 e553a141-464b-4a96-887b-6b7ddb4253dc +d71581aa-7555-459a-b08b-43c2bf591fa9 2023-09-19 2023-09-19 08:11:21.44515+00 {} \N BGP Routing Instance for atl01-leaf-08 8dcf8cb6-b1ca-4e03-8101-62dfa2ec976d c2fe5345-d2c7-4214-8406-31b2b2b87aa2 af16b55b-d4eb-4004-afb9-03984ec463ac +549718fd-587d-4c60-be19-7024c31865bb 2023-09-19 2023-09-19 08:11:21.481007+00 {} \N BGP Routing Instance for pek01-leaf-01 47e0e9e1-4c1f-43e2-9495-57f31eec8892 c2bb0304-fcac-4397-9d63-e7503688aae6 e112232c-fd9e-4ada-b2d4-77a315cd7669 +7b38df0e-e595-49de-894f-9ce7ceb90049 2023-09-19 2023-09-19 08:11:21.489144+00 {} \N BGP Routing Instance for pek01-leaf-02 47e0e9e1-4c1f-43e2-9495-57f31eec8892 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 8f5eeac4-47bf-4617-b754-af32b9196014 +cd0334cf-2454-4437-bc1f-67dc4477ec86 2023-09-19 2023-09-19 08:11:21.497372+00 {} \N BGP Routing Instance for pek01-leaf-03 47e0e9e1-4c1f-43e2-9495-57f31eec8892 dbf9eba6-2713-48f9-94df-7fa36fd3880a 6de276b4-b572-4a6b-b314-546b0ce1def1 +931b48ec-797c-4c30-a8c7-65aec969f57f 2023-09-19 2023-09-19 08:11:21.50527+00 {} \N BGP Routing Instance for pek01-leaf-04 47e0e9e1-4c1f-43e2-9495-57f31eec8892 bf032a0f-20ad-4ae4-a37b-a4971292c8b3 173c0d97-7df8-4b1a-8bd2-ddcb22d11f06 +8f9776b4-04a8-49b0-bbf9-e9b7c46ccc45 2023-09-19 2023-09-19 08:11:21.513263+00 {} \N BGP Routing Instance for pek01-leaf-05 47e0e9e1-4c1f-43e2-9495-57f31eec8892 06fa92a5-cddc-47aa-9a02-22b140d16be6 ff0fa780-be2b-46cf-9e68-d9f8411e8526 +8fb50519-53d2-4afb-80ac-d1aa7cf2cedc 2023-09-19 2023-09-19 08:11:21.521076+00 {} \N BGP Routing Instance for pek01-leaf-06 47e0e9e1-4c1f-43e2-9495-57f31eec8892 ebe97465-935f-4bf8-b29a-d0e1100d5528 4dcce844-fc38-48cc-9727-9bf7fb0e197d +96cd99db-7f8f-44b2-8e2b-a32d0a8697d8 2023-09-19 2023-09-19 08:11:21.528798+00 {} \N BGP Routing Instance for pek01-leaf-07 47e0e9e1-4c1f-43e2-9495-57f31eec8892 1724a7eb-1663-47da-abaa-00b6271c9754 aa93b8c4-6278-4752-9039-a4822ba10574 +0c7513fd-7c2f-4ce6-b730-b57328fb0a72 2023-09-19 2023-09-19 08:11:21.536519+00 {} \N BGP Routing Instance for pek01-leaf-08 47e0e9e1-4c1f-43e2-9495-57f31eec8892 bf4037a6-1802-48e9-8e95-3fd2326f4bdf 82f1f156-351e-4485-84b1-8276f3853a72 +\. + + +-- +-- Data for Name: nautobot_bgp_models_peerendpoint; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_peerendpoint (id, created, last_updated, _custom_field_data, extra_attributes, description, enabled, import_policy, export_policy, autonomous_system_id, peer_id, peer_group_id, peering_id, role_id, routing_instance_id, secret_id, source_interface_id, source_ip_id) FROM stdin; +09f6266d-d4fc-4c00-9838-81d505e9e4ff 2023-09-19 2023-09-19 08:11:21.739411+00 {} \N t \N 337a9211-3336-4b61-b6c2-b32560772e01 cd566101-deb1-4f19-aa9d-6bf9306f876c fd1d148d-85c7-4d72-9e34-c3714ee9d199 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N 44afde42-44cc-412b-a062-ced70d22f039 +337a9211-3336-4b61-b6c2-b32560772e01 2023-09-19 2023-09-19 08:11:21.757436+00 {} \N t \N 09f6266d-d4fc-4c00-9838-81d505e9e4ff 1b5acb28-6d7c-41de-9f41-3c075c005487 fd1d148d-85c7-4d72-9e34-c3714ee9d199 \N 59dee9f6-2e93-4adc-97e6-1e8fcdfa5348 \N \N 255bc5a8-4b0f-4ea6-8d00-4be306ce3ac7 +a9f81289-1364-4223-a9e2-2a3d5701453a 2023-09-19 2023-09-19 08:11:21.794033+00 {} \N t \N 6b6a1e32-1600-4412-bac4-34ef4516d78c 1d9941bc-cb7b-4498-9e80-37122dfb4582 3e722512-5f82-4ebc-bc79-98f34af3813d \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 57b329c3-c3aa-47e8-9568-f1a46a6a10ab +6b6a1e32-1600-4412-bac4-34ef4516d78c 2023-09-19 2023-09-19 08:11:21.812127+00 {} \N t \N a9f81289-1364-4223-a9e2-2a3d5701453a 27454513-e896-49ec-9c1e-2e5869eef997 3e722512-5f82-4ebc-bc79-98f34af3813d \N 931b48ec-797c-4c30-a8c7-65aec969f57f \N \N 0fe09ad9-2b50-4c93-9088-95f1715830a8 +d3602352-7dd7-40b3-90fc-eab53a87d2a4 2023-09-19 2023-09-19 08:11:21.866871+00 {} \N t \N 6d934791-6ec0-4ab3-9b97-c32905f58087 0e1a7b67-8d0b-4895-93ca-4791561b6c4f 2e00c7de-9ab9-44e9-a3eb-3c28efe399d2 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 2442302c-0ba8-42db-8bd8-8c2094f44a05 +6d934791-6ec0-4ab3-9b97-c32905f58087 2023-09-19 2023-09-19 08:11:21.891594+00 {} \N t \N d3602352-7dd7-40b3-90fc-eab53a87d2a4 e52f3298-5d64-4b63-9027-6191811a82a2 2e00c7de-9ab9-44e9-a3eb-3c28efe399d2 \N 549718fd-587d-4c60-be19-7024c31865bb \N \N 56877495-c3d9-4ee2-88c2-24dc56779a93 +9a80ac14-0893-4c4f-b838-b0ea01a5ec86 2023-09-19 2023-09-19 08:11:21.934154+00 {} \N t \N b5a3aec3-6117-4b47-a0db-b4694f3397f1 0e1a7b67-8d0b-4895-93ca-4791561b6c4f d1a752b2-99d2-4293-8b42-9cde523b2903 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 09cfb662-b6c2-49a5-899a-72772ebfd486 +b5a3aec3-6117-4b47-a0db-b4694f3397f1 2023-09-19 2023-09-19 08:11:21.951849+00 {} \N t \N 9a80ac14-0893-4c4f-b838-b0ea01a5ec86 a3727678-4394-460f-abe7-4afe84a5137d d1a752b2-99d2-4293-8b42-9cde523b2903 \N 96cd99db-7f8f-44b2-8e2b-a32d0a8697d8 \N \N ec3e1752-858a-462b-b91b-05c287681655 +debc45ed-1bb3-43de-9eaf-866b00846258 2023-09-19 2023-09-19 08:11:21.987087+00 {} \N t \N bb079b04-025b-45e8-932d-dc19ad5b7645 1d9941bc-cb7b-4498-9e80-37122dfb4582 a65ef242-178c-441f-b1a1-3e2266e2362c \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 03b0ff76-eda2-4121-89d5-07b286e62e7c +bb079b04-025b-45e8-932d-dc19ad5b7645 2023-09-19 2023-09-19 08:11:22.005107+00 {} \N t \N debc45ed-1bb3-43de-9eaf-866b00846258 3d3f4e4d-a477-4687-8260-d00aa8f8a924 a65ef242-178c-441f-b1a1-3e2266e2362c \N 7b38df0e-e595-49de-894f-9ce7ceb90049 \N \N 344a95a9-67d7-4c90-b092-6e48dd1cc1af +9b237133-4493-4f8a-98e8-16fd3a911a17 2023-09-19 2023-09-19 08:11:22.04093+00 {} \N t \N 4e03c70b-5a5a-47b9-beb8-94ef3dc9804d cd566101-deb1-4f19-aa9d-6bf9306f876c 41448fc4-7e6f-4eb0-94df-04881b865155 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N 7440b210-7c1c-4f60-bb14-8ec3719ced31 +4e03c70b-5a5a-47b9-beb8-94ef3dc9804d 2023-09-19 2023-09-19 08:11:22.058701+00 {} \N t \N 9b237133-4493-4f8a-98e8-16fd3a911a17 7dad0a90-6d43-4f70-8c7d-9069c352f518 41448fc4-7e6f-4eb0-94df-04881b865155 \N 2ef503da-0950-4354-adb0-0a43bbba5279 \N \N 1c603af3-7a72-4462-8264-038e8d9eb254 +c078d513-07df-4a41-8dfb-699a756881c9 2023-09-19 2023-09-19 08:11:22.099387+00 {} \N t \N 74af7422-c15b-4e5e-80e6-358a1ea03640 cd566101-deb1-4f19-aa9d-6bf9306f876c 7f35de97-203b-48d9-92e7-b02bc23da9e0 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N 354820f3-7347-4c50-91c3-ee109b8d04f2 +74af7422-c15b-4e5e-80e6-358a1ea03640 2023-09-19 2023-09-19 08:11:22.117462+00 {} \N t \N c078d513-07df-4a41-8dfb-699a756881c9 9830a888-8d32-4b9d-b961-ef5943eae64e 7f35de97-203b-48d9-92e7-b02bc23da9e0 \N f386cfe8-3c44-495d-9ff4-dba7105e7981 \N \N 20187bcb-df69-4545-a46b-051082e4e0ba +b0dc99ec-dc86-4531-91dc-760bf23a4630 2023-09-19 2023-09-19 08:11:22.152837+00 {} \N t \N 84429ccf-2747-4899-a4eb-d1546d322c07 cd566101-deb1-4f19-aa9d-6bf9306f876c dac9f58c-dff4-496b-bb18-87831f801a83 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N 14521caa-d277-4e4d-8712-017451f40c1f +84429ccf-2747-4899-a4eb-d1546d322c07 2023-09-19 2023-09-19 08:11:22.170779+00 {} \N t \N b0dc99ec-dc86-4531-91dc-760bf23a4630 de808608-6453-46ca-9b40-d56ce39b3a59 dac9f58c-dff4-496b-bb18-87831f801a83 \N 0bc95d41-a029-40b8-a549-6f01df630618 \N \N 8b807f52-9f46-41fc-9bf1-28cf6c5810e1 +3757ea95-f001-45d7-a1f1-8042362d8692 2023-09-19 2023-09-19 08:11:22.20617+00 {} \N t \N cb9d4c9b-1f22-4ff4-abb4-27897bf709e0 6acc47c4-ad1b-4979-bb38-619e1640a425 c2bc2b37-cd4c-42a5-9c02-59c2f1d41089 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N c9f683ef-8dcf-4763-b7ba-756ffc670a65 +cb9d4c9b-1f22-4ff4-abb4-27897bf709e0 2023-09-19 2023-09-19 08:11:22.224392+00 {} \N t \N 3757ea95-f001-45d7-a1f1-8042362d8692 de808608-6453-46ca-9b40-d56ce39b3a59 c2bc2b37-cd4c-42a5-9c02-59c2f1d41089 \N 0bc95d41-a029-40b8-a549-6f01df630618 \N \N b657247a-4051-4cd8-ae6d-025f5794f7ca +d275ac68-85fe-4dce-8cd7-dedd0679cac5 2023-09-19 2023-09-19 08:11:22.265311+00 {} \N t \N 98d06d8c-4489-4d58-aa85-97685f2a2b0f 0e1a7b67-8d0b-4895-93ca-4791561b6c4f f46b8780-78ea-4610-bb6f-77a8f4e59743 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 5355a8bf-7539-474e-997c-b22304b1fb22 +98d06d8c-4489-4d58-aa85-97685f2a2b0f 2023-09-19 2023-09-19 08:11:22.282928+00 {} \N t \N d275ac68-85fe-4dce-8cd7-dedd0679cac5 626506dc-5b03-4d07-a0bd-4b5c3dfc71fd f46b8780-78ea-4610-bb6f-77a8f4e59743 \N 8f9776b4-04a8-49b0-bbf9-e9b7c46ccc45 \N \N 6a9c7c65-3f32-4092-869d-77189d182cb6 +20aa8636-6b9d-495d-a568-d80531657d50 2023-09-19 2023-09-19 08:11:22.324413+00 {} \N t \N 91b1a532-b326-472c-a3a3-8b8da6bb4e7d 0e1a7b67-8d0b-4895-93ca-4791561b6c4f 06cb19b4-c305-4b71-b091-2ff4669e17ed \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 1d2442b2-2fe0-47b1-a211-1e017c44ae04 +91b1a532-b326-472c-a3a3-8b8da6bb4e7d 2023-09-19 2023-09-19 08:11:22.35717+00 {} \N t \N 20aa8636-6b9d-495d-a568-d80531657d50 14366eb2-e9f6-416a-9d72-c36afd263eca 06cb19b4-c305-4b71-b091-2ff4669e17ed \N cd0334cf-2454-4437-bc1f-67dc4477ec86 \N \N cc5ad6ab-b5d3-4bc8-a0ed-a87b87f3aa6c +5da40eb4-c14f-4101-a9f9-94461b56de68 2023-09-19 2023-09-19 08:11:22.3962+00 {} \N t \N 538befe5-30a5-4a01-9210-f8b0fedf719b 1d9941bc-cb7b-4498-9e80-37122dfb4582 d7ddbb89-7d49-4219-8e17-46599219f06c \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 02d15af7-288d-4709-a675-88a712259d14 +538befe5-30a5-4a01-9210-f8b0fedf719b 2023-09-19 2023-09-19 08:11:22.415736+00 {} \N t \N 5da40eb4-c14f-4101-a9f9-94461b56de68 85e10979-235e-4159-bb63-4d3c879dbd45 d7ddbb89-7d49-4219-8e17-46599219f06c \N 8fb50519-53d2-4afb-80ac-d1aa7cf2cedc \N \N 9590b80f-f27f-4af2-b476-e23e1ffe8ae9 +6cde503d-a033-4967-a30a-d9dd12ed7d98 2023-09-19 2023-09-19 08:11:22.451759+00 {} \N t \N a137b867-58cd-4282-b483-658b76ff362a 1d9941bc-cb7b-4498-9e80-37122dfb4582 4b01a130-9e75-4a57-9488-175d200cd034 \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 5876d8b8-7049-471e-b847-7725d577f707 +a137b867-58cd-4282-b483-658b76ff362a 2023-09-19 2023-09-19 08:11:22.469365+00 {} \N t \N 6cde503d-a033-4967-a30a-d9dd12ed7d98 c00f86bf-074e-42fd-a4c7-cfb3ba1694e5 4b01a130-9e75-4a57-9488-175d200cd034 \N 0c7513fd-7c2f-4ce6-b730-b57328fb0a72 \N \N 6d58a1ff-8598-4d45-87e3-bed60592ef9e +acbe3fda-10c1-4b38-b88c-440de3f02322 2023-09-19 2023-09-19 08:11:22.505144+00 {} \N t \N 20e2f1c6-8435-49e3-9deb-e8d6ca13a3ab 1d9941bc-cb7b-4498-9e80-37122dfb4582 83142599-8aba-4123-b7b5-cc80e8050f15 \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 021fab39-9436-49ea-aa0a-591cbd357766 +20e2f1c6-8435-49e3-9deb-e8d6ca13a3ab 2023-09-19 2023-09-19 08:11:22.522793+00 {} \N t \N acbe3fda-10c1-4b38-b88c-440de3f02322 14366eb2-e9f6-416a-9d72-c36afd263eca 83142599-8aba-4123-b7b5-cc80e8050f15 \N cd0334cf-2454-4437-bc1f-67dc4477ec86 \N \N 71c7c423-dc73-4de1-a169-a4daa6727d40 +4044d804-17d9-4bfe-8fde-538caecae33f 2023-09-19 2023-09-19 08:11:22.558255+00 {} \N t \N 81659ab8-32fa-4c77-9083-287163264724 6acc47c4-ad1b-4979-bb38-619e1640a425 c10b024a-a337-4796-8122-a3778aff5acf \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 89d723d5-9ade-425d-af04-0332648dbada +81659ab8-32fa-4c77-9083-287163264724 2023-09-19 2023-09-19 08:11:22.575777+00 {} \N t \N 4044d804-17d9-4bfe-8fde-538caecae33f 4d5f0395-8879-427d-aa0c-27bc493bcf5a c10b024a-a337-4796-8122-a3778aff5acf \N d71581aa-7555-459a-b08b-43c2bf591fa9 \N \N 34eba86d-70cd-4ae8-872a-2d7d03438cfb +3bb5b90d-c085-46bc-857e-ea6f457dc29b 2023-09-19 2023-09-19 08:11:22.616306+00 {} \N t \N 2def062c-8278-4e39-8ab3-580a21087a3a 6acc47c4-ad1b-4979-bb38-619e1640a425 3fe0f171-a9cd-4bbe-8b76-e71a559a8f48 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 2e58698b-c709-478c-b62d-91b61179f143 +2def062c-8278-4e39-8ab3-580a21087a3a 2023-09-19 2023-09-19 08:11:22.634321+00 {} \N t \N 3bb5b90d-c085-46bc-857e-ea6f457dc29b 1b5acb28-6d7c-41de-9f41-3c075c005487 3fe0f171-a9cd-4bbe-8b76-e71a559a8f48 \N 59dee9f6-2e93-4adc-97e6-1e8fcdfa5348 \N \N 7301b474-030a-41e7-bd60-e968f722d9b4 +3390b01f-bac6-4803-ac8e-8dccbd682f73 2023-09-19 2023-09-19 08:11:22.669937+00 {} \N t \N 1962369f-111a-40b7-ab94-b0e85b10b3ea 0e1a7b67-8d0b-4895-93ca-4791561b6c4f 14aded2d-f146-4dcc-96bd-3966c857b5b7 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N d0a8a075-432f-459f-a368-e6f94f81e1e5 +1962369f-111a-40b7-ab94-b0e85b10b3ea 2023-09-19 2023-09-19 08:11:22.687889+00 {} \N t \N 3390b01f-bac6-4803-ac8e-8dccbd682f73 3d3f4e4d-a477-4687-8260-d00aa8f8a924 14aded2d-f146-4dcc-96bd-3966c857b5b7 \N 7b38df0e-e595-49de-894f-9ce7ceb90049 \N \N 0b76d432-b05f-4221-a61b-e659c859a011 +bcc060b6-b343-4057-a57b-0a04318b567b 2023-09-19 2023-09-19 08:11:22.723523+00 {} \N t \N 1a8d24bf-acf8-4004-ad07-cce752623d69 1d9941bc-cb7b-4498-9e80-37122dfb4582 cb9394fe-2399-4988-b85e-3d2859e5f76b \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N bacf1551-72be-474a-9482-b64aff09f645 +1a8d24bf-acf8-4004-ad07-cce752623d69 2023-09-19 2023-09-19 08:11:22.74115+00 {} \N t \N bcc060b6-b343-4057-a57b-0a04318b567b 626506dc-5b03-4d07-a0bd-4b5c3dfc71fd cb9394fe-2399-4988-b85e-3d2859e5f76b \N 8f9776b4-04a8-49b0-bbf9-e9b7c46ccc45 \N \N 99be25c5-47c5-4fa2-8891-a7b51d542487 +13ab1479-b250-4c04-b40e-12da44ed4d56 2023-09-19 2023-09-19 08:11:22.786219+00 {} \N t \N bbad1f44-e7d6-44f2-9e0d-97f7959d0ccb cd566101-deb1-4f19-aa9d-6bf9306f876c 4f21160b-6a9f-43e7-a635-ed5af2a8d0e3 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N d51c9fd8-757c-42ed-ab13-bba373096b7a +bbad1f44-e7d6-44f2-9e0d-97f7959d0ccb 2023-09-19 2023-09-19 08:11:22.803647+00 {} \N t \N 13ab1479-b250-4c04-b40e-12da44ed4d56 445d6ec6-1a2e-4b88-9cff-80a5fc4475c2 4f21160b-6a9f-43e7-a635-ed5af2a8d0e3 \N f2777cda-57f1-40a5-8f5a-2f327d6c64b9 \N \N 1887efd8-ce95-48f6-925b-ca74bae48162 +14d82cbe-7e5f-42cf-b6b7-b01bbc7da5b6 2023-09-19 2023-09-19 08:11:22.838448+00 {} \N t \N afe34b12-0ba5-48fd-96f3-b221deb8d34d 1d9941bc-cb7b-4498-9e80-37122dfb4582 72636dfe-1c89-4c03-a903-ce82677e7d52 \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 0f62fa1d-eeea-4ae7-8199-ca1e8984dac4 +afe34b12-0ba5-48fd-96f3-b221deb8d34d 2023-09-19 2023-09-19 08:11:22.855988+00 {} \N t \N 14d82cbe-7e5f-42cf-b6b7-b01bbc7da5b6 a3727678-4394-460f-abe7-4afe84a5137d 72636dfe-1c89-4c03-a903-ce82677e7d52 \N 96cd99db-7f8f-44b2-8e2b-a32d0a8697d8 \N \N 202f8d5b-1162-4b6c-b651-8d65dc4937f4 +52e3cecd-225a-469f-bc31-d82fb1e83c01 2023-09-19 2023-09-19 08:11:22.891381+00 {} \N t \N 015b9a3f-1817-43e1-ad90-baa4af11aa65 6acc47c4-ad1b-4979-bb38-619e1640a425 64078bed-f833-446c-9a7c-18ff12a42da9 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 6701a63f-8939-43c6-a3bd-2d36a3052954 +015b9a3f-1817-43e1-ad90-baa4af11aa65 2023-09-19 2023-09-19 08:11:22.90873+00 {} \N t \N 52e3cecd-225a-469f-bc31-d82fb1e83c01 445d6ec6-1a2e-4b88-9cff-80a5fc4475c2 64078bed-f833-446c-9a7c-18ff12a42da9 \N f2777cda-57f1-40a5-8f5a-2f327d6c64b9 \N \N 3d690c7e-30d0-47df-89c2-e51e06f5db28 +0f710879-6553-49fa-a163-891d708f1a69 2023-09-19 2023-09-19 08:11:22.943574+00 {} \N t \N 3048ba18-6abc-4b76-943f-b69183a8017e cd566101-deb1-4f19-aa9d-6bf9306f876c 70617f99-179a-4a13-bb79-880086a84098 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N c62f013b-c1a2-411e-a33f-a6991ddef53c +3048ba18-6abc-4b76-943f-b69183a8017e 2023-09-19 2023-09-19 08:11:22.960926+00 {} \N t \N 0f710879-6553-49fa-a163-891d708f1a69 2ceed78e-1e10-43c4-bdb7-f632479b2ffc 70617f99-179a-4a13-bb79-880086a84098 \N afcdf211-9d31-437f-8ea8-fdc357447165 \N \N 83d54242-265a-404d-a9d9-d4f7b418b294 +43f24b13-1b12-4960-84a4-d76f3647f7dc 2023-09-19 2023-09-19 08:11:22.995707+00 {} \N t \N c198a505-4c92-4257-a2a7-c445aa74e227 6acc47c4-ad1b-4979-bb38-619e1640a425 a79eaa1e-4f02-41b7-b0d9-e764f939dcb7 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 70891a2e-24bd-4dc3-9149-f8e04ebe9ac4 +c198a505-4c92-4257-a2a7-c445aa74e227 2023-09-19 2023-09-19 08:11:23.013193+00 {} \N t \N 43f24b13-1b12-4960-84a4-d76f3647f7dc cdac2064-2e7a-437e-81d2-ba769e1b8078 a79eaa1e-4f02-41b7-b0d9-e764f939dcb7 \N 85ee99bb-b29d-4034-9229-6dd300446b8d \N \N ec8118d0-e029-4d87-ba3b-ea9f0a7de9bf +508b2540-cbae-459a-a7e5-72eb3bb5c571 2023-09-19 2023-09-19 08:11:23.071054+00 {} \N t \N 61dcccac-5f2a-473a-acbc-b9ff9d0bbc15 27454513-e896-49ec-9c1e-2e5869eef997 b8f98255-958f-4ece-88ed-32fbbff17c9c \N 931b48ec-797c-4c30-a8c7-65aec969f57f \N \N 800108f6-03a8-403e-99f7-301574ed30fc +61dcccac-5f2a-473a-acbc-b9ff9d0bbc15 2023-09-19 2023-09-19 08:11:23.053521+00 {} \N t \N 508b2540-cbae-459a-a7e5-72eb3bb5c571 0e1a7b67-8d0b-4895-93ca-4791561b6c4f b8f98255-958f-4ece-88ed-32fbbff17c9c \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N d11291f0-28b7-48a5-b3fc-3b32296d8f3e +a3e4674e-f99d-4cfd-a5c2-93d3f801be96 2023-09-19 2023-09-19 08:11:23.110765+00 {} \N t \N 565162b8-db80-4044-974f-48e017e0659b 6acc47c4-ad1b-4979-bb38-619e1640a425 1c891872-df5b-472e-9112-352ab1c883c2 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N e9e3ada3-6379-4b6a-8fa0-1d0f6979ed0c +565162b8-db80-4044-974f-48e017e0659b 2023-09-19 2023-09-19 08:11:23.128513+00 {} \N t \N a3e4674e-f99d-4cfd-a5c2-93d3f801be96 7dad0a90-6d43-4f70-8c7d-9069c352f518 1c891872-df5b-472e-9112-352ab1c883c2 \N 2ef503da-0950-4354-adb0-0a43bbba5279 \N \N 93025e1a-1d2f-4997-98b0-b10273481d1e +c8dac803-b69d-4cfd-a0ed-f0fab4204d36 2023-09-19 2023-09-19 08:11:23.164442+00 {} \N t \N 185bf7ea-2108-40ca-b88b-7fedc9a4fb6c 6acc47c4-ad1b-4979-bb38-619e1640a425 3b08aa8d-c85a-4745-a73c-a6aae9b95183 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 7a64429f-a372-4e5f-a8ad-f5d93429f232 +185bf7ea-2108-40ca-b88b-7fedc9a4fb6c 2023-09-19 2023-09-19 08:11:23.182116+00 {} \N t \N c8dac803-b69d-4cfd-a0ed-f0fab4204d36 9830a888-8d32-4b9d-b961-ef5943eae64e 3b08aa8d-c85a-4745-a73c-a6aae9b95183 \N f386cfe8-3c44-495d-9ff4-dba7105e7981 \N \N 1e216ec0-6691-42e0-8ce0-aadfdbe45657 +0e228c63-abc3-4b04-975a-8ab833e7fbea 2023-09-19 2023-09-19 08:11:23.218172+00 {} \N t \N cbd6a624-e261-4521-904b-ac4f02386810 cd566101-deb1-4f19-aa9d-6bf9306f876c ef8821de-0b5c-4f3f-b526-2d10dbfe8a91 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N 513c2f3f-b00a-41ef-90c7-543ff9fbbc38 +cbd6a624-e261-4521-904b-ac4f02386810 2023-09-19 2023-09-19 08:11:23.236305+00 {} \N t \N 0e228c63-abc3-4b04-975a-8ab833e7fbea cdac2064-2e7a-437e-81d2-ba769e1b8078 ef8821de-0b5c-4f3f-b526-2d10dbfe8a91 \N 85ee99bb-b29d-4034-9229-6dd300446b8d \N \N 7cd563d1-a932-45e7-b3c6-18bf17d13517 +b8d582b0-6b6b-4e73-8ae7-f09c76426079 2023-09-19 2023-09-19 08:11:23.271848+00 {} \N t \N 066220bb-2c84-40c9-9c7b-3f5d21e75c13 0e1a7b67-8d0b-4895-93ca-4791561b6c4f a6d08f07-21b7-40f3-a880-7c5bf1e00943 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 9b56d37f-69b3-4520-a8ed-886469e800e2 +066220bb-2c84-40c9-9c7b-3f5d21e75c13 2023-09-19 2023-09-19 08:11:23.289253+00 {} \N t \N b8d582b0-6b6b-4e73-8ae7-f09c76426079 c00f86bf-074e-42fd-a4c7-cfb3ba1694e5 a6d08f07-21b7-40f3-a880-7c5bf1e00943 \N 0c7513fd-7c2f-4ce6-b730-b57328fb0a72 \N \N 5c555394-262f-4414-a943-ecb6c083884d +435d44ec-8b9b-402f-a4dc-28622f68b82e 2023-09-19 2023-09-19 08:11:23.324079+00 {} \N t \N d6f09ecb-e070-4321-aa81-f337816cc845 0e1a7b67-8d0b-4895-93ca-4791561b6c4f 91a79544-29e4-4b58-be0d-04ba35fcad31 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 0433afc4-3aa1-4c51-bd10-1c8423345345 +d6f09ecb-e070-4321-aa81-f337816cc845 2023-09-19 2023-09-19 08:11:23.341636+00 {} \N t \N 435d44ec-8b9b-402f-a4dc-28622f68b82e 85e10979-235e-4159-bb63-4d3c879dbd45 91a79544-29e4-4b58-be0d-04ba35fcad31 \N 8fb50519-53d2-4afb-80ac-d1aa7cf2cedc \N \N f7fe1658-c806-4dca-928f-fb2c65a1e8df +65bc869d-1f70-40f5-b555-7379aee361d0 2023-09-19 2023-09-19 08:11:23.399224+00 {} \N t \N 5131dcef-9ca2-459a-98d7-de43ffe5087d 1d9941bc-cb7b-4498-9e80-37122dfb4582 46d0aee1-0a76-4153-91ef-c33f4302816b \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 881bf01e-6b45-4a97-b588-90730ae15e8e +5131dcef-9ca2-459a-98d7-de43ffe5087d 2023-09-19 2023-09-19 08:11:23.418953+00 {} \N t \N 65bc869d-1f70-40f5-b555-7379aee361d0 e52f3298-5d64-4b63-9027-6191811a82a2 46d0aee1-0a76-4153-91ef-c33f4302816b \N 549718fd-587d-4c60-be19-7024c31865bb \N \N f18276ce-261d-4724-a1c2-e92d9d7d7fab +2ae9f006-89b5-4cb6-9580-9fe516ca2499 2023-09-19 2023-09-19 08:11:23.457856+00 {} \N t \N 7331babd-690b-436c-9548-cce14e154b11 6acc47c4-ad1b-4979-bb38-619e1640a425 44a0fc53-9a1b-42b3-8754-9671c62c84e9 \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 8fb13373-13e7-40f8-851f-e0dc0ae8a1b0 +7331babd-690b-436c-9548-cce14e154b11 2023-09-19 2023-09-19 08:11:23.477649+00 {} \N t \N 2ae9f006-89b5-4cb6-9580-9fe516ca2499 2ceed78e-1e10-43c4-bdb7-f632479b2ffc 44a0fc53-9a1b-42b3-8754-9671c62c84e9 \N afcdf211-9d31-437f-8ea8-fdc357447165 \N \N d85fa851-6367-4afc-bfa0-f4215082e0d8 +4eeb856f-5510-4f2a-95cf-08586c43a849 2023-09-19 2023-09-19 08:11:23.514825+00 {} \N t \N 9663659e-7899-4eef-8d1a-6b3e5dc4d1f0 cd566101-deb1-4f19-aa9d-6bf9306f876c a2f9d8e8-9462-4af3-a320-0f246f1e83ec \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N d812a3d2-dbd0-49a3-bac4-81ba40f7b6fc +9663659e-7899-4eef-8d1a-6b3e5dc4d1f0 2023-09-19 2023-09-19 08:11:23.53245+00 {} \N t \N 4eeb856f-5510-4f2a-95cf-08586c43a849 4d5f0395-8879-427d-aa0c-27bc493bcf5a a2f9d8e8-9462-4af3-a320-0f246f1e83ec \N d71581aa-7555-459a-b08b-43c2bf591fa9 \N \N 4922c5d8-801c-404e-8f80-cfa6912b870b +80a38bf6-4537-4dbf-9446-73fde070e317 2023-09-19 2023-09-19 08:11:23.915429+00 {} \N t \N 09744fc3-57e6-4e35-9a75-fc4cfe139bd7 1426272c-8418-41eb-a429-a2b5f0c18cc1 9cbf3093-b811-4a4e-a754-bd0620703c1c \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N ad208bd2-a144-42b4-8ffa-a51acdf7ed6a +09744fc3-57e6-4e35-9a75-fc4cfe139bd7 2023-09-19 2023-09-19 08:11:23.927557+00 {} \N t 5ac2f13f-664c-4d98-bc73-d4b37298e292 80a38bf6-4537-4dbf-9446-73fde070e317 \N 9cbf3093-b811-4a4e-a754-bd0620703c1c \N \N \N \N 8cba037f-267a-4e63-82b7-4523434c4dde +e9bb49dd-1665-477a-8aba-6a105f066295 2023-09-19 2023-09-19 08:11:23.662091+00 {} \N t \N 48a5168f-0158-4057-8b1d-92b4c0dff5a6 55e19742-b65d-431a-98cb-d82aaa493415 456c300c-ce2a-44e9-930c-ffb800d93da0 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N 2fb5f801-cd1a-4bc6-ac99-283d4da9d7b4 +48a5168f-0158-4057-8b1d-92b4c0dff5a6 2023-09-19 2023-09-19 08:11:23.674004+00 {} \N t 49be4aaa-7156-4d97-938b-9e4d4f67025b e9bb49dd-1665-477a-8aba-6a105f066295 \N 456c300c-ce2a-44e9-930c-ffb800d93da0 \N \N \N \N 64d69c5c-c136-4c16-824b-705fbe1143dd +bd85a46c-6943-4782-bc31-58f88bd1b92d 2023-09-19 2023-09-19 08:11:24.440464+00 {} \N t 5ac2f13f-664c-4d98-bc73-d4b37298e292 0c9e2423-7371-4a4f-a7ef-f0daa1219a6a \N 546349b2-4356-451d-afba-f002e4422fed \N \N \N \N 0a8a1192-403f-4dba-938c-9ab0ca70f554 +54c86691-29f2-4fe7-b78c-63cad0335e3a 2023-09-19 2023-09-19 08:11:23.787704+00 {} \N t \N 29c3d767-2766-469d-bdf2-3716c1c03be5 55e19742-b65d-431a-98cb-d82aaa493415 8d7a91b1-cfde-4957-8032-8fa96b0b18b4 \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N bcfe63fc-8510-49d6-af6e-11fa85ab7fb7 +29c3d767-2766-469d-bdf2-3716c1c03be5 2023-09-19 2023-09-19 08:11:23.799415+00 {} \N t 49be4aaa-7156-4d97-938b-9e4d4f67025b 54c86691-29f2-4fe7-b78c-63cad0335e3a \N 8d7a91b1-cfde-4957-8032-8fa96b0b18b4 \N \N \N \N 890eaf56-d9d2-4b0e-8081-08729751bf68 +09c229a5-0fb7-4f4b-bb82-2cf87f4e39fe 2023-09-19 2023-09-19 08:11:24.043387+00 {} \N t \N 57a0e3f8-7b32-44d5-a3c5-0a2de8ee52a8 1426272c-8418-41eb-a429-a2b5f0c18cc1 127da1ba-674f-4fe8-a197-55b46558197a \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N 663e4fdc-c987-4de6-9887-a2dd70dd4633 +57a0e3f8-7b32-44d5-a3c5-0a2de8ee52a8 2023-09-19 2023-09-19 08:11:24.055249+00 {} \N t d45d85ba-5f8a-48ba-bc49-468c6868c734 09c229a5-0fb7-4f4b-bb82-2cf87f4e39fe \N 127da1ba-674f-4fe8-a197-55b46558197a \N \N \N \N 36baf07d-b3d3-43fc-8506-9c8c8b65fc00 +29eaf92c-6b8c-4e78-b385-952833fc8f9d 2023-09-19 2023-09-19 08:11:24.822427+00 {} \N t \N 77516b59-b76f-450b-98bf-89dce3fee7e2 d03bfb6e-ce9e-4cda-97cd-97afe5e50d3d 8d77cced-a715-4786-8d7c-2381f2411311 \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 8c2f7fb8-87b5-4d8b-8599-ea3f81dfbc89 +c3b7a903-7453-4bcd-a5a4-ec3aba781f2b 2023-09-19 2023-09-19 08:11:24.562746+00 {} \N t \N cf682ec8-7d38-444f-993b-5fc85fa44d88 552b6f6b-c62b-43e7-8030-37ea8933015c 11bc9b27-6fdf-4401-a796-602c360b53d4 \N ca69864b-c033-436e-b16b-e3bbd45c0cc5 \N \N fa553809-dd9d-4ccf-b224-79b98ff3040f +6aa387c7-ed8a-4258-80c7-7f7f972a97b6 2023-09-19 2023-09-19 08:11:24.17233+00 {} \N t \N 081ced88-84f7-4110-bafe-6ed8ee2012a4 d27f908e-0704-45bc-bd7f-ea0283fbfcfd c793df36-9dba-4c99-b30c-ed8678334e89 \N ed4aad54-51a9-494f-ba61-dfb5cfc1698a \N \N 48dca1d6-421b-4971-b1a6-4d4808cc16ab +081ced88-84f7-4110-bafe-6ed8ee2012a4 2023-09-19 2023-09-19 08:11:24.184291+00 {} \N t 5ac2f13f-664c-4d98-bc73-d4b37298e292 6aa387c7-ed8a-4258-80c7-7f7f972a97b6 \N c793df36-9dba-4c99-b30c-ed8678334e89 \N \N \N \N aecec508-9ba0-4428-a027-66b9de261b6f +cf682ec8-7d38-444f-993b-5fc85fa44d88 2023-09-19 2023-09-19 08:11:24.574132+00 {} \N t 49be4aaa-7156-4d97-938b-9e4d4f67025b c3b7a903-7453-4bcd-a5a4-ec3aba781f2b \N 11bc9b27-6fdf-4401-a796-602c360b53d4 \N \N \N \N f8fdc6d9-d46c-42de-8b08-2cb4b66ba4d2 +634a6607-79a2-44b3-af9c-8b2bab633be6 2023-09-19 2023-09-19 08:11:24.297939+00 {} \N t \N 8d6c1fa7-b882-4251-9fd2-5763900fdf0f d27f908e-0704-45bc-bd7f-ea0283fbfcfd a1115b52-6563-4b23-acbe-7fe84630b7b5 \N ed4aad54-51a9-494f-ba61-dfb5cfc1698a \N \N a6972fcc-ab6a-4c3e-b5e1-ee3a00702d31 +8d6c1fa7-b882-4251-9fd2-5763900fdf0f 2023-09-19 2023-09-19 08:11:24.309574+00 {} \N t 5ac2f13f-664c-4d98-bc73-d4b37298e292 634a6607-79a2-44b3-af9c-8b2bab633be6 \N a1115b52-6563-4b23-acbe-7fe84630b7b5 \N \N \N \N 408ccb4c-5fa4-447f-bcce-2cf3a8d37d82 +77516b59-b76f-450b-98bf-89dce3fee7e2 2023-09-19 2023-09-19 08:11:24.833971+00 {} \N t d45d85ba-5f8a-48ba-bc49-468c6868c734 29eaf92c-6b8c-4e78-b385-952833fc8f9d \N 8d77cced-a715-4786-8d7c-2381f2411311 \N \N \N \N aa9b226d-4131-4896-ac36-13ed737ac23c +0c9e2423-7371-4a4f-a7ef-f0daa1219a6a 2023-09-19 2023-09-19 08:11:24.427995+00 {} \N t \N bd85a46c-6943-4782-bc31-58f88bd1b92d 552b6f6b-c62b-43e7-8030-37ea8933015c 546349b2-4356-451d-afba-f002e4422fed \N ca69864b-c033-436e-b16b-e3bbd45c0cc5 \N \N eecd6191-3b40-4634-b013-2eee82ca2b7b +236fc0ba-bc99-43f8-9ad4-842987fac172 2023-09-19 2023-09-19 08:11:24.693035+00 {} \N t \N 33cbb268-788c-4941-8f9a-1c31ec739dda d03bfb6e-ce9e-4cda-97cd-97afe5e50d3d dd528a38-3e54-4a6a-89e3-bb3f7c124fbd \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N 7de1026a-45e2-4abd-83ae-d1a1eecf38bd +33cbb268-788c-4941-8f9a-1c31ec739dda 2023-09-19 2023-09-19 08:11:24.705138+00 {} \N t eeb320b3-0f42-4e80-ba2a-b3e7afc5a05f 236fc0ba-bc99-43f8-9ad4-842987fac172 \N dd528a38-3e54-4a6a-89e3-bb3f7c124fbd \N \N \N \N 0199540a-ed73-4caf-b3d3-aaa1f0f4e8ef +6cc5f937-199e-43c5-b3eb-95226a608ddb 2023-09-19 2023-09-19 08:11:25.070227+00 {} \N t 49be4aaa-7156-4d97-938b-9e4d4f67025b 771351da-3347-46fc-8a6a-91876a563682 \N 7698f6b6-93e8-4e57-8c57-6d9e9f9bb1da \N \N \N \N a35b4139-f5a2-43dd-acbc-08f33091273a +518bdda1-99d9-439d-8c87-67299a3424df 2023-09-19 2023-09-19 08:11:24.949226+00 {} \N t \N 271ff615-0798-41e2-977f-1248c66bb1f1 80ccb32e-9f28-4ae0-83bd-f07ab32925ab 47d077a7-133c-4acb-acbd-a54da8024f16 \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 0010356c-c28f-4f31-82e7-2e308f2320e4 +271ff615-0798-41e2-977f-1248c66bb1f1 2023-09-19 2023-09-19 08:11:24.960814+00 {} \N t 49be4aaa-7156-4d97-938b-9e4d4f67025b 518bdda1-99d9-439d-8c87-67299a3424df \N 47d077a7-133c-4acb-acbd-a54da8024f16 \N \N \N \N 91397a07-17d9-4807-b869-05ee2fb7581e +771351da-3347-46fc-8a6a-91876a563682 2023-09-19 2023-09-19 08:11:25.08871+00 {} \N t \N 6cc5f937-199e-43c5-b3eb-95226a608ddb 80ccb32e-9f28-4ae0-83bd-f07ab32925ab 7698f6b6-93e8-4e57-8c57-6d9e9f9bb1da \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N 28878ad2-3ae2-4a76-98be-ca2f838d3d93 +\. + + +-- +-- Data for Name: nautobot_bgp_models_peergroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_peergroup (id, created, last_updated, _custom_field_data, extra_attributes, name, description, enabled, import_policy, export_policy, autonomous_system_id, role_id, routing_instance_id, secret_id, source_interface_id, source_ip_id, template_id) FROM stdin; +cd566101-deb1-4f19-aa9d-6bf9306f876c 2023-09-19 2023-09-19 08:11:21.239284+00 {} \N EDGE-to-LEAF t \N \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N \N 73849e0b-aa2a-4e81-898c-17e4343d0523 +55e19742-b65d-431a-98cb-d82aaa493415 2023-09-19 2023-09-19 08:11:21.243564+00 {} \N EDGE-to-TRANSIT t \N \N 48bffb72-d91d-4f2a-a92b-a134e6001dfb \N \N \N 3f7b653b-c6c8-4c70-85f5-d5fafde0993b +6acc47c4-ad1b-4979-bb38-619e1640a425 2023-09-19 2023-09-19 08:11:21.252935+00 {} \N EDGE-to-LEAF t \N \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N \N 73849e0b-aa2a-4e81-898c-17e4343d0523 +1426272c-8418-41eb-a429-a2b5f0c18cc1 2023-09-19 2023-09-19 08:11:21.256627+00 {} \N EDGE-to-TRANSIT t \N \N 78f61d14-769b-4a00-bd1c-a1303434e985 \N \N \N 3f7b653b-c6c8-4c70-85f5-d5fafde0993b +456b13dd-fe0b-4504-8983-97f6a578fbd0 2023-09-19 2023-09-19 08:11:21.265704+00 {} \N EDGE-to-LEAF t \N \N ed4aad54-51a9-494f-ba61-dfb5cfc1698a \N \N \N 73849e0b-aa2a-4e81-898c-17e4343d0523 +d27f908e-0704-45bc-bd7f-ea0283fbfcfd 2023-09-19 2023-09-19 08:11:21.270548+00 {} \N EDGE-to-TRANSIT t \N \N ed4aad54-51a9-494f-ba61-dfb5cfc1698a \N \N \N 3f7b653b-c6c8-4c70-85f5-d5fafde0993b +e845657a-6d4e-4d90-93d7-ef7c52d9ef46 2023-09-19 2023-09-19 08:11:21.28335+00 {} \N EDGE-to-LEAF t \N \N ca69864b-c033-436e-b16b-e3bbd45c0cc5 \N \N \N 73849e0b-aa2a-4e81-898c-17e4343d0523 +552b6f6b-c62b-43e7-8030-37ea8933015c 2023-09-19 2023-09-19 08:11:21.28731+00 {} \N EDGE-to-TRANSIT t \N \N ca69864b-c033-436e-b16b-e3bbd45c0cc5 \N \N \N 3f7b653b-c6c8-4c70-85f5-d5fafde0993b +0e1a7b67-8d0b-4895-93ca-4791561b6c4f 2023-09-19 2023-09-19 08:11:21.306503+00 {} \N EDGE-to-LEAF t \N \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N \N 73849e0b-aa2a-4e81-898c-17e4343d0523 +d03bfb6e-ce9e-4cda-97cd-97afe5e50d3d 2023-09-19 2023-09-19 08:11:21.310136+00 {} \N EDGE-to-TRANSIT t \N \N 5ef510b4-342b-47ab-8227-bdf0803a56e6 \N \N \N 3f7b653b-c6c8-4c70-85f5-d5fafde0993b +1d9941bc-cb7b-4498-9e80-37122dfb4582 2023-09-19 2023-09-19 08:11:21.329862+00 {} \N EDGE-to-LEAF t \N \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N \N 73849e0b-aa2a-4e81-898c-17e4343d0523 +80ccb32e-9f28-4ae0-83bd-f07ab32925ab 2023-09-19 2023-09-19 08:11:21.337751+00 {} \N EDGE-to-TRANSIT t \N \N 260595ec-07bb-4fca-8420-0bf4bc376c82 \N \N \N 3f7b653b-c6c8-4c70-85f5-d5fafde0993b +de808608-6453-46ca-9b40-d56ce39b3a59 2023-09-19 2023-09-19 08:11:21.391186+00 {} \N LEAF-to-EDGE t \N \N 0bc95d41-a029-40b8-a549-6f01df630618 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +2ceed78e-1e10-43c4-bdb7-f632479b2ffc 2023-09-19 2023-09-19 08:11:21.39929+00 {} \N LEAF-to-EDGE t \N \N afcdf211-9d31-437f-8ea8-fdc357447165 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +1b5acb28-6d7c-41de-9f41-3c075c005487 2023-09-19 2023-09-19 08:11:21.407386+00 {} \N LEAF-to-EDGE t \N \N 59dee9f6-2e93-4adc-97e6-1e8fcdfa5348 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +9830a888-8d32-4b9d-b961-ef5943eae64e 2023-09-19 2023-09-19 08:11:21.415379+00 {} \N LEAF-to-EDGE t \N \N f386cfe8-3c44-495d-9ff4-dba7105e7981 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +7dad0a90-6d43-4f70-8c7d-9069c352f518 2023-09-19 2023-09-19 08:11:21.423241+00 {} \N LEAF-to-EDGE t \N \N 2ef503da-0950-4354-adb0-0a43bbba5279 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +445d6ec6-1a2e-4b88-9cff-80a5fc4475c2 2023-09-19 2023-09-19 08:11:21.43161+00 {} \N LEAF-to-EDGE t \N \N f2777cda-57f1-40a5-8f5a-2f327d6c64b9 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +cdac2064-2e7a-437e-81d2-ba769e1b8078 2023-09-19 2023-09-19 08:11:21.440102+00 {} \N LEAF-to-EDGE t \N \N 85ee99bb-b29d-4034-9229-6dd300446b8d \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +4d5f0395-8879-427d-aa0c-27bc493bcf5a 2023-09-19 2023-09-19 08:11:21.448223+00 {} \N LEAF-to-EDGE t \N \N d71581aa-7555-459a-b08b-43c2bf591fa9 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +e52f3298-5d64-4b63-9027-6191811a82a2 2023-09-19 2023-09-19 08:11:21.484213+00 {} \N LEAF-to-EDGE t \N \N 549718fd-587d-4c60-be19-7024c31865bb \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +3d3f4e4d-a477-4687-8260-d00aa8f8a924 2023-09-19 2023-09-19 08:11:21.492304+00 {} \N LEAF-to-EDGE t \N \N 7b38df0e-e595-49de-894f-9ce7ceb90049 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +14366eb2-e9f6-416a-9d72-c36afd263eca 2023-09-19 2023-09-19 08:11:21.500407+00 {} \N LEAF-to-EDGE t \N \N cd0334cf-2454-4437-bc1f-67dc4477ec86 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +27454513-e896-49ec-9c1e-2e5869eef997 2023-09-19 2023-09-19 08:11:21.508404+00 {} \N LEAF-to-EDGE t \N \N 931b48ec-797c-4c30-a8c7-65aec969f57f \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +626506dc-5b03-4d07-a0bd-4b5c3dfc71fd 2023-09-19 2023-09-19 08:11:21.516256+00 {} \N LEAF-to-EDGE t \N \N 8f9776b4-04a8-49b0-bbf9-e9b7c46ccc45 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +85e10979-235e-4159-bb63-4d3c879dbd45 2023-09-19 2023-09-19 08:11:21.524013+00 {} \N LEAF-to-EDGE t \N \N 8fb50519-53d2-4afb-80ac-d1aa7cf2cedc \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +a3727678-4394-460f-abe7-4afe84a5137d 2023-09-19 2023-09-19 08:11:21.531766+00 {} \N LEAF-to-EDGE t \N \N 96cd99db-7f8f-44b2-8e2b-a32d0a8697d8 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +c00f86bf-074e-42fd-a4c7-cfb3ba1694e5 2023-09-19 2023-09-19 08:11:21.539684+00 {} \N LEAF-to-EDGE t \N \N 0c7513fd-7c2f-4ce6-b730-b57328fb0a72 \N \N \N a4117cde-c10a-46b7-ada9-240f9d44f766 +\. + + +-- +-- Data for Name: nautobot_bgp_models_peergrouptemplate; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_peergrouptemplate (id, created, last_updated, _custom_field_data, extra_attributes, name, enabled, description, import_policy, export_policy, autonomous_system_id, role_id, secret_id) FROM stdin; +73849e0b-aa2a-4e81-898c-17e4343d0523 2023-09-19 2023-09-19 08:11:21.169697+00 {} \N EDGE-to-LEAF t Global Peer Group for Leafs on Edges BGP-LEAF-IN BGP-LEAF-OUT \N 741f5557-112d-4107-94f6-fa8eb0320c9a \N +a4117cde-c10a-46b7-ada9-240f9d44f766 2023-09-19 2023-09-19 08:11:21.173267+00 {} \N LEAF-to-EDGE t Peer Group for Edges on Leafs BGP-EDGE-IN BGP-EDGE-OUT \N 741f5557-112d-4107-94f6-fa8eb0320c9a \N +3f7b653b-c6c8-4c70-85f5-d5fafde0993b 2023-09-19 2023-09-19 08:11:21.176406+00 {} \N EDGE-to-TRANSIT t Peer Group for Transit Providers on Edges BGP-TRANSIT-IN BGP-TRANSIT-OUT \N 20fdfd05-ed9e-4eac-a281-c879720c3cda \N +\. + + +-- +-- Data for Name: nautobot_bgp_models_peering; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_peering (id, created, last_updated, _custom_field_data, status_id) FROM stdin; +fd1d148d-85c7-4d72-9e34-c3714ee9d199 2023-09-19 2023-09-19 08:11:21.559582+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +3e722512-5f82-4ebc-bc79-98f34af3813d 2023-09-19 2023-09-19 08:11:21.769803+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +2e00c7de-9ab9-44e9-a3eb-3c28efe399d2 2023-09-19 2023-09-19 08:11:21.840512+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +d1a752b2-99d2-4293-8b42-9cde523b2903 2023-09-19 2023-09-19 08:11:21.9108+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a65ef242-178c-441f-b1a1-3e2266e2362c 2023-09-19 2023-09-19 08:11:21.963977+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +41448fc4-7e6f-4eb0-94df-04881b865155 2023-09-19 2023-09-19 08:11:22.017413+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +7f35de97-203b-48d9-92e7-b02bc23da9e0 2023-09-19 2023-09-19 08:11:22.07613+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +dac9f58c-dff4-496b-bb18-87831f801a83 2023-09-19 2023-09-19 08:11:22.129877+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +c2bc2b37-cd4c-42a5-9c02-59c2f1d41089 2023-09-19 2023-09-19 08:11:22.183176+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +f46b8780-78ea-4610-bb6f-77a8f4e59743 2023-09-19 2023-09-19 08:11:22.242372+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +06cb19b4-c305-4b71-b091-2ff4669e17ed 2023-09-19 2023-09-19 08:11:22.29558+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +d7ddbb89-7d49-4219-8e17-46599219f06c 2023-09-19 2023-09-19 08:11:22.370528+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +4b01a130-9e75-4a57-9488-175d200cd034 2023-09-19 2023-09-19 08:11:22.428916+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +83142599-8aba-4123-b7b5-cc80e8050f15 2023-09-19 2023-09-19 08:11:22.481673+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +c10b024a-a337-4796-8122-a3778aff5acf 2023-09-19 2023-09-19 08:11:22.534823+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +3fe0f171-a9cd-4bbe-8b76-e71a559a8f48 2023-09-19 2023-09-19 08:11:22.593062+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +14aded2d-f146-4dcc-96bd-3966c857b5b7 2023-09-19 2023-09-19 08:11:22.64709+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +cb9394fe-2399-4988-b85e-3d2859e5f76b 2023-09-19 2023-09-19 08:11:22.700199+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +4f21160b-6a9f-43e7-a635-ed5af2a8d0e3 2023-09-19 2023-09-19 08:11:22.763088+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +72636dfe-1c89-4c03-a903-ce82677e7d52 2023-09-19 2023-09-19 08:11:22.815842+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +64078bed-f833-446c-9a7c-18ff12a42da9 2023-09-19 2023-09-19 08:11:22.868059+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +70617f99-179a-4a13-bb79-880086a84098 2023-09-19 2023-09-19 08:11:22.920878+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a79eaa1e-4f02-41b7-b0d9-e764f939dcb7 2023-09-19 2023-09-19 08:11:22.973066+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +b8f98255-958f-4ece-88ed-32fbbff17c9c 2023-09-19 2023-09-19 08:11:23.030691+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +1c891872-df5b-472e-9112-352ab1c883c2 2023-09-19 2023-09-19 08:11:23.088036+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +3b08aa8d-c85a-4745-a73c-a6aae9b95183 2023-09-19 2023-09-19 08:11:23.140874+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +ef8821de-0b5c-4f3f-b526-2d10dbfe8a91 2023-09-19 2023-09-19 08:11:23.1946+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a6d08f07-21b7-40f3-a880-7c5bf1e00943 2023-09-19 2023-09-19 08:11:23.248667+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +91a79544-29e4-4b58-be0d-04ba35fcad31 2023-09-19 2023-09-19 08:11:23.301422+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +46d0aee1-0a76-4153-91ef-c33f4302816b 2023-09-19 2023-09-19 08:11:23.373212+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +44a0fc53-9a1b-42b3-8754-9671c62c84e9 2023-09-19 2023-09-19 08:11:23.432495+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a2f9d8e8-9462-4af3-a320-0f246f1e83ec 2023-09-19 2023-09-19 08:11:23.49124+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +456c300c-ce2a-44e9-930c-ffb800d93da0 2023-09-19 2023-09-19 08:11:23.61642+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +8d7a91b1-cfde-4957-8032-8fa96b0b18b4 2023-09-19 2023-09-19 08:11:23.741565+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +9cbf3093-b811-4a4e-a754-bd0620703c1c 2023-09-19 2023-09-19 08:11:23.869124+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +127da1ba-674f-4fe8-a197-55b46558197a 2023-09-19 2023-09-19 08:11:23.99677+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +c793df36-9dba-4c99-b30c-ed8678334e89 2023-09-19 2023-09-19 08:11:24.126041+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a1115b52-6563-4b23-acbe-7fe84630b7b5 2023-09-19 2023-09-19 08:11:24.252849+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +546349b2-4356-451d-afba-f002e4422fed 2023-09-19 2023-09-19 08:11:24.381971+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +11bc9b27-6fdf-4401-a796-602c360b53d4 2023-09-19 2023-09-19 08:11:24.515357+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +dd528a38-3e54-4a6a-89e3-bb3f7c124fbd 2023-09-19 2023-09-19 08:11:24.644622+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +8d77cced-a715-4786-8d7c-2381f2411311 2023-09-19 2023-09-19 08:11:24.774358+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +47d077a7-133c-4acb-acbd-a54da8024f16 2023-09-19 2023-09-19 08:11:24.903669+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +7698f6b6-93e8-4e57-8c57-6d9e9f9bb1da 2023-09-19 2023-09-19 08:11:25.028985+00 {} 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_bgp_models_peeringrole; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_bgp_models_peeringrole (id, created, last_updated, _custom_field_data, name, slug, color, description) FROM stdin; +b90edef6-fbc6-49ba-a5be-aa23dfe0ef26 2023-09-19 2023-09-19 08:11:21.159143+00 {} Provider provider 00bcd4 +20fdfd05-ed9e-4eac-a281-c879720c3cda 2023-09-19 2023-09-19 08:11:21.161024+00 {} Customer customer 4caf50 +741f5557-112d-4107-94f6-fa8eb0320c9a 2023-09-19 2023-09-19 08:11:21.162672+00 {} Peer peer deafcc +c02651c4-be2f-463e-ac64-305c67586685 2023-09-19 2023-09-19 08:11:21.164144+00 {} RS rs 3f55cc +1894cb21-b1cf-4349-a1f2-eb249d301391 2023-09-19 2023-09-19 08:11:21.165687+00 {} RS-Client rs-client d11c4f +\. + + +-- +-- Data for Name: nautobot_chatops_accessgrant; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_chatops_accessgrant (id, created, last_updated, command, subcommand, grant_type, name, value) FROM stdin; +59109c04-b53c-4ed9-abe0-d576a89ce9f7 2023-09-19 2023-09-19 08:11:32.378314+00 * * organization Network to Code T09LQ7E9E +ceba2e63-ecb3-4aa7-828b-2528af436ace 2023-09-19 2023-09-19 08:11:32.380937+00 * * channel ntc-chat * +e3570d41-def4-47cf-ade5-ca32d85f5b82 2023-09-19 2023-09-19 08:11:32.382742+00 * * channel nautobot-chat C01NWUU6TSA +7abb2d03-9a70-4c73-b3fb-b3bf32656d44 2023-09-19 2023-09-19 08:11:32.384449+00 * * user All Users * +\. + + +-- +-- Data for Name: nautobot_chatops_commandlog; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_chatops_commandlog (id, start_time, runtime, user_name, user_id, platform, platform_color, command, subcommand, status, details, params) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_chatops_commandtoken; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_chatops_commandtoken (id, created, last_updated, comment, platform, token) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_data_validation_engine_datacompliance; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_data_validation_engine_datacompliance (id, created, last_updated, _custom_field_data, compliance_class_name, last_validation_date, object_id, validated_object_str, validated_attribute, validated_attribute_value, valid, message, content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_data_validation_engine_minmaxvalidationrule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_data_validation_engine_minmaxvalidationrule (id, created, last_updated, name, slug, enabled, error_message, field, min, max, content_type_id, _custom_field_data) FROM stdin; +c6e48cf4-be57-4766-97cb-91388345f670 2023-09-19 2023-09-19 08:11:32.39585+00 Max VLAN ID max-vlan-id t \N vid \N 3999 12 {} +\. + + +-- +-- Data for Name: nautobot_data_validation_engine_regularexpressionvalidationrule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_data_validation_engine_regularexpressionvalidationrule (id, created, last_updated, name, slug, enabled, error_message, field, regular_expression, content_type_id, _custom_field_data, context_processing) FROM stdin; +914a04a7-ab8f-4c41-9c3a-ebb4abaa499e 2023-09-19 2023-09-19 08:11:32.39019+00 Device name device-name t The device name does not conform to the defined hostname standard: aaa00-descriptor-01, where aaa is 3 character location, 00 is the number with location (optional), leaf or other descriptor for the device of varying length and 01 is the unit number. name ^[a-z]{3}[0-9]{0,2}\\-[a-z0-9]*\\-[0-9]{2}(\\.[^.]+)*$ 3 {} f +\. + + +-- +-- Data for Name: nautobot_data_validation_engine_requiredvalidationrule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_data_validation_engine_requiredvalidationrule (id, created, last_updated, _custom_field_data, name, slug, enabled, error_message, field, content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_data_validation_engine_uniquevalidationrule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_data_validation_engine_uniquevalidationrule (id, created, last_updated, _custom_field_data, name, slug, enabled, error_message, field, max_instances, content_type_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_contactlcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_contactlcm (id, created, last_updated, _custom_field_data, name, address, phone, email, comments, priority, type, contract_id) FROM stdin; +5bc070fc-cccc-42d4-9eb1-17a44a5a95cc 2023-09-19 2023-09-19 08:11:11.015918+00 {} Alexander Murray 2 Georges Dock, IFSC, Dublin 1, Ireland a.murray@arista.com Multicast and HF trading expert. 100 Tier 1 ef16216a-2808-42e3-930f-3c92fc3c038b +461b8920-eee7-49e5-9be4-5b7d6985b4fd 2023-09-19 2023-09-19 08:11:11.017485+00 {} Huxley Thompson Southfields, London (44) 271828-314 thompsonh@arista.com 100 Owner ef16216a-2808-42e3-930f-3c92fc3c038b +2f1ae9b1-e8bb-462f-bf24-0fc25e4adfd4 2023-09-19 2023-09-19 08:11:11.018338+00 {} Marek Stross Cisco, Krakow 48-506111356 ms@cisco.com 100 Owner ec6345b1-707e-4fad-96e8-136589a0cd6f +ed086b70-4d11-4d72-95d4-46df70051368 2023-09-19 2023-09-19 08:11:11.019241+00 {} Stan Podolski Cisco, Diegem, Brussels, Belgium 553-6387-500 stan.p@cisco.com 100 Tier 1 ec6345b1-707e-4fad-96e8-136589a0cd6f +d7312415-bab2-4fb1-b44e-8d7777f54861 2023-09-19 2023-09-19 08:11:11.019973+00 {} Marco Green Cisco, Diegem, Brussels, Belgium marco@cisco.com 100 Owner d3780b5d-5e76-41ac-9499-26ce46a6ceea +cca23eef-feff-4868-92b6-1f1d83be5d29 2023-09-19 2023-09-19 08:11:11.020735+00 {} Steve Wozniak Ul. Domaniewska 39B, Warsaw woz@cisco.com Knows the Catalyst 6500 hardware really well. 100 Primary d3780b5d-5e76-41ac-9499-26ce46a6ceea +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_contractlcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_contractlcm (id, created, last_updated, _custom_field_data, name, number, start, "end", cost, support_level, currency, contract_type, comments, provider_id) FROM stdin; +ef16216a-2808-42e3-930f-3c92fc3c038b 2023-09-19 2023-09-19 08:11:10.994512+00 {} Arista EOS \N 2021-11-09 2023-05-17 150000.00 Enterprise GBP Software 3529b811-bdb3-4e99-a023-c14186e4f9b2 +ec6345b1-707e-4fad-96e8-136589a0cd6f 2023-09-19 2023-09-19 08:11:11.004926+00 {} Catalyst 6500 \N 2014-03-14 2024-06-14 600000.00 Next Day USD Hardware 2f313d8a-052c-4390-87b6-89f4f78e1af7 +d3780b5d-5e76-41ac-9499-26ce46a6ceea 2023-09-19 2023-09-19 08:11:11.014907+00 {} Catalyst Supervisor 720 \N 2017-12-06 2023-03-07 120000.00 72h USD Hardware 2f313d8a-052c-4390-87b6-89f4f78e1af7 +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_cvelcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_cvelcm (id, created, last_updated, _custom_field_data, name, published_date, link, description, severity, cvss, cvss_v2, cvss_v3, fix, comments, status_id) FROM stdin; +4d397720-bbbd-4ee4-b2fd-8548fcd29b9f 2023-09-19 2023-09-19 08:11:11.059327+00 {} CVE-2020-3508 2020-09-24 https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-esp20-arp-dos-GvHVggqJ \N High 7.4 \N \N \N \N +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace (id, devicesoftwarevalidationresult_id, validatedsoftwarelcm_id) FROM stdin; +1 618869ad-cc59-46a7-bc5d-3b08d8a1face 8850a220-c4af-4e37-9611-34e812abc373 +2 e84dc27b-ccc9-4086-9e23-0d73bebcb5bd d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +3 11c30533-dba4-41a4-8887-3dd8d00fbc0e d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +4 57f37ee6-ef18-469b-870e-9a98eda00af7 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +5 3c176ee4-2f6a-4489-ad2f-28d2843744e5 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +6 cb6b8046-064f-43c2-9e14-a0bf9a483088 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +7 77f372ba-e0dd-4901-b59c-f799044af674 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +8 30ec351d-7cce-41e1-9811-3ab8e8bc14f8 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +9 43e4c47b-5ae1-4458-9a9d-f457589c47a0 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +10 6c6329fb-f491-4483-9852-a3a7aac37827 8850a220-c4af-4e37-9611-34e812abc373 +11 e740368f-0d41-40ce-880f-d6eb80fd5f24 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +12 95a311b5-cc03-4b9d-8d46-38f6a3287714 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +13 9408d534-3f87-4128-b37f-e3797a077789 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +14 f8da9654-2e60-4d08-8dc9-aa31b919934d d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +15 d14caf71-b86d-42c8-b78d-f0668c683417 8850a220-c4af-4e37-9611-34e812abc373 +16 4c3d5861-4c5e-4bcb-90aa-38815321972c 8850a220-c4af-4e37-9611-34e812abc373 +17 7d699d95-3244-44a8-8e8f-a1e57eb2d179 8850a220-c4af-4e37-9611-34e812abc373 +18 bd74b3e5-172f-4e18-a2d5-ec2fc373035a d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +19 b63140dd-f914-4463-8d3a-999fa3b7bf74 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +20 5f650c12-1bc6-4b80-b46f-0e7328290c0b d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +21 7abe6ccd-8774-40e4-b642-20c58a594bd5 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +22 00f31a5e-4a52-4708-80b0-07c2568b8c9c d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +23 cf22e783-a4cb-4de4-a701-64a41a1ebfb7 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +24 a70a7036-465c-4a74-915c-912903f885b3 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +25 418b1ed3-d5b0-4843-a2e0-6964136836be d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 +26 6e55dfdd-0e57-466a-9264-cddb9df488b5 8850a220-c4af-4e37-9611-34e812abc373 +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult (id, created, last_updated, _custom_field_data, is_validated, last_run, run_type, device_id, software_id) FROM stdin; +618869ad-cc59-46a7-bc5d-3b08d8a1face 2023-09-19 2023-09-19 08:11:11.134848+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 06448d2a-efc7-46ed-835c-b5dcf8178556 b5b681da-e1c4-4594-9f09-0708560d94fd +e75ffcfa-5cd4-401e-bf0c-4598320b2662 2023-09-19 2023-09-19 08:11:11.173889+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +f8746b24-eb92-48b8-8ef8-e0b8492f330e 2023-09-19 2023-09-19 08:11:11.211649+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run bed003a4-068f-493c-8519-b7ff3ab94f63 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +e84dc27b-ccc9-4086-9e23-0d73bebcb5bd 2023-09-19 2023-09-19 08:11:11.273784+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run a6751a1a-e274-445d-ab2f-06ead1cb6d3c 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +11c30533-dba4-41a4-8887-3dd8d00fbc0e 2023-09-19 2023-09-19 08:11:11.32491+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 6be296b5-5db3-407b-915b-ebcfa5d73aa3 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +57f37ee6-ef18-469b-870e-9a98eda00af7 2023-09-19 2023-09-19 08:11:11.374391+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 5aa04755-8fbe-4378-97ed-b23f0ac0e928 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +3c176ee4-2f6a-4489-ad2f-28d2843744e5 2023-09-19 2023-09-19 08:11:11.423121+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 17fa82e4-d0ad-4092-b3c0-1f597bc84883 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +cb6b8046-064f-43c2-9e14-a0bf9a483088 2023-09-19 2023-09-19 08:11:11.473984+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 684ba856-7ace-4a36-9c56-e646e71ebb6a 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +77f372ba-e0dd-4901-b59c-f799044af674 2023-09-19 2023-09-19 08:11:11.531189+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run bb5af4d5-3007-4d6a-8965-10db2ec91b76 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +30ec351d-7cce-41e1-9811-3ab8e8bc14f8 2023-09-19 2023-09-19 08:11:11.590196+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +43e4c47b-5ae1-4458-9a9d-f457589c47a0 2023-09-19 2023-09-19 08:11:11.648375+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run c2fe5345-d2c7-4214-8406-31b2b2b87aa2 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +6c6329fb-f491-4483-9852-a3a7aac37827 2023-09-19 2023-09-19 08:11:11.698004+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run c1ad30ce-4757-4bc7-96f1-77522ca019d4 b5b681da-e1c4-4594-9f09-0708560d94fd +829c3afe-33ea-48cc-98e5-d545545a99f7 2023-09-19 2023-09-19 08:11:11.725513+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 45eac4b1-0a5a-4146-88b5-d0118ba22a0e 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +7e163215-9c64-4d79-917b-9164e3714496 2023-09-19 2023-09-19 08:11:11.7529+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 16745b0e-5964-4f3e-99e3-aa1646f275f5 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +e740368f-0d41-40ce-880f-d6eb80fd5f24 2023-09-19 2023-09-19 08:11:11.802951+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run ec08f4ed-e461-4aac-8015-9a1daa49fae6 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +95a311b5-cc03-4b9d-8d46-38f6a3287714 2023-09-19 2023-09-19 08:11:11.852023+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 0d12dbec-16f5-414f-ab68-cd3eda8edb9b 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +9408d534-3f87-4128-b37f-e3797a077789 2023-09-19 2023-09-19 08:11:11.90165+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 1642541a-a832-42b8-b80b-c661b9fdd9dc 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +f8da9654-2e60-4d08-8dc9-aa31b919934d 2023-09-19 2023-09-19 08:11:11.952362+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run f23f0755-7e34-4610-a5af-d21f4d669186 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +b77fe66b-e965-4a16-b375-6678f98909bf 2023-09-19 2023-09-19 08:11:11.97491+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 45cca71d-85a7-42ac-b792-af8b4aef87cd \N +d14caf71-b86d-42c8-b78d-f0668c683417 2023-09-19 2023-09-19 08:11:12.024428+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run b150f1d5-6b4c-46a4-8a0e-e6c79280b63b b5b681da-e1c4-4594-9f09-0708560d94fd +6540f254-c9e4-4464-9a98-518ca67590e4 2023-09-19 2023-09-19 08:11:12.049096+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 80f9eb01-db6d-4939-9f2e-ef2c222cedee \N +c4e50f4b-51cd-4de2-a442-5a97c322d45c 2023-09-19 2023-09-19 08:11:12.076855+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 720ef39b-a75e-4681-ac70-4237598974d0 5e3ae3ca-254d-4718-80af-03bda2d2171c +165402b4-5ba9-4276-a855-eed058dca631 2023-09-19 2023-09-19 08:11:12.099508+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 6442be3b-16d7-4788-ad3f-fb88282ea42d \N +83113f43-084b-41ae-90a7-0d69d2651230 2023-09-19 2023-09-19 08:11:12.121644+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run b79eb1e8-3a2c-4d13-b130-92eb82f6b8af \N +c545b604-a34b-41b5-9369-d1e9bc544ea0 2023-09-19 2023-09-19 08:11:12.144039+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 4f1092db-761d-4ae6-9d20-275e186b67ea \N +4c3d5861-4c5e-4bcb-90aa-38815321972c 2023-09-19 2023-09-19 08:11:12.194879+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 2646bbfd-1134-4b76-af3d-6ae0927d5916 b5b681da-e1c4-4594-9f09-0708560d94fd +30da756a-d103-4322-a830-46971f61a0af 2023-09-19 2023-09-19 08:11:12.222679+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run b99c3111-0b6d-4a36-8207-45d2d00e7e37 7227df35-5814-4d77-9efc-113ee8abf4d0 +31d8fa3c-fd64-44cd-9ec4-afc24363bb60 2023-09-19 2023-09-19 08:11:12.250547+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 7227df35-5814-4d77-9efc-113ee8abf4d0 +adef1664-5f9e-4b5e-9ad2-163eb29c9249 2023-09-19 2023-09-19 08:11:12.275546+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 919660c6-0654-4904-9cf5-61a03cc069c3 \N +2903ccaf-a381-40b6-a2bd-6b0f37928386 2023-09-19 2023-09-19 08:11:12.299162+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run c8fef37f-699a-4f5a-b228-495cb5702a43 \N +0b2da13f-5685-4c00-a0b3-c5f65afa60c3 2023-09-19 2023-09-19 08:11:12.328056+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run be8b5ac0-0df7-4eff-90f1-4c86f16c362e 7227df35-5814-4d77-9efc-113ee8abf4d0 +84282035-51ad-49f0-b18f-aab3af003960 2023-09-19 2023-09-19 08:11:12.356802+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 182b57af-ef9e-428d-916d-7f18e14357d1 7227df35-5814-4d77-9efc-113ee8abf4d0 +7d699d95-3244-44a8-8e8f-a1e57eb2d179 2023-09-19 2023-09-19 08:11:12.408712+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run beabae34-b69a-4aaa-bf44-33ebd7d2e4f9 b5b681da-e1c4-4594-9f09-0708560d94fd +d6c47466-53b0-45d1-bbe4-5867baa5781d 2023-09-19 2023-09-19 08:11:12.436506+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +826cb9da-fe6a-4b41-a333-1973b1817239 2023-09-19 2023-09-19 08:11:12.464735+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run b1d1e038-acb3-468f-810b-5d0f549a66cc 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +bd74b3e5-172f-4e18-a2d5-ec2fc373035a 2023-09-19 2023-09-19 08:11:12.515071+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run c2bb0304-fcac-4397-9d63-e7503688aae6 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +b63140dd-f914-4463-8d3a-999fa3b7bf74 2023-09-19 2023-09-19 08:11:12.563788+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +5f650c12-1bc6-4b80-b46f-0e7328290c0b 2023-09-19 2023-09-19 08:11:12.613545+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run dbf9eba6-2713-48f9-94df-7fa36fd3880a 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +7abe6ccd-8774-40e4-b642-20c58a594bd5 2023-09-19 2023-09-19 08:11:12.66457+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run bf032a0f-20ad-4ae4-a37b-a4971292c8b3 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +00f31a5e-4a52-4708-80b0-07c2568b8c9c 2023-09-19 2023-09-19 08:11:12.713532+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 06fa92a5-cddc-47aa-9a02-22b140d16be6 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +cf22e783-a4cb-4de4-a701-64a41a1ebfb7 2023-09-19 2023-09-19 08:11:12.763314+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run ebe97465-935f-4bf8-b29a-d0e1100d5528 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +a70a7036-465c-4a74-915c-912903f885b3 2023-09-19 2023-09-19 08:11:12.812279+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run 1724a7eb-1663-47da-abaa-00b6271c9754 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +418b1ed3-d5b0-4843-a2e0-6964136836be 2023-09-19 2023-09-19 08:11:12.861428+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run bf4037a6-1802-48e9-8e95-3fd2326f4bdf 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +0df60930-2a54-43bb-bb8a-3337cc535cf4 2023-09-19 2023-09-19 08:11:12.888488+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run cdece2fc-4010-45d0-9949-3de52bb707c5 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +9bbd4f2a-c16e-458b-9dad-6173c559ada9 2023-09-19 2023-09-19 08:11:12.910644+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run a420d520-ef19-46a3-90a8-6f47be57b3d6 \N +e8a1e48a-477c-4220-8a26-2b4eb355f5b8 2023-09-19 2023-09-19 08:11:12.932563+00 {} f 2023-09-19 08:11:11.073866+00 full-report-run 4620c38c-b222-443c-9e31-98ef97b2e756 \N +6e55dfdd-0e57-466a-9264-cddb9df488b5 2023-09-19 2023-09-19 08:11:12.999113+00 {} t 2023-09-19 08:11:11.073866+00 full-report-run fa7f3228-db3e-449a-9e99-c5185b5de9b7 b5b681da-e1c4-4594-9f09-0708560d94fd +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_hardwarelcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_hardwarelcm (id, created, last_updated, _custom_field_data, inventory_item, release_date, end_of_sale, end_of_support, end_of_sw_releases, end_of_security_patches, documentation_url, comments, device_type_id) FROM stdin; +dac6df97-0f83-44bc-be9f-04bc8f6cf411 2023-09-19 2023-09-19 08:11:10.954779+00 {} WS-SUP720-3BXL 2011-04-12 2013-01-30 2018-01-31 2013-12-01 2016-12-01 https://www.cisco.com/c/en/us/products/collateral/switches/catalyst-6500-series-switches/product_data_sheet09186a0080159856.html \N \N +a42bee0d-17ce-4d24-92dc-6e608883747e 2023-09-19 2023-09-19 08:11:10.964246+00 {} \N 2021-11-09 2021-12-01 2024-12-01 2023-12-01 2023-12-01 https://www.arista.com/en/products/7150-series \N 08030f83-dcbe-4351-b98a-d5e735fade66 +8d5f7254-3709-460d-a037-b46c16831f53 2023-09-19 2023-09-19 08:11:10.973587+00 {} \N 2020-11-09 2021-12-01 2022-12-01 2022-12-01 2023-06-01 https://www.arista.com/en/products/7280-series \N 4102bba0-6355-4099-8dbc-ade709900a05 +bdd1c8cc-0d17-4b30-828b-5f712afdc40a 2023-09-19 2023-09-19 08:11:10.98291+00 {} \N 2005-02-15 2020-10-30 2025-10-31 2021-10-30 2023-10-30 https://www.cisco.com/c/en/us/support/switches/catalyst-6509-e-switch/model.html \N 7e57574a-1469-40cc-8b76-f07a72c7173c +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 (id, inventoryitemsoftwarevalidationresult_id, validatedsoftwarelcm_id) FROM stdin; +1 b534b716-7dfb-434c-b69a-811ba1cf9b52 a0b69122-5969-4b73-be11-b21366d39035 +2 7e4238a7-61c5-43ed-bdf3-96f30bcbbfbc a0b69122-5969-4b73-be11-b21366d39035 +3 c94f9207-49df-4c51-9b68-9e6bfe26c8d0 a0b69122-5969-4b73-be11-b21366d39035 +4 040be372-80e9-4fa5-9e33-d65dcef05db5 a0b69122-5969-4b73-be11-b21366d39035 +5 b9b99bd5-5909-4cea-ab49-b93578173e4b a0b69122-5969-4b73-be11-b21366d39035 +6 75466fc7-8160-48a6-adbb-e190591eb4c0 a0b69122-5969-4b73-be11-b21366d39035 +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f (id, created, last_updated, _custom_field_data, is_validated, last_run, run_type, inventory_item_id, software_id) FROM stdin; +b534b716-7dfb-434c-b69a-811ba1cf9b52 2023-09-19 2023-09-19 08:11:13.077195+00 {} f 2023-09-19 08:11:13.030895+00 full-report-run be0fe922-f660-483a-b305-92106f09c597 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +7e4238a7-61c5-43ed-bdf3-96f30bcbbfbc 2023-09-19 2023-09-19 08:11:13.11811+00 {} f 2023-09-19 08:11:13.030895+00 full-report-run 4dfda64d-518c-4be1-b7fe-6b94a4302699 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +c94f9207-49df-4c51-9b68-9e6bfe26c8d0 2023-09-19 2023-09-19 08:11:13.160315+00 {} f 2023-09-19 08:11:13.030895+00 full-report-run 17857e38-779b-46a8-ab2a-d0f875be7719 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +040be372-80e9-4fa5-9e33-d65dcef05db5 2023-09-19 2023-09-19 08:11:13.202295+00 {} f 2023-09-19 08:11:13.030895+00 full-report-run e498552c-6beb-4701-9e59-3c4bafc9ee75 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +b9b99bd5-5909-4cea-ab49-b93578173e4b 2023-09-19 2023-09-19 08:11:13.244531+00 {} f 2023-09-19 08:11:13.030895+00 full-report-run a13df2d7-35f0-4849-9411-7ce4f8359a49 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +75466fc7-8160-48a6-adbb-e190591eb4c0 2023-09-19 2023-09-19 08:11:13.284984+00 {} f 2023-09-19 08:11:13.030895+00 full-report-run 4e17c8d1-0263-4fe6-aa5f-9654c0c9b89f 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_providerlcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_providerlcm (id, created, last_updated, _custom_field_data, name, description, physical_address, country, phone, email, portal_url, comments) FROM stdin; +3529b811-bdb3-4e99-a023-c14186e4f9b2 2023-09-19 2023-09-19 08:11:10.933052+00 {} Arista Secured Disposal of Devices 5453 Great America Parkway, Santa Clara, CA 95054 USA +1-408-547-5500 tac@arista.com https://www.arista.com/en/support/ +2f313d8a-052c-4390-87b6-89f4f78e1af7 2023-09-19 2023-09-19 08:11:10.942126+00 {} Cisco Cisco Systems, Inc. 170 West Tasman Dr. San Jose, CA 95134 USA USA (800) 553-6387 (NETS tac@cisco.com https://mycase.cloudapps.cisco.com/case +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_softwareimagelcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_softwareimagelcm (id, created, last_updated, _custom_field_data, image_file_name, download_url, image_file_checksum, default_image, software_id, hashing_algorithm) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types (id, softwareimagelcm_id, devicetype_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items (id, softwareimagelcm_id, inventoryitem_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags (id, softwareimagelcm_id, tag_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_softwarelcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_softwarelcm (id, created, last_updated, _custom_field_data, version, alias, release_date, end_of_support, documentation_url, long_term_support, pre_release, device_platform_id) FROM stdin; +914ecbd4-0f2d-4447-9d80-f5b4d791a968 2023-09-19 2023-09-19 08:11:10.602809+00 {} 4.24.8M \N 2021-10-11 2023-04-05 https://www.arista.com/en/um-eos t f 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +7227df35-5814-4d77-9efc-113ee8abf4d0 2023-09-19 2023-09-19 08:11:10.604489+00 {} 4.26.4M veos-lab 2021-12-12 2024-04-15 https://www.arista.com/en/um-eos t f 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +b5b681da-e1c4-4594-9f09-0708560d94fd 2023-09-19 2023-09-19 08:11:10.605238+00 {} 12.2(33)SXI14 Cat6500-Sup720 2014-09-22 2017-08-31 https://www.cisco.com/c/en/us/support/ios-nx-os-software/ios-software-releases-12-2-sx/series.html t f 747f56fb-3012-43e4-923c-aed6195b585c +40a3aef0-b913-4e62-b96f-5aeb228a9b9b 2023-09-19 2023-09-19 08:11:10.606014+00 {} 720 ROMMON 8.5(4) 2010-01-12 2015-04-30 https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst6500/rommon/OL_5631.html t f 747f56fb-3012-43e4-923c-aed6195b585c +5e3ae3ca-254d-4718-80af-03bda2d2171c 2023-09-19 2023-09-19 08:11:10.606706+00 {} 16.9.1 Fuji-16.9.1 2018-07-19 2023-04-05 https://www.cisco.com/c/en/us/td/docs/routers/csr1000/release/notes/xe-16/csr1000v_rn-16-9-book.html f f 747f56fb-3012-43e4-923c-aed6195b585c +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm (id, created, last_updated, _custom_field_data, start, "end", preferred, software_id) FROM stdin; +d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 2023-09-19 2023-09-19 08:11:10.627073+00 {} 2020-09-15 2024-03-09 t 914ecbd4-0f2d-4447-9d80-f5b4d791a968 +8850a220-c4af-4e37-9611-34e812abc373 2023-09-19 2023-09-19 08:11:10.641587+00 {} 2015-09-15 2025-01-30 t b5b681da-e1c4-4594-9f09-0708560d94fd +a0b69122-5969-4b73-be11-b21366d39035 2023-09-19 2023-09-19 08:11:10.654857+00 {} 2013-09-15 2023-05-12 t 40a3aef0-b913-4e62-b96f-5aeb228a9b9b +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc (id, validatedsoftwarelcm_id, devicerole_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc (id, validatedsoftwarelcm_id, devicetype_id) FROM stdin; +1 d7fe3b3e-117b-4cb8-9d51-028dc0fc0515 08030f83-dcbe-4351-b98a-d5e735fade66 +2 8850a220-c4af-4e37-9611-34e812abc373 7e57574a-1469-40cc-8b76-f07a72c7173c +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices (id, validatedsoftwarelcm_id, device_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b (id, validatedsoftwarelcm_id, inventoryitem_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags (id, validatedsoftwarelcm_id, tag_id) FROM stdin; +1 a0b69122-5969-4b73-be11-b21366d39035 245b7d60-398a-46ef-a7fe-4919b1c57116 +\. + + +-- +-- Data for Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm (id, created, last_updated, _custom_field_data, cve_id, device_id, inventory_item_id, software_id, status_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_device_onboarding_onboardingdevice; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_onboarding_onboardingdevice (id, enabled, device_id) FROM stdin; +c33f363b-846d-4ec5-8f11-c56f60db2022 t 9c6a5d6f-4215-4b59-95d8-7d8f3da8393b +52d23463-903c-496d-ac8d-3e59fe2afcd8 t bed003a4-068f-493c-8519-b7ff3ab94f63 +965dd380-e3eb-4eaf-a00a-92e9b3ad12fc t a6751a1a-e274-445d-ab2f-06ead1cb6d3c +90ea601a-3926-47e3-be35-ca0c2ca03536 t 6be296b5-5db3-407b-915b-ebcfa5d73aa3 +2186cf4e-9a51-4199-99b3-6ab82cf80a3a t 5aa04755-8fbe-4378-97ed-b23f0ac0e928 +fc5b0ce1-7f79-4d46-a715-aaf76a8526d4 t 17fa82e4-d0ad-4092-b3c0-1f597bc84883 +768da69d-7858-41bf-b436-13e856f72eb1 t 684ba856-7ace-4a36-9c56-e646e71ebb6a +e0982a24-6f24-4ccd-96d1-2802ab2cf25e t bb5af4d5-3007-4d6a-8965-10db2ec91b76 +c0909294-d349-48fa-a558-f2be30796657 t d04b6b77-8d24-48b3-9f75-1b087d7ef3d8 +c6ea717c-d80a-41a1-aab9-38855921b634 t c2fe5345-d2c7-4214-8406-31b2b2b87aa2 +d4c525c7-afd5-4242-86c3-309a12d80045 t 5fa9eb70-32f4-4ace-8eb5-a8df4f156adc +f0daa42e-f263-4aae-b200-fb54ae286341 t b1d1e038-acb3-468f-810b-5d0f549a66cc +0db6237d-46ec-4707-9316-40c985d9a8d2 t c2bb0304-fcac-4397-9d63-e7503688aae6 +f6cc612e-0d69-472b-8dc1-6b635357c03b t 8601b852-fc8c-4285-89e0-b0ff3ca5f8ae +15679f22-3072-40f6-a3b7-64f2747ae8c0 t dbf9eba6-2713-48f9-94df-7fa36fd3880a +df375679-12ee-4742-a8eb-64502a320f91 t bf032a0f-20ad-4ae4-a37b-a4971292c8b3 +743bcaab-1031-4c69-921e-f89a6a5710db t 06fa92a5-cddc-47aa-9a02-22b140d16be6 +7be7799f-6449-4b03-b086-e688996dd2b6 t ebe97465-935f-4bf8-b29a-d0e1100d5528 +e63fa072-15d2-4528-b6be-b10026fb2683 t 1724a7eb-1663-47da-abaa-00b6271c9754 +385c5ed0-943d-489a-8906-916c548a38db t bf4037a6-1802-48e9-8e95-3fd2326f4bdf +3bbf8fc0-8e7a-4823-9443-01e935109974 t 45eac4b1-0a5a-4146-88b5-d0118ba22a0e +38ec7d0b-a104-4bb2-8059-a7279d14f8d6 t 16745b0e-5964-4f3e-99e3-aa1646f275f5 +00cde69a-e0be-4e5e-9373-5183895fcdc7 t ec08f4ed-e461-4aac-8015-9a1daa49fae6 +2f4a79ee-9e55-4ed9-83c0-f3751f1f9595 t 0d12dbec-16f5-414f-ab68-cd3eda8edb9b +41183d3c-7587-4224-ad02-f221409fdd55 t 1642541a-a832-42b8-b80b-c661b9fdd9dc +d0ad312f-23a5-4ea6-b1dd-37fa67d70170 t f23f0755-7e34-4610-a5af-d21f4d669186 +7bd60c84-1e3a-4990-8f81-255c9b8aaf9d t 45cca71d-85a7-42ac-b792-af8b4aef87cd +42315a33-a375-4963-8afd-915b40159a07 t 80f9eb01-db6d-4939-9f2e-ef2c222cedee +57ba70ee-d28a-4cd6-93ee-2d993fd91897 t 720ef39b-a75e-4681-ac70-4237598974d0 +9ba133ea-c442-4589-a5ec-7d58e0fbbc61 t 6442be3b-16d7-4788-ad3f-fb88282ea42d +2c96bf23-0a6d-44b2-8f9e-34074a05c186 t b79eb1e8-3a2c-4d13-b130-92eb82f6b8af +76c17e5d-721d-46b1-a7ff-14fade2bf76f t 4f1092db-761d-4ae6-9d20-275e186b67ea +0c41857a-7be5-4342-8ca7-86c596b2a398 t b99c3111-0b6d-4a36-8207-45d2d00e7e37 +797f7329-5b32-4ec3-b78e-8c3d1b23163c t 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 +5014b0ee-3e40-441a-98bf-de57a95bfc9d t 919660c6-0654-4904-9cf5-61a03cc069c3 +291897ed-3c09-45c3-a984-452a35d5819d t c8fef37f-699a-4f5a-b228-495cb5702a43 +f6bacee2-80e0-411c-ac44-fb8f0ea0a17d t be8b5ac0-0df7-4eff-90f1-4c86f16c362e +12bbb1b7-a29f-4cd9-ba1c-822575a8a3ad t 182b57af-ef9e-428d-916d-7f18e14357d1 +6248651d-e3a4-46e5-98a5-858faafa3c0d t cdece2fc-4010-45d0-9949-3de52bb707c5 +e88cfe5b-3843-4c1b-9de2-e3b32785ce4d t a420d520-ef19-46a3-90a8-6f47be57b3d6 +8a6c0734-4d66-48c1-b087-b5eba8df6e98 t 4620c38c-b222-443c-9e31-98ef97b2e756 +212bc30e-0543-4dcb-9e8e-d8f12d5fd571 t 06448d2a-efc7-46ed-835c-b5dcf8178556 +e77a6c8d-fe59-41a2-af13-79635c4ed960 t c1ad30ce-4757-4bc7-96f1-77522ca019d4 +4beb34f5-c1ea-4b40-ae75-e025b17f841b t b150f1d5-6b4c-46a4-8a0e-e6c79280b63b +788ebbdc-4204-435c-91ff-11488d338f4e t 2646bbfd-1134-4b76-af3d-6ae0927d5916 +17d20af7-50a2-4240-82df-b4494e095a62 t beabae34-b69a-4aaa-bf44-33ebd7d2e4f9 +f0d98b3a-af20-4771-beaf-04d384c0e0bd t fa7f3228-db3e-449a-9e99-c5185b5de9b7 +\. + + +-- +-- Data for Name: nautobot_device_onboarding_onboardingtask; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_device_onboarding_onboardingtask (id, created, last_updated, ip_address, device_type, status, failed_reason, message, port, timeout, created_device_id, platform_id, role_id, site_id, label) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_addressobject; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_addressobject (id, created, last_updated, _custom_field_data, description, name, fqdn_id, ip_address_id, ip_range_id, prefix_id, status_id) FROM stdin; +1cc8aa38-0857-46bf-b75a-4d4efeecfa70 2023-09-19 2023-09-19 08:11:39.678299+00 {} printer \N \N 70a1c11a-51cc-43c9-bf14-c6c6b60d9d43 \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +58815083-ac0f-43f8-aafc-9f457fe5f6f1 2023-09-19 2023-09-19 08:11:39.687237+00 {} voice \N c0591240-4887-4de7-ad9d-0895fa20fb8c \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +09cfd2dc-5986-4f5e-aae4-16b33e6c9fc8 2023-09-19 2023-09-19 08:11:39.694871+00 {} storage \N \N \N 0ba10041-acac-4843-8b18-f325e6eb3989 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +4b12383f-b254-4103-b93d-dfdfa932c56f 2023-09-19 2023-09-19 08:11:39.702585+00 {} server 08626bd5-d7cc-462c-8b3c-7dc114638c11 \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +59149682-49fa-4fce-95dd-dbe01473b092 2023-09-19 2023-09-19 08:11:40.132501+00 {} nat-original-source \N \N \N 7662c7f2-d116-472f-83a6-f15fc6d0fb21 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +baa22b0f-cdd3-4bba-960b-cf15c8e696cc 2023-09-19 2023-09-19 08:11:40.141715+00 {} nat-translated-source \N \N \N abb6efa2-0c94-4bf9-98cb-e2ebf9145cd4 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +814b96b6-ce0c-4ca7-a763-ef2a6d59ac99 2023-09-19 2023-09-19 08:11:40.150845+00 {} nat-destination \N \N \N a73deeb5-9a79-4afe-acd1-0050925dfb3e 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_addressobjectgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_addressobjectgroup (id, created, last_updated, _custom_field_data, description, name, status_id) FROM stdin; +ff8c9c16-6ede-41ce-86fc-85b73cf1c245 2023-09-19 2023-09-19 08:11:39.703812+00 {} addr group1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +5f98ac0d-d373-48fe-84a4-131894f80188 2023-09-19 2023-09-19 08:11:39.710522+00 {} addr group2 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +2b2958ff-2908-42e6-8ed6-08db23bff806 2023-09-19 2023-09-19 08:11:39.714478+00 {} addr group3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_addressobjectgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_addressobjectgroupm2m (id, address_id, address_group_id) FROM stdin; +72b2d18b-a02d-4c59-a66a-0778cb7967b1 58815083-ac0f-43f8-aafc-9f457fe5f6f1 ff8c9c16-6ede-41ce-86fc-85b73cf1c245 +c76516d8-5b12-493a-bb09-b8c85e88f459 1cc8aa38-0857-46bf-b75a-4d4efeecfa70 ff8c9c16-6ede-41ce-86fc-85b73cf1c245 +45d9ca40-d876-4a83-9b97-eeb40df5a265 4b12383f-b254-4103-b93d-dfdfa932c56f 5f98ac0d-d373-48fe-84a4-131894f80188 +54c3b9de-4bb9-4537-b372-fdbf505a8206 09cfd2dc-5986-4f5e-aae4-16b33e6c9fc8 5f98ac0d-d373-48fe-84a4-131894f80188 +938c864b-b501-4b2a-b704-9b2caedd1c37 4b12383f-b254-4103-b93d-dfdfa932c56f 2b2958ff-2908-42e6-8ed6-08db23bff806 +2a24e9df-0479-44bf-bc9e-80ca8a45dec6 58815083-ac0f-43f8-aafc-9f457fe5f6f1 2b2958ff-2908-42e6-8ed6-08db23bff806 +7fd4e806-7ce7-49cb-b394-7cdb44ba8e83 1cc8aa38-0857-46bf-b75a-4d4efeecfa70 2b2958ff-2908-42e6-8ed6-08db23bff806 +7be05d3e-b6b0-4c1e-8b0a-2a6356e3ca67 09cfd2dc-5986-4f5e-aae4-16b33e6c9fc8 2b2958ff-2908-42e6-8ed6-08db23bff806 +\. + + +-- +-- Data for Name: nautobot_firewall_models_applicationgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_applicationgroupm2m (id, app_group_id, pol_rule_id) FROM stdin; +f654af25-4722-4033-bcd0-c9cbf99beff7 6e2767c1-3aea-4593-b3e3-ade931f199b3 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +5df6113e-9a99-4cd5-8066-3aa6cd02f311 da3c8ee4-8dea-4405-86be-5f92a0cc3755 e121a94e-8e23-4265-aa41-18b649cd76c5 +b4ec4302-4fc2-45a8-a4fd-eff6bd0bbba7 6e2767c1-3aea-4593-b3e3-ade931f199b3 532d4f29-6cf3-4b26-832b-9e66e4f66297 +976e4f25-763d-4060-9125-1b789cfa3c38 38b121c0-6087-4516-960b-dfb33a6cb37b 532d4f29-6cf3-4b26-832b-9e66e4f66297 +dee35a47-2df7-40b8-93f1-ffdeeb08f7d5 da3c8ee4-8dea-4405-86be-5f92a0cc3755 532d4f29-6cf3-4b26-832b-9e66e4f66297 +\. + + +-- +-- Data for Name: nautobot_firewall_models_applicationm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_applicationm2m (id, app_id, pol_rule_id) FROM stdin; +dc342fd0-6cd2-4667-b49f-3de7cc86be61 465128b5-9ffa-4c3e-a0e8-bf04c8a9409b a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +c8e1de04-ca2f-4b9a-b2b2-298cc422aaa6 fca8aad4-93d5-466e-a289-eaf0a159d52e e121a94e-8e23-4265-aa41-18b649cd76c5 +3ac66ba3-60a1-4c3e-b934-69eed3f95852 fca8aad4-93d5-466e-a289-eaf0a159d52e 532d4f29-6cf3-4b26-832b-9e66e4f66297 +4a84f80d-ce77-496e-846b-9785e70ffe95 c5e0fc95-f39f-44d2-b60e-de06e775982e 532d4f29-6cf3-4b26-832b-9e66e4f66297 +\. + + +-- +-- Data for Name: nautobot_firewall_models_applicationobject; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_applicationobject (id, created, last_updated, _custom_field_data, description, category, subcategory, technology, risk, default_type, name, default_ip_protocol, status_id) FROM stdin; +465128b5-9ffa-4c3e-a0e8-bf04c8a9409b 2023-09-19 2023-09-19 08:11:39.798509+00 {} some description web streaming \N 3 443 app1 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +fca8aad4-93d5-466e-a289-eaf0a159d52e 2023-09-19 2023-09-19 08:11:39.806747+00 {} some description web streaming \N 2 443 app2 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +c5e0fc95-f39f-44d2-b60e-de06e775982e 2023-09-19 2023-09-19 08:11:39.814113+00 {} some description web streaming \N 1 443 app3 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_applicationobjectgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_applicationobjectgroup (id, created, last_updated, _custom_field_data, description, name, status_id) FROM stdin; +6e2767c1-3aea-4593-b3e3-ade931f199b3 2023-09-19 2023-09-19 08:11:39.815812+00 {} some description streaming 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +da3c8ee4-8dea-4405-86be-5f92a0cc3755 2023-09-19 2023-09-19 08:11:39.822148+00 {} some description gaming 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +38b121c0-6087-4516-960b-dfb33a6cb37b 2023-09-19 2023-09-19 08:11:39.826852+00 {} some description news 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_applicationobjectgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_applicationobjectgroupm2m (id, application_id, application_group_id) FROM stdin; +40fa5caf-7756-4cc1-bd68-ff49c4113ce0 465128b5-9ffa-4c3e-a0e8-bf04c8a9409b 6e2767c1-3aea-4593-b3e3-ade931f199b3 +586efd59-4e42-420e-9567-3344b8aa7ac7 fca8aad4-93d5-466e-a289-eaf0a159d52e da3c8ee4-8dea-4405-86be-5f92a0cc3755 +a90a9b01-a210-4a9f-afc5-cb963df7d1f4 c5e0fc95-f39f-44d2-b60e-de06e775982e da3c8ee4-8dea-4405-86be-5f92a0cc3755 +8c2e43c6-e0c8-4e1d-be39-fcb12291bc5c 465128b5-9ffa-4c3e-a0e8-bf04c8a9409b 38b121c0-6087-4516-960b-dfb33a6cb37b +449e086d-a483-4db7-ad7d-330de6c2e3e6 fca8aad4-93d5-466e-a289-eaf0a159d52e 38b121c0-6087-4516-960b-dfb33a6cb37b +bed2e393-8654-42f6-b1bf-17059d7852dd c5e0fc95-f39f-44d2-b60e-de06e775982e 38b121c0-6087-4516-960b-dfb33a6cb37b +\. + + +-- +-- Data for Name: nautobot_firewall_models_capircapolicy; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_capircapolicy (id, created, last_updated, _custom_field_data, pol, net, svc, cfg, device_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_destaddrgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_destaddrgroupm2m (id, addr_group_id, pol_rule_id) FROM stdin; +5efed7a1-1c73-48e7-9ae5-34065dea89b3 2b2958ff-2908-42e6-8ed6-08db23bff806 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +eb9f3964-aad9-498a-bf59-720d670a9930 2b2958ff-2908-42e6-8ed6-08db23bff806 e121a94e-8e23-4265-aa41-18b649cd76c5 +9a626b44-e6b6-4bb8-887c-ec7b9aaa2ad5 2b2958ff-2908-42e6-8ed6-08db23bff806 532d4f29-6cf3-4b26-832b-9e66e4f66297 +\. + + +-- +-- Data for Name: nautobot_firewall_models_destaddrm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_destaddrm2m (id, pol_rule_id, user_id) FROM stdin; +a877a862-07cc-474e-9358-baecb2da2eaf a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 4b12383f-b254-4103-b93d-dfdfa932c56f +fec95e7d-3dc2-4218-9e76-7bae5b0305ee e121a94e-8e23-4265-aa41-18b649cd76c5 4b12383f-b254-4103-b93d-dfdfa932c56f +8883ddab-39a0-40ab-939f-65112cc5b47f 532d4f29-6cf3-4b26-832b-9e66e4f66297 4b12383f-b254-4103-b93d-dfdfa932c56f +\. + + +-- +-- Data for Name: nautobot_firewall_models_destsvcgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_destsvcgroupm2m (id, pol_rule_id, svc_group_id) FROM stdin; +17547414-fd42-4721-9cd0-e7eff6394843 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 8b3fffc7-6943-4109-83b4-3a5ba546d4b6 +f2882540-a485-4478-8534-477402861bfb e121a94e-8e23-4265-aa41-18b649cd76c5 b81ae505-584a-47c7-a0d5-c4412400093d +7e9f13c1-8c18-40f9-824e-b7c693ad4dd9 e121a94e-8e23-4265-aa41-18b649cd76c5 8b3fffc7-6943-4109-83b4-3a5ba546d4b6 +2a52ed7a-f5f3-4e3c-8bcf-a000644d5415 532d4f29-6cf3-4b26-832b-9e66e4f66297 b81ae505-584a-47c7-a0d5-c4412400093d +b47a94bd-2e3a-4bfe-a322-f6a1b142c596 532d4f29-6cf3-4b26-832b-9e66e4f66297 9e761644-bf55-4642-800d-e69ed6f1c7a9 +de9fe9df-27ed-4190-8bcc-9f6f804bb83f 532d4f29-6cf3-4b26-832b-9e66e4f66297 8b3fffc7-6943-4109-83b4-3a5ba546d4b6 +\. + + +-- +-- Data for Name: nautobot_firewall_models_destsvcm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_destsvcm2m (id, pol_rule_id, svc_id) FROM stdin; +ab538381-a56f-4ff7-b56d-7b1135180a65 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 1950dd47-afb4-411c-84bf-c6186d7f9d3c +82dd606f-f990-4e11-91e3-010802a803ad e121a94e-8e23-4265-aa41-18b649cd76c5 2c47084b-87b8-4219-a8fb-75cde04decad +383899c2-40dc-4ec8-bbe5-9df40695a8ea e121a94e-8e23-4265-aa41-18b649cd76c5 1950dd47-afb4-411c-84bf-c6186d7f9d3c +48ca5e6d-9ae0-411c-909b-32b0176182d2 532d4f29-6cf3-4b26-832b-9e66e4f66297 86d9be53-6248-4880-9899-df3dd63f0ef2 +121173c3-8e4c-476a-a6dc-31f66cf878de 532d4f29-6cf3-4b26-832b-9e66e4f66297 2c47084b-87b8-4219-a8fb-75cde04decad +0ee61619-5fe7-4e89-af69-031e9d719aab 532d4f29-6cf3-4b26-832b-9e66e4f66297 1950dd47-afb4-411c-84bf-c6186d7f9d3c +\. + + +-- +-- Data for Name: nautobot_firewall_models_fqdn; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_fqdn (id, created, last_updated, _custom_field_data, description, name, status_id) FROM stdin; +0e98ec1f-6660-4860-9de1-67fc3282f93b 2023-09-19 2023-09-19 08:11:39.667717+00 {} test.dev 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +a120bf65-78a0-4a92-8fef-5faeddbd6f6a 2023-09-19 2023-09-19 08:11:39.669229+00 {} test.uat 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +08626bd5-d7cc-462c-8b3c-7dc114638c11 2023-09-19 2023-09-19 08:11:39.670025+00 {} test.prod 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_fqdnipaddressm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_fqdnipaddressm2m (id, fqdn_id, ip_address_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_iprange; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_iprange (id, created, last_updated, _custom_field_data, start_address, end_address, description, size, status_id, vrf_id) FROM stdin; +f9cefd0e-9afb-46f5-ac51-5129c68ddedd 2023-09-19 2023-09-19 08:11:39.648841+00 {} \\xc0a80001 \\xc0a8000a 10 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N +70706253-7a07-4686-bc6b-33edc18bfd4e 2023-09-19 2023-09-19 08:11:39.657966+00 {} \\xc0a80001 \\xc0a8000a 10 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 758a1c41-fc25-488f-922a-bd4c18aecc46 +70a1c11a-51cc-43c9-bf14-c6c6b60d9d43 2023-09-19 2023-09-19 08:11:39.665912+00 {} \\xc0a8000b \\xc0a80014 10 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigdestaddrgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigdestaddrgroupm2m (id, addr_group_id, nat_pol_rule_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigdestaddrm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigdestaddrm2m (id, nat_pol_rule_id, user_id) FROM stdin; +67f85e4d-9ba5-43f1-a3a2-64e50003c93c 54e01815-64d7-446f-9f14-c1ddddd97bad 814b96b6-ce0c-4ca7-a763-ef2a6d59ac99 +b0ae8312-bf31-4fd5-ac82-cba25908071d 3657d6ad-ddcc-4a1f-bf7d-fff1d9db75da 814b96b6-ce0c-4ca7-a763-ef2a6d59ac99 +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigdestsvcgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigdestsvcgroupm2m (id, nat_pol_rule_id, svc_group_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigdestsvcm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigdestsvcm2m (id, nat_pol_rule_id, svc_id) FROM stdin; +bdb1c5a1-fd6d-4063-9d44-f178b017054b 54e01815-64d7-446f-9f14-c1ddddd97bad 77a55538-a939-4c5d-8806-95595f4821ca +c787496a-60eb-46aa-bd93-49b5243ff8af 3657d6ad-ddcc-4a1f-bf7d-fff1d9db75da 77a55538-a939-4c5d-8806-95595f4821ca +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigsrcaddrgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigsrcaddrgroupm2m (id, addr_group_id, nat_pol_rule_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigsrcaddrm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigsrcaddrm2m (id, addr_id, nat_pol_rule_id) FROM stdin; +441c7424-7bbb-47f8-b146-add684842980 59149682-49fa-4fce-95dd-dbe01473b092 54e01815-64d7-446f-9f14-c1ddddd97bad +86ca2291-23a8-407d-9093-87f7f682cac6 1cc8aa38-0857-46bf-b75a-4d4efeecfa70 3657d6ad-ddcc-4a1f-bf7d-fff1d9db75da +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigsrcsvcgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigsrcsvcgroupm2m (id, nat_pol_rule_id, svc_group_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natorigsrcsvcm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natorigsrcsvcm2m (id, nat_pol_rule_id, svc_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natpolicy; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natpolicy (id, created, last_updated, _custom_field_data, description, name, status_id, tenant_id) FROM stdin; +ee1d4aab-18bd-485c-a85e-efe8498c7861 2023-09-19 2023-09-19 08:11:40.152666+00 {} NAT Policy 1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N +8027c0e0-42f2-4c5e-8d77-214e3cedbb09 2023-09-19 2023-09-19 08:11:40.155112+00 {} NAT Policy 2 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N +b7783d6f-2e3c-4036-a259-392786583c70 2023-09-19 2023-09-19 08:11:40.156706+00 {} NAT Policy 3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N +\. + + +-- +-- Data for Name: nautobot_firewall_models_natpolicydevicem2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natpolicydevicem2m (id, weight, device_id, nat_policy_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natpolicydynamicgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natpolicydynamicgroupm2m (id, weight, dynamic_group_id, nat_policy_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natpolicynatrulem2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natpolicynatrulem2m (id, nat_policy_id, nat_rule_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natpolicyrule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natpolicyrule (id, created, last_updated, _custom_field_data, name, remark, log, request_id, description, index, destination_zone_id, source_zone_id, status_id) FROM stdin; +54e01815-64d7-446f-9f14-c1ddddd97bad 2023-09-19 2023-09-19 08:11:40.158425+00 {} NAT Policy Rule 1.1 f t req1 \N \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +cb077eab-0da1-4056-96b3-9ae0ab73f217 2023-09-19 2023-09-19 08:11:40.180898+00 {} END OF NAT POLICY t f req2 \N \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +3657d6ad-ddcc-4a1f-bf7d-fff1d9db75da 2023-09-19 2023-09-19 08:11:40.184483+00 {} NAT Policy Rule 2.1 f t req3 \N \N \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_natpolicyrulem2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natpolicyrulem2m (id, nat_policy_id, nat_rule_id) FROM stdin; +137e0150-0aa5-480f-9714-c524992f268a ee1d4aab-18bd-485c-a85e-efe8498c7861 54e01815-64d7-446f-9f14-c1ddddd97bad +bc7c269d-4173-4cdd-840e-f3744db46b1e ee1d4aab-18bd-485c-a85e-efe8498c7861 cb077eab-0da1-4056-96b3-9ae0ab73f217 +a49807c5-4a3d-45db-b2ae-7d584003e629 8027c0e0-42f2-4c5e-8d77-214e3cedbb09 3657d6ad-ddcc-4a1f-bf7d-fff1d9db75da +\. + + +-- +-- Data for Name: nautobot_firewall_models_natsrcusergroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natsrcusergroupm2m (id, nat_pol_rule_id, user_group_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_natsrcuserm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_natsrcuserm2m (id, nat_pol_rule_id, user_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattransdestaddrgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattransdestaddrgroupm2m (id, addr_group_id, nat_pol_rule_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattransdestaddrm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattransdestaddrm2m (id, nat_pol_rule_id, user_id) FROM stdin; +2ea97a2c-56db-4afd-9576-3d5f872ab1a5 54e01815-64d7-446f-9f14-c1ddddd97bad 814b96b6-ce0c-4ca7-a763-ef2a6d59ac99 +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattransdestsvcgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattransdestsvcgroupm2m (id, nat_pol_rule_id, svc_group_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattransdestsvcm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattransdestsvcm2m (id, nat_pol_rule_id, svc_id) FROM stdin; +0b246e11-387e-4b23-a7d5-5f7c6c1410bd 54e01815-64d7-446f-9f14-c1ddddd97bad f3af2c03-9c30-487d-9f4b-4911da33e0ea +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattranssrcaddrgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattranssrcaddrgroupm2m (id, addr_group_id, nat_pol_rule_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattranssrcaddrm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattranssrcaddrm2m (id, addr_id, nat_pol_rule_id) FROM stdin; +3e118bec-1a7b-4bed-928f-d8df41b13e18 baa22b0f-cdd3-4bba-960b-cf15c8e696cc 54e01815-64d7-446f-9f14-c1ddddd97bad +000a7e8b-8273-4c60-a65f-712b079baafb baa22b0f-cdd3-4bba-960b-cf15c8e696cc 3657d6ad-ddcc-4a1f-bf7d-fff1d9db75da +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattranssrcsvcgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattranssrcsvcgroupm2m (id, nat_pol_rule_id, svc_group_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_nattranssrcsvcm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_nattranssrcsvcm2m (id, nat_pol_rule_id, svc_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_policy; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_policy (id, created, last_updated, _custom_field_data, description, name, status_id, tenant_id) FROM stdin; +724f9cc9-ae79-41cd-9530-c3e5d2c15a3a 2023-09-19 2023-09-19 08:11:39.948153+00 {} Policy 1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N +108da6b0-a7d6-406d-908e-331b7f2327f6 2023-09-19 2023-09-19 08:11:40.105307+00 {} Policy 2 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 9913fa6c-14f1-4dc1-a821-7b251073648c +cb6a4a36-4d10-4732-b8fa-1d38ed4360c6 2023-09-19 2023-09-19 08:11:40.108002+00 {} Policy 3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb 9ecf7cc2-101d-4c1c-afe2-2c5fb3e265c8 +\. + + +-- +-- Data for Name: nautobot_firewall_models_policydevicem2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_policydevicem2m (id, weight, device_id, policy_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_policydynamicgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_policydynamicgroupm2m (id, weight, dynamic_group_id, policy_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_policyrule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_policyrule (id, created, last_updated, _custom_field_data, name, action, log, request_id, destination_zone_id, source_zone_id, status_id, description, index) FROM stdin; +a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 2023-09-19 2023-09-19 08:11:39.830861+00 {} Policy Rule 1 deny t req1 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb some description 10 +e121a94e-8e23-4265-aa41-18b649cd76c5 2023-09-19 2023-09-19 08:11:39.874641+00 {} Policy Rule 2 allow t req2 5bffa6e0-8c98-46b1-a196-56ad9aa996f1 e5d12748-5fd7-4786-9a1e-97d3e49ce1fd 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb some description 20 +532d4f29-6cf3-4b26-832b-9e66e4f66297 2023-09-19 2023-09-19 08:11:39.905936+00 {} Policy Rule 3 drop t req3 5bffa6e0-8c98-46b1-a196-56ad9aa996f1 e5d12748-5fd7-4786-9a1e-97d3e49ce1fd 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb some description 30 +77a60d57-d8fd-4d38-9bda-aa4eb47bfa8f 2023-09-19 2023-09-19 08:11:39.938473+00 {} END OF ACCESS LIST remark f req4 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N 99 +02a9235c-fc2d-4e13-bc41-99825d88f203 2023-09-19 2023-09-19 08:11:39.940023+00 {} DENY ALL deny f req5 \N \N 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb \N 100 +\. + + +-- +-- Data for Name: nautobot_firewall_models_policyrulem2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_policyrulem2m (id, policy_id, rule_id) FROM stdin; +f823f8dc-d0fb-4868-8d20-52f604bdfc8b 724f9cc9-ae79-41cd-9530-c3e5d2c15a3a a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +43f91e0b-839f-4b0a-a880-698e45838d0e 108da6b0-a7d6-406d-908e-331b7f2327f6 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +df773c25-547b-431a-9b7d-9df4bcccad49 108da6b0-a7d6-406d-908e-331b7f2327f6 e121a94e-8e23-4265-aa41-18b649cd76c5 +29a63b06-5af9-4cf3-87cd-8d96f3d0b753 cb6a4a36-4d10-4732-b8fa-1d38ed4360c6 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +587e503b-f8b2-49cb-8ec4-24595815225e cb6a4a36-4d10-4732-b8fa-1d38ed4360c6 e121a94e-8e23-4265-aa41-18b649cd76c5 +86c14e95-bdff-4699-8a72-8e00cd4b1ed3 cb6a4a36-4d10-4732-b8fa-1d38ed4360c6 532d4f29-6cf3-4b26-832b-9e66e4f66297 +1c7084a7-5409-480f-9c48-8e6af1d87833 cb6a4a36-4d10-4732-b8fa-1d38ed4360c6 77a60d57-d8fd-4d38-9bda-aa4eb47bfa8f +55ca6d89-a77d-410b-bce2-daa142207c08 cb6a4a36-4d10-4732-b8fa-1d38ed4360c6 02a9235c-fc2d-4e13-bc41-99825d88f203 +\. + + +-- +-- Data for Name: nautobot_firewall_models_serviceobject; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_serviceobject (id, created, last_updated, _custom_field_data, description, name, port, ip_protocol, status_id) FROM stdin; +980c9c19-11ca-434f-bf42-71fe09a35463 2023-09-19 2023-09-19 08:08:45.446566+00 {} FTP 20-21 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +2c47084b-87b8-4219-a8fb-75cde04decad 2023-09-19 2023-09-19 08:08:45.447839+00 {} SSH 22 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +f858e999-c88f-4e73-8ce1-d383c5d7f151 2023-09-19 2023-09-19 08:08:45.448373+00 {} TELNET 23 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +c132dd5d-f03e-4a60-9f25-10df8100a25a 2023-09-19 2023-09-19 08:08:45.448844+00 {} SMTP 25 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +77a55538-a939-4c5d-8806-95595f4821ca 2023-09-19 2023-09-19 08:08:45.44929+00 {} HTTP 80 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +cbecfe8d-aa5e-4c80-9005-0652f4d372b0 2023-09-19 2023-09-19 08:08:45.449732+00 {} HTTP-DEV 8080 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +8bfb0872-3c31-404a-a818-f6af6e1eba5e 2023-09-19 2023-09-19 08:08:45.450154+00 {} HTTPS 443 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +bdf2874e-4130-4adb-b5ac-92d8991e8de7 2023-09-19 2023-09-19 08:08:45.4506+00 {} HTTPS-DEV 4443 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +50d9db09-724d-4e48-828d-a434fe88a725 2023-09-19 2023-09-19 08:08:45.451017+00 {} NTP 123 UDP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +7cd75c60-6d9a-46d9-a6b9-f7d21aff2b2d 2023-09-19 2023-09-19 08:08:45.451467+00 {} ICMP \N ICMP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +1950dd47-afb4-411c-84bf-c6186d7f9d3c 2023-09-19 2023-09-19 08:11:39.730449+00 {} PGSQL 5432 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +86d9be53-6248-4880-9899-df3dd63f0ef2 2023-09-19 2023-09-19 08:11:39.742137+00 {} DNS 53 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +8a69c6d6-3f32-4a5b-922d-9837177f0e86 2023-09-19 2023-09-19 08:11:39.752419+00 {} Source HTTPS 443 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +f3af2c03-9c30-487d-9f4b-4911da33e0ea 2023-09-19 2023-09-19 08:11:40.122777+00 {} HTTP (alt) 8080 TCP 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_serviceobjectgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_serviceobjectgroup (id, created, last_updated, _custom_field_data, description, name, status_id) FROM stdin; +8b3fffc7-6943-4109-83b4-3a5ba546d4b6 2023-09-19 2023-09-19 08:11:39.753616+00 {} svc group1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +b81ae505-584a-47c7-a0d5-c4412400093d 2023-09-19 2023-09-19 08:11:39.759059+00 {} svc group2 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +9e761644-bf55-4642-800d-e69ed6f1c7a9 2023-09-19 2023-09-19 08:11:39.762878+00 {} svc group3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_serviceobjectgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_serviceobjectgroupm2m (id, service_id, service_group_id) FROM stdin; +13362d9a-5cfc-4dad-abff-8d245a96a659 1950dd47-afb4-411c-84bf-c6186d7f9d3c 8b3fffc7-6943-4109-83b4-3a5ba546d4b6 +83413443-0152-4ada-a147-1600d7278d07 86d9be53-6248-4880-9899-df3dd63f0ef2 b81ae505-584a-47c7-a0d5-c4412400093d +397aaaa1-37a7-42e4-9d98-0d655de53d27 2c47084b-87b8-4219-a8fb-75cde04decad b81ae505-584a-47c7-a0d5-c4412400093d +b22ff71f-9168-48cd-a164-5e42860106a8 86d9be53-6248-4880-9899-df3dd63f0ef2 9e761644-bf55-4642-800d-e69ed6f1c7a9 +51e7b5b1-be91-4a01-9c5e-64074ae13625 2c47084b-87b8-4219-a8fb-75cde04decad 9e761644-bf55-4642-800d-e69ed6f1c7a9 +4b07f8c1-fab2-42a3-ad59-25285369c2ca 1950dd47-afb4-411c-84bf-c6186d7f9d3c 9e761644-bf55-4642-800d-e69ed6f1c7a9 +\. + + +-- +-- Data for Name: nautobot_firewall_models_srcaddrgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_srcaddrgroupm2m (id, addr_group_id, pol_rule_id) FROM stdin; +bb4685dd-182b-4f97-b14c-881873dcdd5a ff8c9c16-6ede-41ce-86fc-85b73cf1c245 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +26140755-c954-45a2-b53e-2aa5cd66294a ff8c9c16-6ede-41ce-86fc-85b73cf1c245 e121a94e-8e23-4265-aa41-18b649cd76c5 +7131f9e4-4259-45fe-a2a5-98a6a5648f20 5f98ac0d-d373-48fe-84a4-131894f80188 e121a94e-8e23-4265-aa41-18b649cd76c5 +b0546b6c-87e6-40a2-bc90-cdf109842eed ff8c9c16-6ede-41ce-86fc-85b73cf1c245 532d4f29-6cf3-4b26-832b-9e66e4f66297 +b70b491c-4c8c-48dc-9a66-ef14a3ee73fd 5f98ac0d-d373-48fe-84a4-131894f80188 532d4f29-6cf3-4b26-832b-9e66e4f66297 +\. + + +-- +-- Data for Name: nautobot_firewall_models_srcaddrm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_srcaddrm2m (id, addr_id, pol_rule_id) FROM stdin; +b933db87-f10d-4e04-a390-13e14294bd0e 1cc8aa38-0857-46bf-b75a-4d4efeecfa70 a9f587aa-1e96-4927-9f1b-4e7aa6831f1d +418e2dac-d798-4b98-ab69-e50e8073ef23 58815083-ac0f-43f8-aafc-9f457fe5f6f1 e121a94e-8e23-4265-aa41-18b649cd76c5 +08b6a0ab-d08c-4946-88b5-ae861278c35d 1cc8aa38-0857-46bf-b75a-4d4efeecfa70 e121a94e-8e23-4265-aa41-18b649cd76c5 +19b92638-974d-4447-aa15-534ee9e6ceb2 58815083-ac0f-43f8-aafc-9f457fe5f6f1 532d4f29-6cf3-4b26-832b-9e66e4f66297 +bf988e8d-1398-4f08-9e9b-c0ba43080c24 1cc8aa38-0857-46bf-b75a-4d4efeecfa70 532d4f29-6cf3-4b26-832b-9e66e4f66297 +dadb524e-c051-485a-a6b8-ea296af88cae 09cfd2dc-5986-4f5e-aae4-16b33e6c9fc8 532d4f29-6cf3-4b26-832b-9e66e4f66297 +\. + + +-- +-- Data for Name: nautobot_firewall_models_srcsvcgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_srcsvcgroupm2m (id, pol_rule_id, svc_group_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_srcsvcm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_srcsvcm2m (id, pol_rule_id, svc_id) FROM stdin; +2fd8f74b-0b4c-4a18-a622-6f2014cc936b a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 8a69c6d6-3f32-4a5b-922d-9837177f0e86 +\. + + +-- +-- Data for Name: nautobot_firewall_models_srcusergroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_srcusergroupm2m (id, pol_rule_id, user_group_id) FROM stdin; +b991a46e-ae25-4574-a545-aa7fa9e1fe9a a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 1932b084-beba-45e7-8c9a-5f71c0ca3209 +bd9d9e18-5e30-42c7-bb2a-cacbaa6945a0 e121a94e-8e23-4265-aa41-18b649cd76c5 1932b084-beba-45e7-8c9a-5f71c0ca3209 +a22f03ba-648f-478c-9dac-4f0c7cb4d011 e121a94e-8e23-4265-aa41-18b649cd76c5 f218575e-8f86-4596-bcc0-f6fd950f8a9b +53ff778e-2e70-44d3-b016-727af95c4be4 532d4f29-6cf3-4b26-832b-9e66e4f66297 1932b084-beba-45e7-8c9a-5f71c0ca3209 +fb2331e2-18ca-40b9-81ab-7af378d8ecbe 532d4f29-6cf3-4b26-832b-9e66e4f66297 f218575e-8f86-4596-bcc0-f6fd950f8a9b +81d8e5ed-bdb0-4331-b68a-dfab93d11503 532d4f29-6cf3-4b26-832b-9e66e4f66297 b659a8a0-ba67-438a-aa70-21a7f1b73b03 +\. + + +-- +-- Data for Name: nautobot_firewall_models_srcuserm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_srcuserm2m (id, pol_rule_id, user_id) FROM stdin; +39b94cb2-a890-4a79-b87d-6dbe906ebc5b a9f587aa-1e96-4927-9f1b-4e7aa6831f1d 47b7f61f-8976-4fce-bac8-cf0a7ff91df3 +507c50cd-4cef-4e45-b5c3-5145eb2cbdaf e121a94e-8e23-4265-aa41-18b649cd76c5 47b7f61f-8976-4fce-bac8-cf0a7ff91df3 +8a8a5dfc-951b-4be3-8451-1a31ff10ed1d e121a94e-8e23-4265-aa41-18b649cd76c5 94798966-c153-4308-a89c-1e35b43aa373 +e78572b9-a807-4ad6-b0de-96fcbf7a99ec 532d4f29-6cf3-4b26-832b-9e66e4f66297 47b7f61f-8976-4fce-bac8-cf0a7ff91df3 +29739b8d-0467-4e31-9e5f-c3c955025cdd 532d4f29-6cf3-4b26-832b-9e66e4f66297 d89bcd26-2599-4975-ae65-4c0210739f98 +84ad9d16-ae85-4366-a1ba-a6b92160f154 532d4f29-6cf3-4b26-832b-9e66e4f66297 94798966-c153-4308-a89c-1e35b43aa373 +\. + + +-- +-- Data for Name: nautobot_firewall_models_userobject; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_userobject (id, created, last_updated, _custom_field_data, username, name, status_id) FROM stdin; +47b7f61f-8976-4fce-bac8-cf0a7ff91df3 2023-09-19 2023-09-19 08:11:39.766858+00 {} user1 User 1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +94798966-c153-4308-a89c-1e35b43aa373 2023-09-19 2023-09-19 08:11:39.768362+00 {} user2 User 2 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +d89bcd26-2599-4975-ae65-4c0210739f98 2023-09-19 2023-09-19 08:11:39.769131+00 {} user3 User 3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_userobjectgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_userobjectgroup (id, created, last_updated, _custom_field_data, description, name, status_id) FROM stdin; +1932b084-beba-45e7-8c9a-5f71c0ca3209 2023-09-19 2023-09-19 08:11:39.769959+00 {} usr group1 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +f218575e-8f86-4596-bcc0-f6fd950f8a9b 2023-09-19 2023-09-19 08:11:39.775658+00 {} usr group2 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +b659a8a0-ba67-438a-aa70-21a7f1b73b03 2023-09-19 2023-09-19 08:11:39.779462+00 {} usr group3 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_userobjectgroupm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_userobjectgroupm2m (id, user_id, user_group_id) FROM stdin; +d8f6d230-9e29-42a3-9068-f2188c6d00f7 47b7f61f-8976-4fce-bac8-cf0a7ff91df3 1932b084-beba-45e7-8c9a-5f71c0ca3209 +be787311-aecc-4b00-9a3c-4212c0dca169 47b7f61f-8976-4fce-bac8-cf0a7ff91df3 f218575e-8f86-4596-bcc0-f6fd950f8a9b +3587cc5e-1cec-40a7-977e-75b36ccb4572 94798966-c153-4308-a89c-1e35b43aa373 f218575e-8f86-4596-bcc0-f6fd950f8a9b +bc9a8050-f1d8-43d2-b8af-0b0c40ca1a2c 47b7f61f-8976-4fce-bac8-cf0a7ff91df3 b659a8a0-ba67-438a-aa70-21a7f1b73b03 +8e083240-51d4-4d49-b565-79eecbacec6e d89bcd26-2599-4975-ae65-4c0210739f98 b659a8a0-ba67-438a-aa70-21a7f1b73b03 +4a77fa3e-51f7-44d1-9660-97474e1e9f7e 94798966-c153-4308-a89c-1e35b43aa373 b659a8a0-ba67-438a-aa70-21a7f1b73b03 +\. + + +-- +-- Data for Name: nautobot_firewall_models_zone; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_zone (id, created, last_updated, _custom_field_data, description, name, status_id) FROM stdin; +e5d12748-5fd7-4786-9a1e-97d3e49ce1fd 2023-09-19 2023-09-19 08:11:39.783545+00 {} WAN 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +5bffa6e0-8c98-46b1-a196-56ad9aa996f1 2023-09-19 2023-09-19 08:11:39.789151+00 {} LAN 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +783806dc-c7e0-402c-be98-a3eb0104bc90 2023-09-19 2023-09-19 08:11:39.789837+00 {} DMZ 3e1a93d4-cef2-4b05-8fb4-838ff0f5efcb +\. + + +-- +-- Data for Name: nautobot_firewall_models_zoneinterfacem2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_zoneinterfacem2m (id, interface_id, zone_id) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_firewall_models_zonevrfm2m; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_firewall_models_zonevrfm2m (id, vrf_id, zone_id) FROM stdin; +dbfbf4a5-9e19-4c7c-9522-c2a8ad9c77af 2a3bd78f-e433-401d-8e68-33b1d409a276 e5d12748-5fd7-4786-9a1e-97d3e49ce1fd +\. + + +-- +-- Data for Name: nautobot_golden_config_compliancefeature; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_compliancefeature (id, created, last_updated, _custom_field_data, name, slug, description) FROM stdin; +f98bed66-56a2-4d85-bb1b-be38a91fa75f 2023-09-19 2023-09-19 08:10:57.004109+00 {} aaa aaa +4d7d83f1-7484-483d-af07-f998a61a68b8 2023-09-19 2023-09-19 08:10:57.009227+00 {} acl acl +d31a65cb-989b-4a55-bfcd-df42e9e4d8b9 2023-09-19 2023-09-19 08:10:57.012405+00 {} bgp bgp +f367c4c5-3509-4d07-8102-2b5700bb6af6 2023-09-19 2023-09-19 08:10:57.016232+00 {} dns dns +83202d51-1e16-415c-a13b-5a85e8e3f4f4 2023-09-19 2023-09-19 08:10:57.019422+00 {} host host +e0e0f323-a42b-41cf-9ba0-d95cd9de3560 2023-09-19 2023-09-19 08:10:57.023204+00 {} intf intf +9e00d411-27db-4bba-a88e-1a8cd2863b86 2023-09-19 2023-09-19 08:10:57.027018+00 {} ntp ntp +9387aaf0-453e-4692-b079-29f0abcdea11 2023-09-19 2023-09-19 08:10:57.030056+00 {} svc svc +4716cdba-d395-42e5-82f7-1b879547961e 2023-09-19 2023-09-19 08:10:57.033136+00 {} snmp snmp +6c39877e-4d99-428f-97b4-e33e9d8fd890 2023-09-19 2023-09-19 08:10:57.036422+00 {} log log +\. + + +-- +-- Data for Name: nautobot_golden_config_compliancerule; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_compliancerule (id, created, last_updated, _custom_field_data, description, config_ordered, match_config, config_type, feature_id, platform_id) FROM stdin; +6f3921ed-f231-4c69-99b6-0982b82e46ef 2023-09-19 2023-09-19 08:10:57.044269+00 {} t aaa\nno aaa\nmanagement\nusername\nrole\nradius-server cli f98bed66-56a2-4d85-bb1b-be38a91fa75f 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +b9049cdb-ec08-4d64-8dae-fbfccd82ccc4 2023-09-19 2023-09-19 08:10:57.048726+00 {} t aaa\nline\nusername\nrole\ntacacs cli f98bed66-56a2-4d85-bb1b-be38a91fa75f 747f56fb-3012-43e4-923c-aed6195b585c +3ac0c715-9ba8-4608-858a-c9fe348053dc 2023-09-19 2023-09-19 08:10:57.052502+00 {} t aaa\nno aaa\nno feature telnet\nline\nusername\nrole\nno password strength-check cli f98bed66-56a2-4d85-bb1b-be38a91fa75f 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +0d20167f-cc57-4d4e-86f5-5ae657d2274a 2023-09-19 2023-09-19 08:10:57.056214+00 {} t set system login\nset system root-authentication cli f98bed66-56a2-4d85-bb1b-be38a91fa75f 8758fe0f-e52e-43f6-ae17-5b9ebe650914 +a29cb11e-25dd-4578-96b6-efb938281b28 2023-09-19 2023-09-19 08:10:57.060037+00 {} t access-list cli 4d7d83f1-7484-483d-af07-f998a61a68b8 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +26765c6a-584e-4043-8476-d3c0af9723e2 2023-09-19 2023-09-19 08:10:57.063779+00 {} t access-list\nip access-list cli 4d7d83f1-7484-483d-af07-f998a61a68b8 747f56fb-3012-43e4-923c-aed6195b585c +9aab11cb-40ac-4a2a-ab93-0649c960419f 2023-09-19 2023-09-19 08:10:57.067702+00 {} t access-list cli 4d7d83f1-7484-483d-af07-f998a61a68b8 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +bbbf8a98-8581-488a-958c-7bc256a7a300 2023-09-19 2023-09-19 08:10:57.07136+00 {} t bgp cli d31a65cb-989b-4a55-bfcd-df42e9e4d8b9 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +ad29fcac-15e8-470a-9aad-0001343d9894 2023-09-19 2023-09-19 08:10:57.074899+00 {} t bgp cli d31a65cb-989b-4a55-bfcd-df42e9e4d8b9 747f56fb-3012-43e4-923c-aed6195b585c +972f28ee-a789-44a3-a78f-5967f26d8b2e 2023-09-19 2023-09-19 08:10:57.078572+00 {} t bgp cli d31a65cb-989b-4a55-bfcd-df42e9e4d8b9 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +6742ec49-eb70-4756-a93d-d162b2404342 2023-09-19 2023-09-19 08:10:57.082192+00 {} t set protocols bgp cli d31a65cb-989b-4a55-bfcd-df42e9e4d8b9 8758fe0f-e52e-43f6-ae17-5b9ebe650914 +cd4a5403-702e-42d6-86a1-939f8c9cc34f 2023-09-19 2023-09-19 08:10:57.085711+00 {} t ip domain\ndns domain cli f367c4c5-3509-4d07-8102-2b5700bb6af6 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +b04568f0-6280-465c-83bd-0573a5fea421 2023-09-19 2023-09-19 08:10:57.089391+00 {} t ip domain\nip name-server cli f367c4c5-3509-4d07-8102-2b5700bb6af6 747f56fb-3012-43e4-923c-aed6195b585c +e7b41db7-6bd6-42f6-ac5a-5cd99c2f2757 2023-09-19 2023-09-19 08:10:57.092927+00 {} t ip domain\nip name-server cli f367c4c5-3509-4d07-8102-2b5700bb6af6 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +467ca620-5161-4ca3-bdd3-bea713604ff4 2023-09-19 2023-09-19 08:10:57.096488+00 {} t hostname cli 83202d51-1e16-415c-a13b-5a85e8e3f4f4 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +1f64e1c6-ae40-4667-9710-7efae8889b75 2023-09-19 2023-09-19 08:10:57.100115+00 {} t hostname cli 83202d51-1e16-415c-a13b-5a85e8e3f4f4 747f56fb-3012-43e4-923c-aed6195b585c +122254a9-ca50-4da9-b25d-312be6ff0ecd 2023-09-19 2023-09-19 08:10:57.103593+00 {} t hostname cli 83202d51-1e16-415c-a13b-5a85e8e3f4f4 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +5f43b437-779d-4dfb-a0c2-1c5795e9c6ff 2023-09-19 2023-09-19 08:10:57.107179+00 {} t set system host-name cli 83202d51-1e16-415c-a13b-5a85e8e3f4f4 8758fe0f-e52e-43f6-ae17-5b9ebe650914 +e3f6e4ea-9b9a-42f3-9bbf-167df5196126 2023-09-19 2023-09-19 08:10:57.110706+00 {} t interface cli e0e0f323-a42b-41cf-9ba0-d95cd9de3560 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +ea5a2a4b-5520-4f74-b3bc-49f5441dd203 2023-09-19 2023-09-19 08:10:57.114196+00 {} t interface cli e0e0f323-a42b-41cf-9ba0-d95cd9de3560 747f56fb-3012-43e4-923c-aed6195b585c +8768c779-113e-40e3-bc5e-e21ecd8ee47f 2023-09-19 2023-09-19 08:10:57.117649+00 {} t interface cli e0e0f323-a42b-41cf-9ba0-d95cd9de3560 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +b0766b19-4aee-42f8-aea4-c734f0fa7b4b 2023-09-19 2023-09-19 08:10:57.121145+00 {} t set interfaces cli e0e0f323-a42b-41cf-9ba0-d95cd9de3560 8758fe0f-e52e-43f6-ae17-5b9ebe650914 +2c02eed9-e794-4390-9b73-f20ed81a120c 2023-09-19 2023-09-19 08:10:57.124574+00 {} t ntp cli 9e00d411-27db-4bba-a88e-1a8cd2863b86 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +59970ee6-f019-4ade-899b-d277f2bc377a 2023-09-19 2023-09-19 08:10:57.128097+00 {} t ntp cli 9e00d411-27db-4bba-a88e-1a8cd2863b86 747f56fb-3012-43e4-923c-aed6195b585c +7290b476-9e6a-4bbb-a0e7-b33a1dead34e 2023-09-19 2023-09-19 08:10:57.131675+00 {} t ntp cli 9e00d411-27db-4bba-a88e-1a8cd2863b86 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +8591f36b-7f22-4336-9f27-7d7d72fb9563 2023-09-19 2023-09-19 08:10:57.135284+00 {} t service\nno service\nip hardware\nvrf definition management\nvrf instance management cli 9387aaf0-453e-4692-b079-29f0abcdea11 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +422ca602-4480-461e-9c32-f1a803c57bf7 2023-09-19 2023-09-19 08:10:57.139294+00 {} t service\nno service cli 9387aaf0-453e-4692-b079-29f0abcdea11 747f56fb-3012-43e4-923c-aed6195b585c +5f69e1e2-d044-4acf-ac53-4a428cc0d132 2023-09-19 2023-09-19 08:10:57.143226+00 {} t set system services\nset protocols lldp cli 9387aaf0-453e-4692-b079-29f0abcdea11 8758fe0f-e52e-43f6-ae17-5b9ebe650914 +eb3e09ef-11d1-4a91-9188-a7d804737aad 2023-09-19 2023-09-19 08:10:57.146951+00 {} t snmp\nno snmp cli 4716cdba-d395-42e5-82f7-1b879547961e 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +f8ada320-e57d-4841-86e7-65a26cd62513 2023-09-19 2023-09-19 08:10:57.150501+00 {} t snmp cli 4716cdba-d395-42e5-82f7-1b879547961e 747f56fb-3012-43e4-923c-aed6195b585c +19a2ed75-e360-4eb5-b50a-53d578b937de 2023-09-19 2023-09-19 08:10:57.153918+00 {} f snmp-server community\nsnmp-server contact\nsnmp-server location\nsnmp-server host cli 4716cdba-d395-42e5-82f7-1b879547961e 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +7f351e2b-b5b6-4332-94e8-292878630ab4 2023-09-19 2023-09-19 08:10:57.157345+00 {} t logging cli 6c39877e-4d99-428f-97b4-e33e9d8fd890 92ba0e90-cfdd-46f2-8607-1365a0bbd9bb +071eb330-daaa-4102-ace1-4e99caf9f807 2023-09-19 2023-09-19 08:10:57.160932+00 {} t logging cli 6c39877e-4d99-428f-97b4-e33e9d8fd890 747f56fb-3012-43e4-923c-aed6195b585c +da8534d8-08e0-4f63-8a90-d503a4147632 2023-09-19 2023-09-19 08:10:57.164367+00 {} t logging server cli 6c39877e-4d99-428f-97b4-e33e9d8fd890 6868b094-e65b-4476-ba1c-2a047ffd5ca0 +6329c371-de30-4d63-9b01-8a79acb48cda 2023-09-19 2023-09-19 08:10:57.16787+00 {} t set system syslog\ndeactivate system cli 6c39877e-4d99-428f-97b4-e33e9d8fd890 8758fe0f-e52e-43f6-ae17-5b9ebe650914 +\. + + +-- +-- Data for Name: nautobot_golden_config_configcompliance; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_configcompliance (id, created, last_updated, _custom_field_data, compliance, actual, intended, missing, extra, ordered, compliance_int, device_id, rule_id) FROM stdin; +4e28dab5-acde-4324-8dd9-87ee187cf8d2 2023-09-19 2023-09-19 08:11:01.532949+00 {} f "ip domain name infra.ntc.com" "ip domain name ntc.com" "ip domain name ntc.com" "ip domain name infra.ntc.com" f 0 45cca71d-85a7-42ac-b792-af8b4aef87cd b04568f0-6280-465c-83bd-0573a5fea421 +cc6b4470-dc22-443e-8889-5f9e8ca99341 2023-09-19 2023-09-19 08:11:01.54268+00 {} t "service timestamps debug datetime msec\\nservice timestamps log datetime msec\\nservice call-home" "service timestamps debug datetime msec\\nservice timestamps log datetime msec\\nservice call-home" "" "" t 1 45cca71d-85a7-42ac-b792-af8b4aef87cd 422ca602-4480-461e-9c32-f1a803c57bf7 +91fb5645-190f-48f4-b42c-d5e5b276acc9 2023-09-19 2023-09-19 08:11:01.551469+00 {} t "" "" "" "" t 1 45cca71d-85a7-42ac-b792-af8b4aef87cd 26765c6a-584e-4043-8476-d3c0af9723e2 +8c6cbc53-68af-4d26-b4a7-f9bdff799e1e 2023-09-19 2023-09-19 08:11:01.560693+00 {} f "line con 0\\n stopbits 1\\nline vty 0 4\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all\\nline vty 5 15\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all" "username ntc privilege 15 password 0 ntc123\\nline con 0\\n stopbits 1\\nline vty 0 4\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all\\nline vty 5 15\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all" "username ntc privilege 15 password 0 ntc123" "" f 0 45cca71d-85a7-42ac-b792-af8b4aef87cd b9049cdb-ec08-4d64-8dae-fbfccd82ccc4 +d9fe4dbc-ec85-421c-859c-4060d312d631 2023-09-19 2023-09-19 08:11:01.569525+00 {} f "logging userinfo\\nlogging origin-id hostname\\nlogging host 10.125.1.171 transport udp port 7004" "logging userinfo\\nlogging origin-id hostname\\nlogging host 10.1.1.1 transport udp port 7004" "logging host 10.1.1.1 transport udp port 7004" "logging host 10.125.1.171 transport udp port 7004" f 0 45cca71d-85a7-42ac-b792-af8b4aef87cd 071eb330-daaa-4102-ace1-4e99caf9f807 +a98c44ce-e249-429a-b282-28b5b9d34f80 2023-09-19 2023-09-19 08:11:01.579121+00 {} f "interface Loopback0\\n ip address 10.0.10.3 255.255.255.255\\ninterface GigabitEthernet1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15 255.255.255.0\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet2\\n ip address 10.10.0.6 255.255.255.252\\n ip access-group BLOCK_TRANSIT_LINKS in\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet3\\n ip address 10.10.0.14 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet4\\n description backbone-to-vmx3-ge0/0/3\\n ip address 10.10.0.17 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet5\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet6\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet7\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet8\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet9\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid" "interface Loopback0\\n ip address 10.0.10.3 255.255.255.255\\ninterface GigabitEthernet1\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet2\\n ip address 10.10.0.6 255.255.255.252\\n ip access-group BLOCK_TRANSIT_LINKS in\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet3\\n ip address 10.10.0.14 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet4\\n ip address 10.10.0.17 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet5\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet6\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet7\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet8\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet9\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid" "interface GigabitEthernet1\\n no ip address" "interface GigabitEthernet1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15 255.255.255.0\\ninterface GigabitEthernet4\\n description backbone-to-vmx3-ge0/0/3\\ninterface GigabitEthernet6\\n shutdown\\ninterface GigabitEthernet7\\n shutdown\\ninterface GigabitEthernet8\\n shutdown\\ninterface GigabitEthernet9\\n shutdown" f 0 45cca71d-85a7-42ac-b792-af8b4aef87cd ea5a2a4b-5520-4f74-b3bc-49f5441dd203 +3df9e4d2-2638-4bc6-910f-b264a9b15fab 2023-09-19 2023-09-19 08:11:01.588016+00 {} t "hostname jcy-bb-01" "hostname jcy-bb-01" "" "" t 1 45cca71d-85a7-42ac-b792-af8b4aef87cd 1f64e1c6-ae40-4667-9710-7efae8889b75 +53856834-9c9a-4bdb-ba18-88e4e45e703e 2023-09-19 2023-09-19 08:11:01.596507+00 {} t "" "" "" "" t 1 45cca71d-85a7-42ac-b792-af8b4aef87cd ad29fcac-15e8-470a-9aad-0001343d9894 +ed558511-df66-425f-8942-c2f6de24dfcc 2023-09-19 2023-09-19 08:11:01.604937+00 {} f "snmp-server community networktocode RO\\nsnmp-server community secure RW\\nsnmp-server community ntc-public RO\\nsnmp-server community ntc-private RW\\nsnmp-server trap retry 5\\nsnmp-server trap timeout 60\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "snmp-server community ntc-public RO\\nsnmp-server community ntc-private RW\\nsnmp-server community networktocode RO\\nsnmp-server community secure RW\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "" "snmp-server trap retry 5\\nsnmp-server trap timeout 60" f 0 45cca71d-85a7-42ac-b792-af8b4aef87cd f8ada320-e57d-4841-86e7-65a26cd62513 +8c31b9bd-b9f2-4c79-b228-a658f1eb25c3 2023-09-19 2023-09-19 08:11:01.613256+00 {} t "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "" "" t 1 45cca71d-85a7-42ac-b792-af8b4aef87cd 59970ee6-f019-4ade-899b-d277f2bc377a +1035db09-3c0e-4bfc-97c6-71fd47afe7a3 2023-09-19 2023-09-19 08:11:01.621676+00 {} f "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "" "" "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee 59970ee6-f019-4ade-899b-d277f2bc377a +1cc70fb1-7114-4bb4-8e9e-75cba020a4ab 2023-09-19 2023-09-19 08:11:01.630807+00 {} f "interface Loopback0\\n ip address 10.0.10.1 255.255.255.255\\ninterface GigabitEthernet1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15 255.255.255.0\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet2\\n ip address 10.10.0.5 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet3\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet4\\n ip address 10.10.0.9 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet5\\n ip address 10.10.11.5 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet6\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet7\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet8\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet9\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid" "" "" "interface Loopback0\\n ip address 10.0.10.1 255.255.255.255\\ninterface GigabitEthernet1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15 255.255.255.0\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet2\\n ip address 10.10.0.5 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet3\\n no ip address\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet4\\n ip address 10.10.0.9 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet5\\n ip address 10.10.11.5 255.255.255.252\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet6\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet7\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet8\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid\\ninterface GigabitEthernet9\\n no ip address\\n shutdown\\n negotiation auto\\n no mop enabled\\n no mop sysid" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee ea5a2a4b-5520-4f74-b3bc-49f5441dd203 +31606c6c-be1b-4599-a67e-cc7fdacf605a 2023-09-19 2023-09-19 08:11:01.640083+00 {} f "hostname jcy-rtr-01" "" "" "hostname jcy-rtr-01" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee 1f64e1c6-ae40-4667-9710-7efae8889b75 +9eaea575-9c48-4c6e-91f2-7dd985a6dbc6 2023-09-19 2023-09-19 08:11:01.649281+00 {} f "ip domain name infra.ntc.com" "" "" "ip domain name infra.ntc.com" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee b04568f0-6280-465c-83bd-0573a5fea421 +d995059d-a57b-4ec0-900a-6293f4ec4d51 2023-09-19 2023-09-19 08:11:01.657563+00 {} f "line con 0\\n stopbits 1\\nline vty 0 4\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all\\nline vty 5 15\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all" "" "" "line con 0\\n stopbits 1\\nline vty 0 4\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all\\nline vty 5 15\\n privilege level 15\\n login local\\n transport preferred ssh\\n transport input all" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee b9049cdb-ec08-4d64-8dae-fbfccd82ccc4 +9c0214e8-b9f5-47f9-b594-fc7fa21bfe80 2023-09-19 2023-09-19 08:11:01.665896+00 {} t "" "" "" "" t 1 80f9eb01-db6d-4939-9f2e-ef2c222cedee 26765c6a-584e-4043-8476-d3c0af9723e2 +33b6721b-6821-4f4b-b6b1-8e3f7db1df6d 2023-09-19 2023-09-19 08:11:01.673998+00 {} t "" "" "" "" t 1 80f9eb01-db6d-4939-9f2e-ef2c222cedee ad29fcac-15e8-470a-9aad-0001343d9894 +c3102388-8239-40b3-8336-5126e1d67e24 2023-09-19 2023-09-19 08:11:02.332195+00 {} t "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "" "" t 1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e 2c02eed9-e794-4390-9b73-f20ed81a120c +2b373083-88bb-4c49-9b3e-4d6c48e96aef 2023-09-19 2023-09-19 08:11:01.682549+00 {} f "service timestamps debug datetime msec\\nservice timestamps log datetime msec\\nservice call-home" "" "" "service timestamps debug datetime msec\\nservice timestamps log datetime msec\\nservice call-home" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee 422ca602-4480-461e-9c32-f1a803c57bf7 +531424da-8b7f-4fc9-85c4-343f0f8f5ced 2023-09-19 2023-09-19 08:11:01.691083+00 {} f "snmp-server community networktocode RO\\nsnmp-server community secure RW\\nsnmp-server community ntc-public RO\\nsnmp-server community ntc-private RW\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "" "" "snmp-server community networktocode RO\\nsnmp-server community secure RW\\nsnmp-server community ntc-public RO\\nsnmp-server community ntc-private RW\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee f8ada320-e57d-4841-86e7-65a26cd62513 +49e1a6ec-1574-4538-abe7-88a6b677decd 2023-09-19 2023-09-19 08:11:01.699395+00 {} f "logging userinfo\\nlogging origin-id hostname\\nlogging host 10.125.1.171 transport udp port 7004" "" "" "logging userinfo\\nlogging origin-id hostname\\nlogging host 10.125.1.171 transport udp port 7004" f 0 80f9eb01-db6d-4939-9f2e-ef2c222cedee 071eb330-daaa-4102-ace1-4e99caf9f807 +e8094e5b-beb0-41b6-89cb-8b6aa73feec3 2023-09-19 2023-09-19 08:11:01.708497+00 {} t "ntp server 10.1.1.1 use-vrf default\\nntp server 10.2.2.2 prefer use-vrf default" "ntp server 10.1.1.1 use-vrf default\\nntp server 10.2.2.2 prefer use-vrf default" "" "" t 1 6442be3b-16d7-4788-ad3f-fb88282ea42d 7290b476-9e6a-4bbb-a0e7-b33a1dead34e +5dc56182-3d54-445e-8c04-46943a662fc0 2023-09-19 2023-09-19 08:11:01.717116+00 {} t "logging server 10.125.1.171 6 port 7008" "logging server 10.125.1.171 6 port 7008" "" "" t 1 6442be3b-16d7-4788-ad3f-fb88282ea42d da8534d8-08e0-4f63-8a90-d503a4147632 +e8371c9b-bfcc-4a7c-9db8-7400d2e4effd 2023-09-19 2023-09-19 08:11:01.728019+00 {} f "interface Vlan1\\ninterface Ethernet1/1\\n no switchport\\n mac-address 0000.1100.2222\\n ip address 10.10.10.5/30\\n no shutdown\\ninterface Ethernet1/2\\n no switchport\\n mac-address 0011.1111.2222\\n ip address 10.10.10.9/30\\n no shutdown\\ninterface Ethernet1/3\\n no switchport\\n mac-address 0022.1122.2222\\n ip address 10.10.10.13/30\\n no shutdown\\ninterface Ethernet1/4\\n no switchport\\n mac-address 0033.1133.2222\\n ip address 10.10.10.17/30\\n no shutdown\\ninterface Ethernet1/5\\n no switchport\\n mac-address 0044.1144.2222\\n ip address 10.10.11.6/30\\n no shutdown\\ninterface Ethernet1/6\\ninterface Ethernet1/7\\ninterface Ethernet1/8\\ninterface Ethernet1/9\\ninterface Ethernet1/10\\ninterface Ethernet1/11\\ninterface Ethernet1/12\\ninterface Ethernet1/13\\ninterface Ethernet1/14\\ninterface Ethernet1/15\\ninterface Ethernet1/16\\ninterface Ethernet1/17\\ninterface Ethernet1/18\\ninterface Ethernet1/19\\ninterface Ethernet1/20\\ninterface Ethernet1/21\\ninterface Ethernet1/22\\ninterface Ethernet1/23\\ninterface Ethernet1/24\\ninterface Ethernet1/25\\ninterface Ethernet1/26\\ninterface Ethernet1/27\\ninterface Ethernet1/28\\ninterface Ethernet1/29\\ninterface Ethernet1/30\\ninterface Ethernet1/31\\ninterface Ethernet1/32\\ninterface Ethernet1/33\\ninterface Ethernet1/34\\ninterface Ethernet1/35\\ninterface Ethernet1/36\\ninterface Ethernet1/37\\ninterface Ethernet1/38\\ninterface Ethernet1/39\\ninterface Ethernet1/40\\ninterface Ethernet1/41\\ninterface Ethernet1/42\\ninterface Ethernet1/43\\ninterface Ethernet1/44\\ninterface Ethernet1/45\\ninterface Ethernet1/46\\ninterface Ethernet1/47\\ninterface Ethernet1/48\\ninterface Ethernet1/49\\ninterface Ethernet1/50\\ninterface Ethernet1/51\\ninterface Ethernet1/52\\ninterface Ethernet1/53\\ninterface Ethernet1/54\\ninterface Ethernet1/55\\ninterface Ethernet1/56\\ninterface Ethernet1/57\\ninterface Ethernet1/58\\ninterface Ethernet1/59\\ninterface Ethernet1/60\\ninterface Ethernet1/61\\ninterface Ethernet1/62\\ninterface Ethernet1/63\\ninterface Ethernet1/64\\ninterface mgmt0\\n description MANAGEMENT_DO_NOT_CHANGE\\n vrf member management\\n ip address 10.0.0.15/24\\ninterface loopback0\\n ip address 10.0.10.4/32" "interface Ethernet1/1\\n no switchport\\n ip address 10.10.10.5/30\\ninterface Ethernet1/2\\n no switchport\\n ip address 10.10.10.9/30\\ninterface Ethernet1/3\\n no switchport\\n ip address 10.10.10.13/30\\ninterface Ethernet1/4\\n no switchport\\n ip address 10.10.10.17/30\\ninterface Ethernet1/5\\n no switchport\\n ip address 10.10.11.6/30\\ninterface Ethernet1/6\\ninterface Ethernet1/7\\ninterface Ethernet1/8\\ninterface Ethernet1/9\\ninterface Ethernet1/10\\ninterface Ethernet1/11\\ninterface Ethernet1/12\\ninterface Ethernet1/13\\ninterface Ethernet1/14\\ninterface Ethernet1/15\\ninterface Ethernet1/16\\ninterface Ethernet1/17\\ninterface Ethernet1/18\\ninterface Ethernet1/19\\ninterface Ethernet1/20\\ninterface Ethernet1/21\\ninterface Ethernet1/22\\ninterface Ethernet1/23\\ninterface Ethernet1/24\\ninterface Ethernet1/25\\ninterface Ethernet1/26\\ninterface Ethernet1/27\\ninterface Ethernet1/28\\ninterface Ethernet1/29\\ninterface Ethernet1/30\\ninterface Ethernet1/31\\ninterface Ethernet1/32\\ninterface Ethernet1/33\\ninterface Ethernet1/34\\ninterface Ethernet1/35\\ninterface Ethernet1/36\\ninterface Ethernet1/37\\ninterface Ethernet1/38\\ninterface Ethernet1/39\\ninterface Ethernet1/40\\ninterface Ethernet1/41\\ninterface Ethernet1/42\\ninterface Ethernet1/43\\ninterface Ethernet1/44\\ninterface Ethernet1/45\\ninterface Ethernet1/46\\ninterface Ethernet1/47\\ninterface Ethernet1/48\\ninterface Ethernet1/49\\ninterface Ethernet1/50\\ninterface Ethernet1/51\\ninterface Ethernet1/52\\ninterface Ethernet1/53\\ninterface Ethernet1/54\\ninterface Ethernet1/55\\ninterface Ethernet1/56\\ninterface Ethernet1/57\\ninterface Ethernet1/58\\ninterface Ethernet1/59\\ninterface Ethernet1/60\\ninterface Ethernet1/61\\ninterface Ethernet1/62\\ninterface Ethernet1/63\\ninterface Ethernet1/64\\ninterface mgmt0\\n vrf member management\\n no ip address\\ninterface loopback0\\n ip address 10.0.10.4/32" "interface mgmt0\\n no ip address" "interface Vlan1\\ninterface Ethernet1/1\\n mac-address 0000.1100.2222\\n no shutdown\\ninterface Ethernet1/2\\n mac-address 0011.1111.2222\\n no shutdown\\ninterface Ethernet1/3\\n mac-address 0022.1122.2222\\n no shutdown\\ninterface Ethernet1/4\\n mac-address 0033.1133.2222\\n no shutdown\\ninterface Ethernet1/5\\n mac-address 0044.1144.2222\\n no shutdown\\ninterface mgmt0\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" f 0 6442be3b-16d7-4788-ad3f-fb88282ea42d 8768c779-113e-40e3-bc5e-e21ecd8ee47f +9a041124-beaa-42cb-a4c0-5d5dd5a45335 2023-09-19 2023-09-19 08:11:01.736853+00 {} t "hostname jcy-spine-01" "hostname jcy-spine-01" "" "" t 1 6442be3b-16d7-4788-ad3f-fb88282ea42d 122254a9-ca50-4da9-b25d-312be6ff0ecd +61eae4f1-1580-468f-856a-ec44ed3ba032 2023-09-19 2023-09-19 08:11:01.746764+00 {} f "ip domain-lookup\\nip domain-name infra.ntc.com" "ip domain-lookup\\nip domain-name ntc.com" "ip domain-name ntc.com" "ip domain-name infra.ntc.com" f 0 6442be3b-16d7-4788-ad3f-fb88282ea42d e7b41db7-6bd6-42f6-ac5a-5cd99c2f2757 +e0755d9a-59ee-46f6-acbb-4bbcdda94976 2023-09-19 2023-09-19 08:11:01.762609+00 {} t "" "" "" "" t 1 6442be3b-16d7-4788-ad3f-fb88282ea42d 972f28ee-a789-44a3-a78f-5967f26d8b2e +1f0423be-41ec-4c22-ba4d-dcafda60b9c9 2023-09-19 2023-09-19 08:11:01.772782+00 {} t "" "" "" "" t 1 6442be3b-16d7-4788-ad3f-fb88282ea42d 9aab11cb-40ac-4a2a-ab93-0649c960419f +cd6f1379-6bbc-44ef-b088-99917c254e76 2023-09-19 2023-09-19 08:11:01.782693+00 {} f "no password strength-check\\nusername admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\\nusername ntc password 5 $5$CDcpD09G$Lf1x/n.2SDvcnznTJsZ75drkIi5XguFoieba3IVtGV. role network-admin\\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\\nline console\\nline vty" "no password strength-check\\nusername admin password 5 role network-admin\\nusername ntc password 5 role network-admin\\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\\nline console\\nline vty" "username admin password 5 role network-admin\\nusername ntc password 5 role network-admin" "username admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\\nusername ntc password 5 $5$CDcpD09G$Lf1x/n.2SDvcnznTJsZ75drkIi5XguFoieba3IVtGV. role network-admin" f 0 6442be3b-16d7-4788-ad3f-fb88282ea42d 3ac0c715-9ba8-4608-858a-c9fe348053dc +f0feb7fe-542c-4c1e-894b-d1d2bc580f24 2023-09-19 2023-09-19 08:11:01.793035+00 {} t "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server host 10.1.1.1 traps version 2c networktocode\\nsnmp-server community secure group network-admin\\nsnmp-server community networktocode group network-operator" "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server host 10.1.1.1 traps version 2c networktocode\\nsnmp-server community networktocode group network-operator\\nsnmp-server community secure group network-admin" "" "" f 1 6442be3b-16d7-4788-ad3f-fb88282ea42d 19a2ed75-e360-4eb5-b50a-53d578b937de +29182999-20b7-41ee-8d55-1a6761660f3c 2023-09-19 2023-09-19 08:11:01.805093+00 {} t "logging server 10.125.1.171 6 port 7008" "logging server 10.125.1.171 6 port 7008" "" "" t 1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af da8534d8-08e0-4f63-8a90-d503a4147632 +e6bf6e29-7868-4ab4-99e3-eb6d1c350fb0 2023-09-19 2023-09-19 08:11:01.814747+00 {} f "no password strength-check\\nusername admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\\nusername ntc password 5 $5$vs8QBzjV$RAvg3Ix44L4CHZZJSDagsDPuVLKFkt9bcwliTEM8Lf1 role network-admin\\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\\nline console\\nline vty" "no password strength-check\\nusername admin password 5 role network-admin\\nusername ntc password 5 role network-admin\\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\\nline console\\nline vty" "username admin password 5 role network-admin\\nusername ntc password 5 role network-admin" "username admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\\nusername ntc password 5 $5$vs8QBzjV$RAvg3Ix44L4CHZZJSDagsDPuVLKFkt9bcwliTEM8Lf1 role network-admin" f 0 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 3ac0c715-9ba8-4608-858a-c9fe348053dc +d7a22ac8-79d9-4078-96b1-ce2e84497f62 2023-09-19 2023-09-19 08:11:01.825564+00 {} t "" "" "" "" t 1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 9aab11cb-40ac-4a2a-ab93-0649c960419f +a6087bca-f1e7-4e82-8870-ba96f6ba277d 2023-09-19 2023-09-19 08:11:01.835229+00 {} t "" "" "" "" t 1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 972f28ee-a789-44a3-a78f-5967f26d8b2e +ddf399d2-8867-4815-a7c9-d7099b14a9e6 2023-09-19 2023-09-19 08:11:01.845393+00 {} f "ip domain-lookup\\nip domain-name infra.ntc.com" "ip domain-lookup\\nip domain-name ntc.com" "ip domain-name ntc.com" "ip domain-name infra.ntc.com" f 0 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af e7b41db7-6bd6-42f6-ac5a-5cd99c2f2757 +025d199c-484f-48ff-bd88-c54b68c88ac9 2023-09-19 2023-09-19 08:11:01.854871+00 {} t "hostname jcy-spine-02" "hostname jcy-spine-02" "" "" t 1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 122254a9-ca50-4da9-b25d-312be6ff0ecd +3b87573b-fcd3-4d27-94c9-efd713c55583 2023-09-19 2023-09-19 08:11:02.518342+00 {} t "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "" "" t 1 182b57af-ef9e-428d-916d-7f18e14357d1 2c02eed9-e794-4390-9b73-f20ed81a120c +76d62b5a-bfcc-4be8-92d0-f8e3e9a7e557 2023-09-19 2023-09-19 08:11:01.865298+00 {} f "interface Vlan1\\ninterface Ethernet1/1\\n no switchport\\n mac-address 4444.a800.0101\\n ip address 10.10.10.6/30\\n no shutdown\\ninterface Ethernet1/2\\n no switchport\\n mac-address 4444.a801.0001\\n ip address 10.10.10.10/30\\n no shutdown\\ninterface Ethernet1/3\\n no switchport\\n mac-address 4444.a802.1100\\n ip address 10.10.10.14/30\\n no shutdown\\ninterface Ethernet1/4\\n no switchport\\n mac-address 4444.a803.1010\\n ip address 10.10.10.18/30\\n no shutdown\\ninterface Ethernet1/5\\n no switchport\\n mac-address 4444.a804.1110\\n ip address 10.10.11.10/30\\n no shutdown\\ninterface Ethernet1/6\\ninterface Ethernet1/7\\ninterface Ethernet1/8\\ninterface Ethernet1/9\\ninterface Ethernet1/10\\ninterface Ethernet1/11\\ninterface Ethernet1/12\\ninterface Ethernet1/13\\ninterface Ethernet1/14\\ninterface Ethernet1/15\\ninterface Ethernet1/16\\ninterface Ethernet1/17\\ninterface Ethernet1/18\\ninterface Ethernet1/19\\ninterface Ethernet1/20\\ninterface Ethernet1/21\\ninterface Ethernet1/22\\ninterface Ethernet1/23\\ninterface Ethernet1/24\\ninterface Ethernet1/25\\ninterface Ethernet1/26\\ninterface Ethernet1/27\\ninterface Ethernet1/28\\ninterface Ethernet1/29\\ninterface Ethernet1/30\\ninterface Ethernet1/31\\ninterface Ethernet1/32\\ninterface Ethernet1/33\\ninterface Ethernet1/34\\ninterface Ethernet1/35\\ninterface Ethernet1/36\\ninterface Ethernet1/37\\ninterface Ethernet1/38\\ninterface Ethernet1/39\\ninterface Ethernet1/40\\ninterface Ethernet1/41\\ninterface Ethernet1/42\\ninterface Ethernet1/43\\ninterface Ethernet1/44\\ninterface Ethernet1/45\\ninterface Ethernet1/46\\ninterface Ethernet1/47\\ninterface Ethernet1/48\\ninterface Ethernet1/49\\ninterface Ethernet1/50\\ninterface Ethernet1/51\\ninterface Ethernet1/52\\ninterface Ethernet1/53\\ninterface Ethernet1/54\\ninterface Ethernet1/55\\ninterface Ethernet1/56\\ninterface Ethernet1/57\\ninterface Ethernet1/58\\ninterface Ethernet1/59\\ninterface Ethernet1/60\\ninterface Ethernet1/61\\ninterface Ethernet1/62\\ninterface Ethernet1/63\\ninterface Ethernet1/64\\ninterface mgmt0\\n description MANAGEMENT_DO_NOT_CHANGE\\n vrf member management\\n ip address 10.0.0.15/24\\ninterface loopback0\\n ip address 10.0.10.5/32" "interface Ethernet1/1\\n no switchport\\n ip address 10.10.10.6/30\\ninterface Ethernet1/2\\n no switchport\\n ip address 10.10.10.10/30\\ninterface Ethernet1/3\\n no switchport\\n ip address 10.10.10.14/30\\ninterface Ethernet1/4\\n no switchport\\n ip address 10.10.10.18/30\\ninterface Ethernet1/5\\n no switchport\\n ip address 10.10.11.10/30\\ninterface Ethernet1/6\\ninterface Ethernet1/7\\ninterface Ethernet1/8\\ninterface Ethernet1/9\\ninterface Ethernet1/10\\ninterface Ethernet1/11\\ninterface Ethernet1/12\\ninterface Ethernet1/13\\ninterface Ethernet1/14\\ninterface Ethernet1/15\\ninterface Ethernet1/16\\ninterface Ethernet1/17\\ninterface Ethernet1/18\\ninterface Ethernet1/19\\ninterface Ethernet1/20\\ninterface Ethernet1/21\\ninterface Ethernet1/22\\ninterface Ethernet1/23\\ninterface Ethernet1/24\\ninterface Ethernet1/25\\ninterface Ethernet1/26\\ninterface Ethernet1/27\\ninterface Ethernet1/28\\ninterface Ethernet1/29\\ninterface Ethernet1/30\\ninterface Ethernet1/31\\ninterface Ethernet1/32\\ninterface Ethernet1/33\\ninterface Ethernet1/34\\ninterface Ethernet1/35\\ninterface Ethernet1/36\\ninterface Ethernet1/37\\ninterface Ethernet1/38\\ninterface Ethernet1/39\\ninterface Ethernet1/40\\ninterface Ethernet1/41\\ninterface Ethernet1/42\\ninterface Ethernet1/43\\ninterface Ethernet1/44\\ninterface Ethernet1/45\\ninterface Ethernet1/46\\ninterface Ethernet1/47\\ninterface Ethernet1/48\\ninterface Ethernet1/49\\ninterface Ethernet1/50\\ninterface Ethernet1/51\\ninterface Ethernet1/52\\ninterface Ethernet1/53\\ninterface Ethernet1/54\\ninterface Ethernet1/55\\ninterface Ethernet1/56\\ninterface Ethernet1/57\\ninterface Ethernet1/58\\ninterface Ethernet1/59\\ninterface Ethernet1/60\\ninterface Ethernet1/61\\ninterface Ethernet1/62\\ninterface Ethernet1/63\\ninterface Ethernet1/64\\ninterface mgmt0\\n vrf member management\\n no ip address\\ninterface loopback0\\n ip address 10.0.10.5/32" "interface mgmt0\\n no ip address" "interface Vlan1\\ninterface Ethernet1/1\\n mac-address 4444.a800.0101\\n no shutdown\\ninterface Ethernet1/2\\n mac-address 4444.a801.0001\\n no shutdown\\ninterface Ethernet1/3\\n mac-address 4444.a802.1100\\n no shutdown\\ninterface Ethernet1/4\\n mac-address 4444.a803.1010\\n no shutdown\\ninterface Ethernet1/5\\n mac-address 4444.a804.1110\\n no shutdown\\ninterface mgmt0\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" f 0 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 8768c779-113e-40e3-bc5e-e21ecd8ee47f +3188273f-9279-42b9-9f62-0ce3021de1dd 2023-09-19 2023-09-19 08:11:01.875128+00 {} t "ntp server 10.1.1.1 use-vrf default\\nntp server 10.2.2.2 prefer use-vrf default" "ntp server 10.1.1.1 use-vrf default\\nntp server 10.2.2.2 prefer use-vrf default" "" "" t 1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 7290b476-9e6a-4bbb-a0e7-b33a1dead34e +db9735dd-5242-4acb-9e44-73d0454facf4 2023-09-19 2023-09-19 08:11:01.88452+00 {} t "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server host 10.1.1.1 traps version 2c networktocode\\nsnmp-server community secure group network-admin\\nsnmp-server community networktocode group network-operator" "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server host 10.1.1.1 traps version 2c networktocode\\nsnmp-server community networktocode group network-operator\\nsnmp-server community secure group network-admin" "" "" f 1 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af 19a2ed75-e360-4eb5-b50a-53d578b937de +f6ee4e80-805d-473e-8940-f48a11404ea9 2023-09-19 2023-09-19 08:11:01.893924+00 {} t "set system login class super-user-local idle-timeout 3600\\nset system login class super-user-local permissions all\\nset system login user ntc uid 2000\\nset system login user ntc class super-user-local\\nset system login user ntc authentication encrypted-password \\"$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph.\\"\\nset system root-authentication encrypted-password \\"$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1\\"" "set system login class super-user-local idle-timeout 3600\\nset system login class super-user-local permissions all\\nset system login user ntc uid 2000\\nset system login user ntc class super-user-local\\nset system login user ntc authentication encrypted-password \\"$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph.\\"\\nset system root-authentication encrypted-password \\"$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1\\"" "" "" t 1 4f1092db-761d-4ae6-9d20-275e186b67ea 0d20167f-cc57-4d4e-86f5-5ae657d2274a +51e173c1-0099-4866-9e89-ce24d0ed8ddc 2023-09-19 2023-09-19 08:11:01.904064+00 {} f "set interfaces ge-0/0/0 unit 0 family inet address 10.10.0.22/30\\nset interfaces ge-0/0/1 unit 0 family inet\\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.30/30\\nset interfaces ge-0/0/3 unit 0 family inet address 10.10.0.18/30\\nset interfaces ge-0/0/4 unit 0 family inet\\nset interfaces ge-0/0/5 unit 0 family inet\\nset interfaces ge-0/0/6 unit 0 family inet\\nset interfaces ge-0/0/7 unit 0 family inet\\nset interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24\\nset interfaces lo0 unit 0 family inet address 10.0.20.3/32" "set interfaces ge-0/0/0 unit 0 family inet address 10.10.0.22/30\\nset interfaces ge-0/0/1 unit 0 family inet\\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.30/30\\nset interfaces ge-0/0/3 unit 0 family inet address 10.10.0.18/30\\nset interfaces ge-0/0/4 unit 0 family inet\\nset interfaces ge-0/0/5 unit 0 family inet\\nset interfaces ge-0/0/6 unit 0 family inet\\nset interfaces ge-0/0/7 unit 0 family inet\\nset interfaces ge-0/0/8 unit 0 family inet\\nset interfaces ge-0/0/9 unit 0 family inet\\nset interfaces ge-0/0/10 unit 0 family inet\\nset interfaces ge-0/0/11 unit 0 family inet\\nset interfaces ge-0/0/12 unit 0 family inet\\nset interfaces ge-0/0/13 unit 0 family inet\\nset interfaces ge-0/0/14 unit 0 family inet\\nset interfaces ge-0/0/15 unit 0 family inet\\nset interfaces ge-0/0/16 unit 0 family inet\\nset interfaces ge-0/0/17 unit 0 family inet\\nset interfaces ge-0/0/18 unit 0 family inet\\nset interfaces ge-0/0/19 unit 0 family inet\\nset interfaces fxp0 unit 0 family inet\\nset interfaces lo0 unit 0 family inet address 10.0.20.3/32" "set interfaces ge-0/0/8 unit 0 family inet\\nset interfaces ge-0/0/9 unit 0 family inet\\nset interfaces ge-0/0/10 unit 0 family inet\\nset interfaces ge-0/0/11 unit 0 family inet\\nset interfaces ge-0/0/12 unit 0 family inet\\nset interfaces ge-0/0/13 unit 0 family inet\\nset interfaces ge-0/0/14 unit 0 family inet\\nset interfaces ge-0/0/15 unit 0 family inet\\nset interfaces ge-0/0/16 unit 0 family inet\\nset interfaces ge-0/0/17 unit 0 family inet\\nset interfaces ge-0/0/18 unit 0 family inet\\nset interfaces ge-0/0/19 unit 0 family inet\\nset interfaces fxp0 unit 0 family inet" "set interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24" f 0 4f1092db-761d-4ae6-9d20-275e186b67ea b0766b19-4aee-42f8-aea4-c734f0fa7b4b +c07ab561-ff3a-45c3-a532-094681587702 2023-09-19 2023-09-19 08:11:01.913281+00 {} t "set system host-name nyc-bb-01" "set system host-name nyc-bb-01" "" "" t 1 4f1092db-761d-4ae6-9d20-275e186b67ea 5f43b437-779d-4dfb-a0c2-1c5795e9c6ff +2309c263-7d7f-4d0a-8523-75b3191134ee 2023-09-19 2023-09-19 08:11:01.923096+00 {} t "set protocols bgp local-as 65252\\nset protocols bgp group p2p export send-direct\\nset protocols bgp group p2p neighbor 10.10.0.17 peer-as 65251\\nset protocols bgp group p2p neighbor 10.10.0.21 peer-as 65252\\nset protocols bgp group p2p neighbor 10.10.0.29 peer-as 65252" "set protocols bgp local-as 65252\\nset protocols bgp group p2p export send-direct\\nset protocols bgp group p2p neighbor 10.10.0.17 peer-as 65251\\nset protocols bgp group p2p neighbor 10.10.0.21 peer-as 65252\\nset protocols bgp group p2p neighbor 10.10.0.29 peer-as 65252" "" "" t 1 4f1092db-761d-4ae6-9d20-275e186b67ea 6742ec49-eb70-4756-a93d-d162b2404342 +62bbbba0-1b8f-4848-bdee-147a37deb4f3 2023-09-19 2023-09-19 08:11:01.932348+00 {} t "set system services ssh\\nset system services netconf ssh\\nset system services netconf rfc-compliant\\nset protocols lldp transmit-delay 5\\nset protocols lldp port-id-subtype interface-name\\nset protocols lldp interface all\\nset protocols lldp interface fxp0" "set system services ssh\\nset system services netconf ssh\\nset system services netconf rfc-compliant\\nset protocols lldp transmit-delay 5\\nset protocols lldp port-id-subtype interface-name\\nset protocols lldp interface all\\nset protocols lldp interface fxp0" "" "" t 1 4f1092db-761d-4ae6-9d20-275e186b67ea 5f69e1e2-d044-4acf-ac53-4a428cc0d132 +fc83bd6c-4bc6-40c3-92da-9bf94313af73 2023-09-19 2023-09-19 08:11:01.941488+00 {} t "set system syslog user * any emergency\\ndeactivate system syslog user *\\nset system syslog file messages any notice\\nset system syslog file messages authorization info\\nset system syslog file interactive-commands interactive-commands any" "set system syslog user * any emergency\\ndeactivate system syslog user *\\nset system syslog file messages any notice\\nset system syslog file messages authorization info\\nset system syslog file interactive-commands interactive-commands any" "" "" t 1 4f1092db-761d-4ae6-9d20-275e186b67ea 6329c371-de30-4d63-9b01-8a79acb48cda +b70ea261-6422-4e06-b6d4-6665e62d2fe8 2023-09-19 2023-09-19 08:11:01.950531+00 {} t "hostname nyc-leaf-01" "hostname nyc-leaf-01" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 467ca620-5161-4ca3-bdd3-bea713604ff4 +553a1d8a-560c-4a14-ab10-c3342cb53fef 2023-09-19 2023-09-19 08:11:01.960707+00 {} f "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging facility local6\\nlogging source-interface Management1\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging facility local6\\nlogging source-interface Management1" "" f 0 b99c3111-0b6d-4a36-8207-45d2d00e7e37 7f351e2b-b5b6-4332-94e8-292878630ab4 +b62723af-e6f5-41a8-b69e-f20dc8c4e8bb 2023-09-19 2023-09-19 08:11:01.970671+00 {} f "interface Ethernet1\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.14/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.18/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.6/32\\ninterface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" "interface Ethernet1\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.14/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.22/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.6/32\\ninterface Management1\\n no ip address" "interface Ethernet3\\n ip address 10.11.11.22/30\\ninterface Management1\\n no ip address" "interface Ethernet3\\n ip address 10.11.11.18/30\\ninterface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" f 0 b99c3111-0b6d-4a36-8207-45d2d00e7e37 e3f6e4ea-9b9a-42f3-9bbf-167df5196126 +7a9eddad-e9c7-4bfc-903c-9b15aa270884 2023-09-19 2023-09-19 08:11:01.979943+00 {} f "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server host 10.1.1.1 version 2c networktocode" "snmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "" "" f 0 b99c3111-0b6d-4a36-8207-45d2d00e7e37 eb3e09ef-11d1-4a91-9188-a7d804737aad +1198f8bf-d15e-40fb-96f2-fee2d97fc4af 2023-09-19 2023-09-19 08:11:01.989024+00 {} t "" "" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 8591f36b-7f22-4336-9f27-7d7d72fb9563 +bb01978d-38c8-463d-9ccd-ad0c4889ad32 2023-09-19 2023-09-19 08:11:01.998173+00 {} t "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 6f3921ed-f231-4c69-99b6-0982b82e46ef +21bddb21-16d5-472e-ae65-1e4c5d1bac3e 2023-09-19 2023-09-19 08:11:02.007299+00 {} t "ip domain-name infra.ntc.com" "ip domain-name infra.ntc.com" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 cd4a5403-702e-42d6-86a1-939f8c9cc34f +9ee47262-c48b-4249-970a-c9a208dc3280 2023-09-19 2023-09-19 08:11:02.01651+00 {} t "" "" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 a29cb11e-25dd-4578-96b6-efb938281b28 +8b044f28-297c-45c5-b939-d7c081dee016 2023-09-19 2023-09-19 08:11:02.025594+00 {} t "" "" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 bbbf8a98-8581-488a-958c-7bc256a7a300 +277d408f-616d-40db-9253-d39b9bd28ce9 2023-09-19 2023-09-19 08:11:02.037928+00 {} t "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "" "" t 1 b99c3111-0b6d-4a36-8207-45d2d00e7e37 2c02eed9-e794-4390-9b73-f20ed81a120c +b7bc39fd-9e36-4e7c-ba5b-22b7ba26d934 2023-09-19 2023-09-19 08:11:02.047198+00 {} t "" "" "" "" t 1 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 8591f36b-7f22-4336-9f27-7d7d72fb9563 +2ae2a8fc-2607-4479-95ae-1d622115506b 2023-09-19 2023-09-19 08:11:02.058754+00 {} t "hostname nyc-leaf-02" "hostname nyc-leaf-02" "" "" t 1 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 467ca620-5161-4ca3-bdd3-bea713604ff4 +8a1df1d8-11d2-4869-a537-16bafcf62bc1 2023-09-19 2023-09-19 08:11:02.07097+00 {} f "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging facility local6\\nlogging source-interface Management1\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging facility local6\\nlogging source-interface Management1" "" f 0 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 7f351e2b-b5b6-4332-94e8-292878630ab4 +f3821b22-465a-4a03-b03f-09bcd4449f49 2023-09-19 2023-09-19 08:11:02.08159+00 {} t "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "ntp server 10.1.1.1\\nntp server 10.2.2.2 prefer" "" "" t 1 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 2c02eed9-e794-4390-9b73-f20ed81a120c +cc3443fe-2df3-4632-8fef-0c234ca175af 2023-09-19 2023-09-19 08:11:02.091025+00 {} f "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server host 10.1.1.1 version 2c networktocode" "snmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "" "" f 0 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 eb3e09ef-11d1-4a91-9188-a7d804737aad +c910f728-f3e2-4cda-9cd9-1a061c8e411f 2023-09-19 2023-09-19 08:11:02.102054+00 {} t "ip domain-name infra.ntc.com" "ip domain-name infra.ntc.com" "" "" t 1 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 cd4a5403-702e-42d6-86a1-939f8c9cc34f +ef55ad4e-051a-4b8a-917d-07ac4b8a9715 2023-09-19 2023-09-19 08:11:02.111279+00 {} t "" "" "" "" t 1 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 bbbf8a98-8581-488a-958c-7bc256a7a300 +7ad606ac-4eec-47b5-807a-bb06fa4a4be4 2023-09-19 2023-09-19 08:11:02.120913+00 {} t "" "" "" "" t 1 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 a29cb11e-25dd-4578-96b6-efb938281b28 +6562ec30-e82e-4459-a605-fada62a32aba 2023-09-19 2023-09-19 08:11:02.131542+00 {} f "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$Hm2oBDqw43WgKJ8/$JZjDIdhIAj7Ml2vEJshFJfJL.riNQg6scPJzStuWuty80wQ4RgH0UwBiUE7/uQKRUkTfo6clUSQIixKyrKtkI/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "username ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/" "username ntc privilege 15 secret sha512 $6$Hm2oBDqw43WgKJ8/$JZjDIdhIAj7Ml2vEJshFJfJL.riNQg6scPJzStuWuty80wQ4RgH0UwBiUE7/uQKRUkTfo6clUSQIixKyrKtkI/" f 0 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 6f3921ed-f231-4c69-99b6-0982b82e46ef +f36d99ca-a323-41d7-81d9-a5dddc0e7803 2023-09-19 2023-09-19 08:11:02.141933+00 {} f "interface Ethernet1\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.18/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.26/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.7/32\\ninterface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" "interface Ethernet1\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.18/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.26/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.7/32\\ninterface Management1\\n no ip address" "interface Management1\\n no ip address" "interface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" f 0 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 e3f6e4ea-9b9a-42f3-9bbf-167df5196126 +606ade9b-1f32-4676-b0bc-fc26a23c4f8c 2023-09-19 2023-09-19 08:11:02.151475+00 {} t "set system host-name nyc-rtr-01" "set system host-name nyc-rtr-01" "" "" t 1 919660c6-0654-4904-9cf5-61a03cc069c3 5f43b437-779d-4dfb-a0c2-1c5795e9c6ff +4cc2c119-3542-4cd8-9f55-1de3b50074f3 2023-09-19 2023-09-19 08:11:02.160835+00 {} t "set protocols bgp local-as 65252\\nset protocols bgp group p2p export send-direct\\nset protocols bgp group p2p neighbor 10.10.0.22 peer-as 65252\\nset protocols bgp group p2p neighbor 10.10.0.26 peer-as 65252\\nset protocols bgp group p2p neighbor 10.11.11.6 peer-as 65253" "set protocols bgp local-as 65252\\nset protocols bgp group p2p export send-direct\\nset protocols bgp group p2p neighbor 10.10.0.22 peer-as 65252\\nset protocols bgp group p2p neighbor 10.10.0.26 peer-as 65252\\nset protocols bgp group p2p neighbor 10.11.11.6 peer-as 65253" "" "" t 1 919660c6-0654-4904-9cf5-61a03cc069c3 6742ec49-eb70-4756-a93d-d162b2404342 +2a655a0f-a248-4651-87fe-7378b7c271d0 2023-09-19 2023-09-19 08:11:02.170204+00 {} f "set interfaces ge-0/0/0 unit 0 family inet address 10.10.0.21/30\\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.25/30\\nset interfaces ge-0/0/2 unit 0 family inet\\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.5/30\\nset interfaces ge-0/0/4 unit 0 family inet\\nset interfaces ge-0/0/5 unit 0 family inet\\nset interfaces ge-0/0/6 unit 0 family inet\\nset interfaces ge-0/0/7 unit 0 family inet\\nset interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24\\nset interfaces lo0 unit 0 family inet address 10.0.20.1/32" "set interfaces ge-0/0/0 unit 0 family inet address 10.10.0.21/30\\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.25/30\\nset interfaces ge-0/0/2 unit 0 family inet\\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.5/30\\nset interfaces ge-0/0/4 unit 0 family inet\\nset interfaces ge-0/0/5 unit 0 family inet\\nset interfaces ge-0/0/6 unit 0 family inet\\nset interfaces ge-0/0/7 unit 0 family inet\\nset interfaces ge-0/0/8 unit 0 family inet\\nset interfaces ge-0/0/9 unit 0 family inet\\nset interfaces ge-0/0/10 unit 0 family inet\\nset interfaces ge-0/0/11 unit 0 family inet\\nset interfaces ge-0/0/12 unit 0 family inet\\nset interfaces ge-0/0/13 unit 0 family inet\\nset interfaces ge-0/0/14 unit 0 family inet\\nset interfaces ge-0/0/15 unit 0 family inet\\nset interfaces ge-0/0/16 unit 0 family inet\\nset interfaces ge-0/0/17 unit 0 family inet\\nset interfaces ge-0/0/18 unit 0 family inet\\nset interfaces ge-0/0/19 unit 0 family inet\\nset interfaces fxp0 unit 0 family inet\\nset interfaces lo0 unit 0 family inet address 10.0.20.1/32" "set interfaces ge-0/0/8 unit 0 family inet\\nset interfaces ge-0/0/9 unit 0 family inet\\nset interfaces ge-0/0/10 unit 0 family inet\\nset interfaces ge-0/0/11 unit 0 family inet\\nset interfaces ge-0/0/12 unit 0 family inet\\nset interfaces ge-0/0/13 unit 0 family inet\\nset interfaces ge-0/0/14 unit 0 family inet\\nset interfaces ge-0/0/15 unit 0 family inet\\nset interfaces ge-0/0/16 unit 0 family inet\\nset interfaces ge-0/0/17 unit 0 family inet\\nset interfaces ge-0/0/18 unit 0 family inet\\nset interfaces ge-0/0/19 unit 0 family inet\\nset interfaces fxp0 unit 0 family inet" "set interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24" f 0 919660c6-0654-4904-9cf5-61a03cc069c3 b0766b19-4aee-42f8-aea4-c734f0fa7b4b +166a70f1-679d-493d-8feb-8d2e7253d4a0 2023-09-19 2023-09-19 08:11:02.179674+00 {} t "set system syslog user * any emergency\\ndeactivate system syslog user *\\nset system syslog file messages any notice\\nset system syslog file messages authorization info\\nset system syslog file interactive-commands interactive-commands any" "set system syslog user * any emergency\\ndeactivate system syslog user *\\nset system syslog file messages any notice\\nset system syslog file messages authorization info\\nset system syslog file interactive-commands interactive-commands any" "" "" t 1 919660c6-0654-4904-9cf5-61a03cc069c3 6329c371-de30-4d63-9b01-8a79acb48cda +3e7534cf-ae04-4feb-bd5b-34106dc985d0 2023-09-19 2023-09-19 08:11:02.189055+00 {} t "set system services ssh\\nset system services netconf ssh\\nset system services netconf rfc-compliant\\nset protocols lldp transmit-delay 5\\nset protocols lldp port-id-subtype interface-name\\nset protocols lldp interface all\\nset protocols lldp interface fxp0" "set system services ssh\\nset system services netconf ssh\\nset system services netconf rfc-compliant\\nset protocols lldp transmit-delay 5\\nset protocols lldp port-id-subtype interface-name\\nset protocols lldp interface all\\nset protocols lldp interface fxp0" "" "" t 1 919660c6-0654-4904-9cf5-61a03cc069c3 5f69e1e2-d044-4acf-ac53-4a428cc0d132 +518e34f2-4ad2-4d1e-ac4a-e56d5fcb68c6 2023-09-19 2023-09-19 08:11:02.203035+00 {} t "set system login class super-user-local idle-timeout 3600\\nset system login class super-user-local permissions all\\nset system login user ntc uid 2000\\nset system login user ntc class super-user-local\\nset system login user ntc authentication encrypted-password \\"$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph.\\"\\nset system root-authentication encrypted-password \\"$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1\\"" "set system login class super-user-local idle-timeout 3600\\nset system login class super-user-local permissions all\\nset system login user ntc uid 2000\\nset system login user ntc class super-user-local\\nset system login user ntc authentication encrypted-password \\"$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph.\\"\\nset system root-authentication encrypted-password \\"$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1\\"" "" "" t 1 919660c6-0654-4904-9cf5-61a03cc069c3 0d20167f-cc57-4d4e-86f5-5ae657d2274a +52af7e80-b121-48e1-a792-b884ad9ebeda 2023-09-19 2023-09-19 08:11:02.217694+00 {} t "set system login class super-user-local idle-timeout 3600\\nset system login class super-user-local permissions all\\nset system login user ntc uid 2000\\nset system login user ntc class super-user-local\\nset system login user ntc authentication encrypted-password \\"$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph.\\"\\nset system root-authentication encrypted-password \\"$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1\\"" "set system login class super-user-local idle-timeout 3600\\nset system login class super-user-local permissions all\\nset system login user ntc uid 2000\\nset system login user ntc class super-user-local\\nset system login user ntc authentication encrypted-password \\"$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph.\\"\\nset system root-authentication encrypted-password \\"$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1\\"" "" "" t 1 c8fef37f-699a-4f5a-b228-495cb5702a43 0d20167f-cc57-4d4e-86f5-5ae657d2274a +f7a6f236-db39-44c1-bf9e-fc2c627898a9 2023-09-19 2023-09-19 08:11:02.236732+00 {} t "set system syslog user * any emergency\\ndeactivate system syslog user *\\nset system syslog file messages any notice\\nset system syslog file messages authorization info\\nset system syslog file interactive-commands interactive-commands any" "set system syslog user * any emergency\\ndeactivate system syslog user *\\nset system syslog file messages any notice\\nset system syslog file messages authorization info\\nset system syslog file interactive-commands interactive-commands any" "" "" t 1 c8fef37f-699a-4f5a-b228-495cb5702a43 6329c371-de30-4d63-9b01-8a79acb48cda +681e379d-81ea-4341-83eb-f436cd24a47d 2023-09-19 2023-09-19 08:11:02.248277+00 {} f "set interfaces ge-0/0/0 unit 0 family inet\\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.26/30\\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.29/30\\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.9/30\\nset interfaces ge-0/0/4 unit 0 family inet\\nset interfaces ge-0/0/5 unit 0 family inet\\nset interfaces ge-0/0/6 unit 0 family inet\\nset interfaces ge-0/0/7 unit 0 family inet\\nset interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24\\nset interfaces lo0 unit 0 family inet address 10.0.20.2/32" "set interfaces ge-0/0/0 unit 0 family inet\\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.26/30\\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.29/30\\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.9/30\\nset interfaces ge-0/0/4 unit 0 family inet\\nset interfaces ge-0/0/5 unit 0 family inet\\nset interfaces ge-0/0/6 unit 0 family inet\\nset interfaces ge-0/0/7 unit 0 family inet\\nset interfaces ge-0/0/8 unit 0 family inet\\nset interfaces ge-0/0/9 unit 0 family inet\\nset interfaces ge-0/0/10 unit 0 family inet\\nset interfaces ge-0/0/11 unit 0 family inet\\nset interfaces ge-0/0/12 unit 0 family inet\\nset interfaces ge-0/0/13 unit 0 family inet\\nset interfaces ge-0/0/14 unit 0 family inet\\nset interfaces ge-0/0/15 unit 0 family inet\\nset interfaces ge-0/0/16 unit 0 family inet\\nset interfaces ge-0/0/17 unit 0 family inet\\nset interfaces ge-0/0/18 unit 0 family inet\\nset interfaces ge-0/0/19 unit 0 family inet\\nset interfaces fxp0 unit 0 family inet\\nset interfaces lo0 unit 0 family inet address 10.0.20.2/32" "set interfaces ge-0/0/8 unit 0 family inet\\nset interfaces ge-0/0/9 unit 0 family inet\\nset interfaces ge-0/0/10 unit 0 family inet\\nset interfaces ge-0/0/11 unit 0 family inet\\nset interfaces ge-0/0/12 unit 0 family inet\\nset interfaces ge-0/0/13 unit 0 family inet\\nset interfaces ge-0/0/14 unit 0 family inet\\nset interfaces ge-0/0/15 unit 0 family inet\\nset interfaces ge-0/0/16 unit 0 family inet\\nset interfaces ge-0/0/17 unit 0 family inet\\nset interfaces ge-0/0/18 unit 0 family inet\\nset interfaces ge-0/0/19 unit 0 family inet\\nset interfaces fxp0 unit 0 family inet" "set interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24" f 0 c8fef37f-699a-4f5a-b228-495cb5702a43 b0766b19-4aee-42f8-aea4-c734f0fa7b4b +48c011ea-fe9f-4a63-99fc-af88505c94bb 2023-09-19 2023-09-19 08:11:02.261962+00 {} t "set protocols bgp local-as 65252\\nset protocols bgp group p2p export send-direct\\nset protocols bgp group p2p neighbor 10.10.0.30 peer-as 65252\\nset protocols bgp group p2p neighbor 10.10.0.25 peer-as 65252\\nset protocols bgp group p2p neighbor 10.11.11.10 peer-as 65253" "set protocols bgp local-as 65252\\nset protocols bgp group p2p export send-direct\\nset protocols bgp group p2p neighbor 10.10.0.30 peer-as 65252\\nset protocols bgp group p2p neighbor 10.10.0.25 peer-as 65252\\nset protocols bgp group p2p neighbor 10.11.11.10 peer-as 65253" "" "" t 1 c8fef37f-699a-4f5a-b228-495cb5702a43 6742ec49-eb70-4756-a93d-d162b2404342 +2293dc71-a9a5-4212-854f-4840a34a119a 2023-09-19 2023-09-19 08:11:02.271825+00 {} t "set system host-name nyc-rtr-02" "set system host-name nyc-rtr-02" "" "" t 1 c8fef37f-699a-4f5a-b228-495cb5702a43 5f43b437-779d-4dfb-a0c2-1c5795e9c6ff +6dcad3b8-bf1a-4814-b8b3-4d78efea33e4 2023-09-19 2023-09-19 08:11:02.282098+00 {} t "set system services ssh\\nset system services netconf ssh\\nset system services netconf rfc-compliant\\nset protocols lldp transmit-delay 5\\nset protocols lldp port-id-subtype interface-name\\nset protocols lldp interface all\\nset protocols lldp interface fxp0" "set system services ssh\\nset system services netconf ssh\\nset system services netconf rfc-compliant\\nset protocols lldp transmit-delay 5\\nset protocols lldp port-id-subtype interface-name\\nset protocols lldp interface all\\nset protocols lldp interface fxp0" "" "" t 1 c8fef37f-699a-4f5a-b228-495cb5702a43 5f69e1e2-d044-4acf-ac53-4a428cc0d132 +c58320eb-f255-47e5-9b59-7849cb758e26 2023-09-19 2023-09-19 08:11:02.292751+00 {} f "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server host 10.1.1.1 version 2c networktocode" "snmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "" "" f 0 be8b5ac0-0df7-4eff-90f1-4c86f16c362e eb3e09ef-11d1-4a91-9188-a7d804737aad +169ac4db-7259-4c11-8527-6d888a272308 2023-09-19 2023-09-19 08:11:02.306047+00 {} f "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$pE5h.iNjTivxKHaV$TW7CKUWP5YLQANyqliRuumMVLi6lEP7a3kKGv8MWduRTRNoTWSe4jiHRvHxko0UbfiixGCkA.zFaKNfKBdeK./\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "username ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/" "username ntc privilege 15 secret sha512 $6$pE5h.iNjTivxKHaV$TW7CKUWP5YLQANyqliRuumMVLi6lEP7a3kKGv8MWduRTRNoTWSe4jiHRvHxko0UbfiixGCkA.zFaKNfKBdeK./" f 0 be8b5ac0-0df7-4eff-90f1-4c86f16c362e 6f3921ed-f231-4c69-99b6-0982b82e46ef +55f4f1f9-9f8c-428c-a6a9-a5958c52d64f 2023-09-19 2023-09-19 08:11:02.320284+00 {} t "" "" "" "" t 1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e 8591f36b-7f22-4336-9f27-7d7d72fb9563 +a8c4a74b-536c-4168-ac4b-1f63a6245d82 2023-09-19 2023-09-19 08:11:02.348194+00 {} f "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging facility local6\\nlogging source-interface Management1\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging facility local6\\nlogging source-interface Management1" "" f 0 be8b5ac0-0df7-4eff-90f1-4c86f16c362e 7f351e2b-b5b6-4332-94e8-292878630ab4 +370a7e8e-ee4a-4927-845a-910274f3d91a 2023-09-19 2023-09-19 08:11:02.367681+00 {} f "interface Ethernet1\\n no switchport\\n ip address 10.11.11.6/30\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.13/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.17/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.4/32\\ninterface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" "interface Ethernet1\\n no switchport\\n ip address 10.11.11.6/30\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.13/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.17/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.4/32\\ninterface Management1\\n no ip address" "interface Management1\\n no ip address" "interface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" f 0 be8b5ac0-0df7-4eff-90f1-4c86f16c362e e3f6e4ea-9b9a-42f3-9bbf-167df5196126 +3c820839-c104-40c3-b0d3-4bb1a4f4947e 2023-09-19 2023-09-19 08:11:02.383924+00 {} t "hostname nyc-spine-01" "hostname nyc-spine-01" "" "" t 1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e 467ca620-5161-4ca3-bdd3-bea713604ff4 +bad35a77-eb39-4296-b761-3972ef6d1e4d 2023-09-19 2023-09-19 08:11:02.398123+00 {} t "ip domain-name infra.ntc.com" "ip domain-name infra.ntc.com" "" "" t 1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e cd4a5403-702e-42d6-86a1-939f8c9cc34f +e5be1d4f-9db7-407a-893d-2273f5fcd2cf 2023-09-19 2023-09-19 08:11:02.418526+00 {} t "" "" "" "" t 1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e bbbf8a98-8581-488a-958c-7bc256a7a300 +1d93ab05-ab8a-4a1a-a37f-36155df240bc 2023-09-19 2023-09-19 08:11:02.42907+00 {} t "" "" "" "" t 1 be8b5ac0-0df7-4eff-90f1-4c86f16c362e a29cb11e-25dd-4578-96b6-efb938281b28 +9dad56cd-6152-4389-bda1-de64e7983ebc 2023-09-19 2023-09-19 08:11:02.445908+00 {} t "" "" "" "" t 1 182b57af-ef9e-428d-916d-7f18e14357d1 bbbf8a98-8581-488a-958c-7bc256a7a300 +0aa94a24-f691-4e89-b34f-19d068565f38 2023-09-19 2023-09-19 08:11:02.459607+00 {} t "" "" "" "" t 1 182b57af-ef9e-428d-916d-7f18e14357d1 a29cb11e-25dd-4578-96b6-efb938281b28 +cd89bf7f-8505-4c1c-8154-e9c248043cb1 2023-09-19 2023-09-19 08:11:02.472262+00 {} t "ip domain-name infra.ntc.com" "ip domain-name infra.ntc.com" "" "" t 1 182b57af-ef9e-428d-916d-7f18e14357d1 cd4a5403-702e-42d6-86a1-939f8c9cc34f +412dd060-db0c-4000-b619-387623d6baaa 2023-09-19 2023-09-19 08:11:02.485546+00 {} t "hostname nyc-spine-02" "hostname nyc-spine-02" "" "" t 1 182b57af-ef9e-428d-916d-7f18e14357d1 467ca620-5161-4ca3-bdd3-bea713604ff4 +6ce5a70d-b827-4347-98b7-edd4d51f276e 2023-09-19 2023-09-19 08:11:02.498293+00 {} f "interface Ethernet1\\n no switchport\\n ip address 10.11.11.10/30\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.21/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.25/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.5/32\\ninterface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" "interface Ethernet1\\n no switchport\\n ip address 10.11.11.10/30\\ninterface Ethernet2\\n no switchport\\n ip address 10.11.11.21/30\\ninterface Ethernet3\\n no switchport\\n ip address 10.11.11.25/30\\ninterface Ethernet4\\ninterface Ethernet5\\ninterface Ethernet6\\ninterface Ethernet7\\ninterface Ethernet8\\ninterface Ethernet9\\ninterface Ethernet10\\ninterface Ethernet11\\ninterface Ethernet12\\ninterface Ethernet13\\ninterface Ethernet14\\ninterface Ethernet15\\ninterface Ethernet16\\ninterface Ethernet17\\ninterface Ethernet18\\ninterface Ethernet19\\ninterface Loopback0\\n ip address 10.0.20.5/32\\ninterface Management1\\n no ip address" "interface Management1\\n no ip address" "interface Management1\\n description MANAGEMENT_DO_NOT_CHANGE\\n ip address 10.0.0.15/24" f 0 182b57af-ef9e-428d-916d-7f18e14357d1 e3f6e4ea-9b9a-42f3-9bbf-167df5196126 +ce2e9e0f-aaa1-4850-8bcc-c2ce3bf7e982 2023-09-19 2023-09-19 08:11:02.508699+00 {} f "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging host 10.125.1.171 7002\\nlogging format hostname fqdn\\nlogging facility local6\\nlogging source-interface Management1\\nlogging level AAA informational\\nlogging level ACCOUNTING informational\\nlogging level ACL informational\\nlogging level AGENT informational\\nlogging level ALE informational\\nlogging level ARP informational\\nlogging level BFD informational\\nlogging level BGP informational\\nlogging level BMP informational\\nlogging level CAPACITY informational\\nlogging level CAPI informational\\nlogging level CLEAR informational\\nlogging level CVX informational\\nlogging level DATAPLANE informational\\nlogging level DHCP informational\\nlogging level DOT1X informational\\nlogging level DSCP informational\\nlogging level ENVMON informational\\nlogging level ETH informational\\nlogging level EVENTMON informational\\nlogging level EXTENSION informational\\nlogging level FHRP informational\\nlogging level FLOW informational\\nlogging level FORWARDING informational\\nlogging level FRU informational\\nlogging level FWK informational\\nlogging level GMP informational\\nlogging level HARDWARE informational\\nlogging level HEALTH informational\\nlogging level HTTPSERVICE informational\\nlogging level IGMP informational\\nlogging level IGMPSNOOPING informational\\nlogging level INT informational\\nlogging level INTF informational\\nlogging level IP6ROUTING informational\\nlogging level IPRIB informational\\nlogging level IRA informational\\nlogging level ISIS informational\\nlogging level KERNELFIB informational\\nlogging level LACP informational\\nlogging level LAG informational\\nlogging level LAUNCHER informational\\nlogging level LDP informational\\nlogging level LICENSE informational\\nlogging level LINEPROTO informational\\nlogging level LLDP informational\\nlogging level LOGMGR informational\\nlogging level LOOPBACK informational\\nlogging level LOOPPROTECT informational\\nlogging level MAPREDUCEMONITOR informational\\nlogging level MIRRORING informational\\nlogging level MKA informational\\nlogging level MLAG informational\\nlogging level MMODE informational\\nlogging level MROUTE informational\\nlogging level MRP informational\\nlogging level MSDP informational\\nlogging level MSRP informational\\nlogging level MSSPOLICYMONITOR informational\\nlogging level MVRP informational\\nlogging level NAT informational\\nlogging level OPENCONFIG informational\\nlogging level OPENFLOW informational\\nlogging level OSPF informational\\nlogging level OSPF3 informational\\nlogging level PACKAGE informational\\nlogging level PFC informational\\nlogging level PIMBSR informational\\nlogging level PORTSECURITY informational\\nlogging level PTP informational\\nlogging level PWRMGMT informational\\nlogging level QOS informational\\nlogging level QUEUEMONITOR informational\\nlogging level REDUNDANCY informational\\nlogging level RIB informational\\nlogging level ROUTING informational\\nlogging level SECURITY informational\\nlogging level SERVERMONITOR informational\\nlogging level SPANTREE informational\\nlogging level SSO informational\\nlogging level STAGEMGR informational\\nlogging level SYS informational\\nlogging level SYSDB informational\\nlogging level TAPAGG informational\\nlogging level TCP informational\\nlogging level TRANSCEIVER informational\\nlogging level TUNNEL informational\\nlogging level TUNNELINTF informational\\nlogging level VMTRACERSESS informational\\nlogging level VMWAREVI informational\\nlogging level VMWAREVS informational\\nlogging level VRF informational\\nlogging level VRRP informational\\nlogging level VXLAN informational\\nlogging level XMPP informational\\nlogging level ZTP informational" "logging facility local6\\nlogging source-interface Management1" "" f 0 182b57af-ef9e-428d-916d-7f18e14357d1 7f351e2b-b5b6-4332-94e8-292878630ab4 +35365d30-5854-4bf0-ab59-2f25e51517d9 2023-09-19 2023-09-19 08:11:02.527748+00 {} f "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$fP4nSv5mDAZuSc8m$IfxuiIwiJSLAkfR5NAKomL1DcPhie5kMwGoS7VvY/ILSG6b0LUQI2RqM1x5mXhBj14U1DqXppZXV2pV5JUG1J/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "aaa authorization exec default local\\nno aaa root\\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\\nmanagement api http-commands\\n protocol http\\n protocol unix-socket\\n no shutdown\\nmanagement api gnmi\\n transport grpc default\\n port 830" "username ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/" "username ntc privilege 15 secret sha512 $6$fP4nSv5mDAZuSc8m$IfxuiIwiJSLAkfR5NAKomL1DcPhie5kMwGoS7VvY/ILSG6b0LUQI2RqM1x5mXhBj14U1DqXppZXV2pV5JUG1J/" f 0 182b57af-ef9e-428d-916d-7f18e14357d1 6f3921ed-f231-4c69-99b6-0982b82e46ef +14d9504b-eb54-4e07-aaa1-e6c9503e5860 2023-09-19 2023-09-19 08:11:02.537062+00 {} f "snmp-server contact John Smith\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server host 10.1.1.1 version 2c networktocode" "snmp-server community networktocode ro\\nsnmp-server community secure rw\\nsnmp-server location Network to Code - NYC | NY\\nsnmp-server contact John Smith\\nsnmp-server host 10.1.1.1 version 2c networktocode" "" "" f 0 182b57af-ef9e-428d-916d-7f18e14357d1 eb3e09ef-11d1-4a91-9188-a7d804737aad +c53ad32c-2268-4c5c-88dc-cf3ba1d73993 2023-09-19 2023-09-19 08:11:02.546233+00 {} t "" "" "" "" t 1 182b57af-ef9e-428d-916d-7f18e14357d1 8591f36b-7f22-4336-9f27-7d7d72fb9563 +\. + + +-- +-- Data for Name: nautobot_golden_config_configremove; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_configremove (id, created, last_updated, _custom_field_data, name, description, regex, platform_id) FROM stdin; +b32e94a6-5de4-4832-8d6a-1f37a0f2f598 2023-09-19 2023-09-19 08:11:01.49739+00 {} ios build config Building\\s+configuration.* 747f56fb-3012-43e4-923c-aed6195b585c +a736f006-f112-4b48-845b-e93e1db7e14c 2023-09-19 2023-09-19 08:11:01.501192+00 {} ios current ^Current\\s+configuration.*\n 747f56fb-3012-43e4-923c-aed6195b585c +7bb130c9-bb81-4e33-bf01-9bac17d32466 2023-09-19 2023-09-19 08:11:01.504077+00 {} ios_last ^!\\s+Last\\s+configuration.* 747f56fb-3012-43e4-923c-aed6195b585c +\. + + +-- +-- Data for Name: nautobot_golden_config_configreplace; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_configreplace (id, created, last_updated, _custom_field_data, name, description, regex, replace, platform_id) FROM stdin; +943e31ef-f26f-43a0-ba12-7225c036134c 2023-09-19 2023-09-19 08:11:01.508626+00 {} ios username (username\\s+\\S+\\spassword\\s+5\\s+)\\S+(\\s+role\\s+\\S+)  747f56fb-3012-43e4-923c-aed6195b585c +6b85c95f-58e4-40c2-b84d-6afe1b24d11b 2023-09-19 2023-09-19 08:11:01.511882+00 {} ios no priv (username\\s+\\S+\\s+privilege\\s+15\\s+password\\s+0\\s+)\\S+  747f56fb-3012-43e4-923c-aed6195b585c +\. + + +-- +-- Data for Name: nautobot_golden_config_goldenconfig; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_goldenconfig (id, created, last_updated, _custom_field_data, backup_config, backup_last_attempt_date, backup_last_success_date, intended_config, intended_last_attempt_date, intended_last_success_date, compliance_config, compliance_last_attempt_date, compliance_last_success_date, device_id) FROM stdin; +5af25c7c-c939-4824-83d9-e88b6c4631a4 2023-09-19 2023-09-19 08:11:02.554324+00 {} \n\n!\n\n!\nversion 17.1\nservice timestamps debug datetime msec\nservice timestamps log datetime msec\n! Call-home is enabled by Smart-Licensing.\nservice call-home\nplatform qfp utilization monitor load 80\nplatform punt-keepalive disable-kernel-core\nplatform console serial\n!\nhostname jcy-bb-01\n!\nboot-start-marker\nboot-end-marker\n!\n!\nvrf definition MANAGEMENT\n !\n address-family ipv4\n exit-address-family\n !\n address-family ipv6\n exit-address-family\n!\nlogging userinfo\n!\nno aaa new-model\ncall-home\n ! If contact email address in call-home is configured as sch-smart-licensing@cisco.com\n ! the email address configured in Cisco Smart License Portal will be used as contact email address to send SCH notifications.\n contact-email-addr sch-smart-licensing@cisco.com\n profile "CiscoTAC-1"\n active\n destination transport-method http\n!\n!\n!\n!\n!\n!\n!\nno ip domain lookup\nip domain name infra.ntc.com\n!\n!\n!\nlogin on-success log\n!\n!\n!\n!\n!\n!\n!\nsubscriber templating\n! \n! \n! \n! \n!\n!\nmultilink bundle-name authenticated\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\ncrypto pki trustpoint TP-self-signed-1088426642\n enrollment selfsigned\n subject-name cn=IOS-Self-Signed-Certificate-1088426642\n revocation-check none\n rsakeypair TP-self-signed-1088426642\n!\ncrypto pki trustpoint SLA-TrustPoint\n enrollment pkcs12\n revocation-check crl\n!\n!\ncrypto pki certificate chain TP-self-signed-1088426642\n certificate self-signed 01\n 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 \n 31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 \n 69666963 6174652D 31303838 34323636 3432301E 170D3231 30333039 30333233 \n 30325A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 30383834 \n 32363634 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 \n 0A028201 0100E61B 372A60D2 0A1D58E3 0EC5CEBD 1EA5BF18 3F6BF297 2162DB79 \n ECBF511A 8B14DF23 35EEF4A8 E219B625 E5ED6575 EAD5914A 905E07A2 C2298199 \n D143673A 13C6212A 5A2C034F C250F52F F1187F51 0F003B7F 23642CAE 00A1413C \n 270D4E53 55E7EDB4 1A7B69B6 4EB4B5E7 12ACA95C 07F22B02 80C65739 25C09B82 \n 788C4DC2 9729D9DB F0471C13 E2082BDA 3C525850 56684AEF FCE2C18B 1A042FC1 \n 20D1403B 837AA3EB D91F6055 0F5FFFE3 E7A9D3C8 09C454C0 CC2E793E B28B60CB \n 3428B6FD 28280899 90E4D168 57AA9005 2FC602B9 D40BCD5E 6AD97F2D 986B1A90 \n F76DE19B 870223D0 86093C37 62D81873 968EC939 53BA36D6 61650732 0124089F \n 7B9445D8 8EF90203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n 301F0603 551D2304 18301680 1419973D 5607ACE0 D2127B39 A1F6AC00 2C7216A8 \n F4301D06 03551D0E 04160414 19973D56 07ACE0D2 127B39A1 F6AC002C 7216A8F4 \n 300D0609 2A864886 F70D0101 05050003 82010100 0D01C4E1 544034EE F516AB65 \n 9DB7D85D EC3CC16F E1BCD286 3C7F351F D86F3B9B D17EC2BA 75B597E9 F2E3C0A7 \n D4FFF39F F5152741 F0551772 135243FA 458E3F8B 77832597 1E18656E 3AA732BD \n 40F899EA 16969EB1 15D8656E 12E57B7A BD7221E6 BAF7D210 2B2E601C 7D047BBA \n B5F736A4 4969D25B 8C3B2D80 1DB93EC2 80C021E7 A8045D05 3D775D18 ECC4A82A \n 158B85E7 89C03B6D 7D46BF23 0DC1684C 98F1E82D 898A56C6 A2442C46 15EC810B \n 80148784 767C8EE1 5F37AA98 57306ABB 0FF717AB E42D2949 346D867D A619CAC1 \n 24AD8BB1 7696E51B 2E1BA9E8 5883E396 FE8C8DB3 96636DF0 3E963FFC 749EF8D4 \n 3C1D27CD 60B9C28E 5A32B0B7 76E74DB4 48D752EB\n \tquit\ncrypto pki certificate chain SLA-TrustPoint\n certificate ca 01\n 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 \n 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 \n 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 \n 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 \n 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 \n 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 \n 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D \n CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 \n 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE \n 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC \n 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 \n 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 \n C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 \n C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 \n DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 \n 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 \n 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 \n 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 \n 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B \n D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 \n 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C \n 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B \n 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 \n 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB \n 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 \n D697DF7F 28\n \tquit\n!\nlicense udi pid CSR1000V sn 9SAGBHTUEE9\ndiagnostic bootup level minimal\narchive\n path bootflash:archive\nmemory free low-watermark processor 72107\n!\n!\nspanning-tree extend system-id\n!\n\n!\nredundancy\n!\n!\n!\n!\n!\nlldp run\ncdp run\n!\n! \n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n! \n! \n!\n!\ninterface Loopback0\n ip address 10.0.10.3 255.255.255.255\n!\ninterface GigabitEthernet1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15 255.255.255.0\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet2\n ip address 10.10.0.6 255.255.255.252\n ip access-group BLOCK_TRANSIT_LINKS in\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet3\n ip address 10.10.0.14 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet4\n description backbone-to-vmx3-ge0/0/3\n ip address 10.10.0.17 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet5\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet6\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet7\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet8\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet9\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\nrouter bgp 65251\n bgp router-id 10.0.10.3\n bgp log-neighbor-changes\n redistribute connected\n neighbor 10.10.0.5 remote-as 65251\n neighbor 10.10.0.5 weight 5000\n neighbor 10.10.0.13 remote-as 65251\n neighbor 10.10.0.13 weight 4000\n neighbor 10.10.0.18 remote-as 65252\n neighbor 10.10.0.18 weight 3000\n!\n!\nvirtual-service csr_mgmt\n!\nip forward-protocol nd\nip http server\nip http authentication local\nip http secure-server\n!\nip route 0.0.0.0 0.0.0.0 10.0.0.2\nip scp server enable\n!\n!\nlogging origin-id hostname\nlogging host 10.125.1.171 transport udp port 7004\n!\n!\nsnmp-server community networktocode RO\nsnmp-server community secure RW\nsnmp-server community ntc-public RO\nsnmp-server community ntc-private RW\nsnmp-server trap retry 5\nsnmp-server trap timeout 60\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode \n!\n!\n!\ncontrol-plane\n!\n!\n!\n!\n!\nalias exec ntcclear clear platform software vnic-if nv\n!\nline con 0\n stopbits 1\nline vty 0 4\n privilege level 15\n login local\n transport preferred ssh\n transport input all\nline vty 5 15\n privilege level 15\n login local\n transport preferred ssh\n transport input all\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\n!\n!\n!\n!\nnetconf-yang\nrestconf\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 !\n!\nversion 17.1\nservice timestamps debug datetime msec\nservice timestamps log datetime msec\n! Call-home is enabled by Smart-Licensing.\nservice call-home\nplatform qfp utilization monitor load 80\nplatform punt-keepalive disable-kernel-core\nplatform console serial\n!\nhostname jcy-bb-01\n!\nboot-start-marker\nboot-end-marker\n!\n!\nvrf definition MANAGEMENT\n !\n address-family ipv4\n exit-address-family\n !\n address-family ipv6\n exit-address-family\n!\nlogging userinfo\n!\nno aaa new-model\ncall-home\n ! If contact email address in call-home is configured as sch-smart-licensing@cisco.com\n ! the email address configured in Cisco Smart License Portal will be used as contact email address to send SCH notifications.\n contact-email-addr sch-smart-licensing@cisco.com\n profile "CiscoTAC-1"\n active\n destination transport-method http\n!\n!\n!\n!\n!\n!\n!\nno ip domain lookup\nip domain name ntc.com\n!\n!\n!\nlogin on-success log\n!\n!\n!\n!\n!\n!\n!\nsubscriber templating\n! \n! \n! \n! \n!\n!\nmultilink bundle-name authenticated\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\ncrypto pki trustpoint TP-self-signed-1088426642\n enrollment selfsigned\n subject-name cn=IOS-Self-Signed-Certificate-1088426642\n revocation-check none\n rsakeypair TP-self-signed-1088426642\n!\ncrypto pki trustpoint SLA-TrustPoint\n enrollment pkcs12\n revocation-check crl\n!\ncrypto pki trustpoint trustpoint1\n enrollment retry period 60\n enrollment url https://some-bogus-enrollment-url/mscep.dll\n serial-number\n revocation-check crl\n!\ncrypto pki trustpoint trustpoint2\n enrollment retry period 60\n enrollment url https://some-bogus-enrollment-url/mscep.dll\n serial-number\n revocation-check crl\n!\n!\ncrypto pki certificate chain TP-self-signed-1088426642\n certificate self-signed 01\n 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 \n 31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 \n 69666963 6174652D 31303838 34323636 3432301E 170D3230 31313139 31353236 \n 34305A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 30383834 \n 32363634 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 \n 0A028201 0100C273 6607481E 040C7B18 3D6C5EEF 793022FA BBC58A8B 5966BCE5 \n E68303CC 7C8E95FB F47876B0 D2CA29EF FDB0EC7A 58D3336B 8D9104E5 2642B39B \n 77DB1DB3 9E73C68E 0149D2F0 3130355E BD96ADF5 C515AB65 0A47C0E5 4BBBDF7B \n 420D898D 49D17DBD 3497E747 EF73FE76 BB606B5A 5ECBF4C2 5FF6F810 F39A959E \n 1CC1B3D8 2CCE2466 1CAEFFE1 A3E6C706 1524626C 0019A5ED 8A2E70D1 FC72BE26 \n 4E10B679 69B76090 D4971A68 A89DEDAB 764539A6 5E9E8277 FD428995 B5E950C3 \n C60A2607 C1601C05 8E26F43D 1D0AC19A BF32F194 27F5C840 A698F091 63FD0B21 \n 614C962B B618EAA7 2DEABFFF 6F7F5E6A 163F9B4E 83349C89 CFE17A85 06C0DBE8 \n C9C54CE5 F3DB0203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n 301F0603 551D2304 18301680 1424A8BE F5B8B1A9 66F86AD9 8B138523 5E27184A \n 39301D06 03551D0E 04160414 24A8BEF5 B8B1A966 F86AD98B 1385235E 27184A39 \n 300D0609 2A864886 F70D0101 05050003 82010100 A9CF37E2 1E46AB5F B90BA565 \n CC5FC503 8BA0D521 46000EF9 A1107006 9F7EC116 A261BCBB 20C1B594 0E061FC7 \n 3A199B62 4F645F4B 971411BB 367836BB A249CA06 CE38375C 68B24063 0BBDDD85 \n 669361E9 E9AC2140 E4E6AE32 A0B669C4 15EFFCDD F95DE72A 5147D13F D570B44C \n D0FD7709 2D1FA332 686B8765 6A0FD0FB E4381017 EC02233C 563231B6 5373D6B0 \n 647824AA 3869AE1E 72737580 0C881B5C B095D93F ACC6EC38 C7E9A98C 327EC8BF \n C1FDB65B 77F26CE9 BE6B76E4 3B16D8B3 AB33E069 EDC18773 DDE035C4 F97D2E0B \n ECB08616 F6E8804D BA0C30EE 3F75EFC4 0A64A72B C040A6D7 E5297E97 0858EAA7 \n 0351FA75 F8E13CB7 A87DF62B DC2A1964 EADA71AF\n \tquit\ncrypto pki certificate chain SLA-TrustPoint\n certificate ca 01\n 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 \n 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 \n 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 \n 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 \n 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 \n 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 \n 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D \n CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 \n 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE \n 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC \n 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 \n 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 \n C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 \n C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 \n DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 \n 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 \n 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 \n 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 \n 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B \n D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 \n 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C \n 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B \n 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 \n 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB \n 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 \n D697DF7F 28\n \tquit\ncrypto pki certificate chain trustpoint1\ncrypto pki certificate chain trustpoint2\n!\nlicense udi pid CSR1000V sn 9SAGBHTUEE9\ndiagnostic bootup level minimal\narchive\n path bootflash:archive\nmemory free low-watermark processor 72107\nfile prompt quiet\n!\n!\nspanning-tree extend system-id\n!\nusername ntc privilege 15 password 0 ntc123\n!\nredundancy\n!\n!\n!\n!\n!\nlldp run\ncdp run\n!\n! \n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n! \n! \n!\n!\ninterface Loopback0\n ip address 10.0.10.3 255.255.255.255\ninterface GigabitEthernet1\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet2\n ip address 10.10.0.6 255.255.255.252\n ip access-group BLOCK_TRANSIT_LINKS in\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet3\n ip address 10.10.0.14 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet4\n ip address 10.10.0.17 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet5\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet6\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet7\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet8\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet9\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\nrouter bgp 65251\n bgp router-id 10.0.10.3\n bgp log-neighbor-changes\n redistribute connected\n neighbor 10.10.0.5 remote-as 65251\n neighbor 10.10.0.13 remote-as 65251\n neighbor 10.10.0.18 remote-as 65252\n!\n!\nvirtual-service csr_mgmt\n!\nip forward-protocol nd\nip http server\nip http authentication local\nip http secure-server\n!\nip scp server enable\n!\n!\nlogging origin-id hostname\nlogging host 10.1.1.1 transport udp port 7004\n!\n!\nsnmp-server community ntc-public RO\nsnmp-server community ntc-private RW\nsnmp-server community networktocode RO\nsnmp-server community secure RW\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode \n!\n!\n!\ncontrol-plane\n!\n!\n!\n!\n!\nalias exec ntcclear clear platform software vnic-if nv\n!\nline con 0\n stopbits 1\nline vty 0 4\n privilege level 15\n login local\n transport preferred ssh\n transport input all\nline vty 5 15\n privilege level 15\n login local\n transport preferred ssh\n transport input all\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\n!\n!\n!\n!\nnetconf-yang\nrestconf\nend 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,7 +1,4 @@\n-\n\n-\n\n-!\n\n-\n\n+!\n\n !\n\n version 17.1\n\n service timestamps debug datetime msec\n\n@@ -44,7 +41,7 @@\n !\n\n !\n\n no ip domain lookup\n\n-ip domain name infra.ntc.com\n\n+ip domain name ntc.com\n\n !\n\n !\n\n !\n\n@@ -89,35 +86,47 @@\n enrollment pkcs12\n\n revocation-check crl\n\n !\n\n+crypto pki trustpoint trustpoint1\n\n+ enrollment retry period 60\n\n+ enrollment url https://some-bogus-enrollment-url/mscep.dll\n\n+ serial-number\n\n+ revocation-check crl\n\n+!\n\n+crypto pki trustpoint trustpoint2\n\n+ enrollment retry period 60\n\n+ enrollment url https://some-bogus-enrollment-url/mscep.dll\n\n+ serial-number\n\n+ revocation-check crl\n\n+!\n\n !\n\n crypto pki certificate chain TP-self-signed-1088426642\n\n certificate self-signed 01\n\n 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 \n\n 31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 \n\n- 69666963 6174652D 31303838 34323636 3432301E 170D3231 30333039 30333233 \n\n- 30325A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n\n+ 69666963 6174652D 31303838 34323636 3432301E 170D3230 31313139 31353236 \n\n+ 34305A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n\n 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 30383834 \n\n 32363634 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 \n\n- 0A028201 0100E61B 372A60D2 0A1D58E3 0EC5CEBD 1EA5BF18 3F6BF297 2162DB79 \n\n- ECBF511A 8B14DF23 35EEF4A8 E219B625 E5ED6575 EAD5914A 905E07A2 C2298199 \n\n- D143673A 13C6212A 5A2C034F C250F52F F1187F51 0F003B7F 23642CAE 00A1413C \n\n- 270D4E53 55E7EDB4 1A7B69B6 4EB4B5E7 12ACA95C 07F22B02 80C65739 25C09B82 \n\n- 788C4DC2 9729D9DB F0471C13 E2082BDA 3C525850 56684AEF FCE2C18B 1A042FC1 \n\n- 20D1403B 837AA3EB D91F6055 0F5FFFE3 E7A9D3C8 09C454C0 CC2E793E B28B60CB \n\n- 3428B6FD 28280899 90E4D168 57AA9005 2FC602B9 D40BCD5E 6AD97F2D 986B1A90 \n\n- F76DE19B 870223D0 86093C37 62D81873 968EC939 53BA36D6 61650732 0124089F \n\n- 7B9445D8 8EF90203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n\n- 301F0603 551D2304 18301680 1419973D 5607ACE0 D2127B39 A1F6AC00 2C7216A8 \n\n- F4301D06 03551D0E 04160414 19973D56 07ACE0D2 127B39A1 F6AC002C 7216A8F4 \n\n- 300D0609 2A864886 F70D0101 05050003 82010100 0D01C4E1 544034EE F516AB65 \n\n- 9DB7D85D EC3CC16F E1BCD286 3C7F351F D86F3B9B D17EC2BA 75B597E9 F2E3C0A7 \n\n- D4FFF39F F5152741 F0551772 135243FA 458E3F8B 77832597 1E18656E 3AA732BD \n\n- 40F899EA 16969EB1 15D8656E 12E57B7A BD7221E6 BAF7D210 2B2E601C 7D047BBA \n\n- B5F736A4 4969D25B 8C3B2D80 1DB93EC2 80C021E7 A8045D05 3D775D18 ECC4A82A \n\n- 158B85E7 89C03B6D 7D46BF23 0DC1684C 98F1E82D 898A56C6 A2442C46 15EC810B \n\n- 80148784 767C8EE1 5F37AA98 57306ABB 0FF717AB E42D2949 346D867D A619CAC1 \n\n- 24AD8BB1 7696E51B 2E1BA9E8 5883E396 FE8C8DB3 96636DF0 3E963FFC 749EF8D4 \n\n- 3C1D27CD 60B9C28E 5A32B0B7 76E74DB4 48D752EB\n\n+ 0A028201 0100C273 6607481E 040C7B18 3D6C5EEF 793022FA BBC58A8B 5966BCE5 \n\n+ E68303CC 7C8E95FB F47876B0 D2CA29EF FDB0EC7A 58D3336B 8D9104E5 2642B39B \n\n+ 77DB1DB3 9E73C68E 0149D2F0 3130355E BD96ADF5 C515AB65 0A47C0E5 4BBBDF7B \n\n+ 420D898D 49D17DBD 3497E747 EF73FE76 BB606B5A 5ECBF4C2 5FF6F810 F39A959E \n\n+ 1CC1B3D8 2CCE2466 1CAEFFE1 A3E6C706 1524626C 0019A5ED 8A2E70D1 FC72BE26 \n\n+ 4E10B679 69B76090 D4971A68 A89DEDAB 764539A6 5E9E8277 FD428995 B5E950C3 \n\n+ C60A2607 C1601C05 8E26F43D 1D0AC19A BF32F194 27F5C840 A698F091 63FD0B21 \n\n+ 614C962B B618EAA7 2DEABFFF 6F7F5E6A 163F9B4E 83349C89 CFE17A85 06C0DBE8 \n\n+ C9C54CE5 F3DB0203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n\n+ 301F0603 551D2304 18301680 1424A8BE F5B8B1A9 66F86AD9 8B138523 5E27184A \n\n+ 39301D06 03551D0E 04160414 24A8BEF5 B8B1A966 F86AD98B 1385235E 27184A39 \n\n+ 300D0609 2A864886 F70D0101 05050003 82010100 A9CF37E2 1E46AB5F B90BA565 \n\n+ CC5FC503 8BA0D521 46000EF9 A1107006 9F7EC116 A261BCBB 20C1B594 0E061FC7 \n\n+ 3A199B62 4F645F4B 971411BB 367836BB A249CA06 CE38375C 68B24063 0BBDDD85 \n\n+ 669361E9 E9AC2140 E4E6AE32 A0B669C4 15EFFCDD F95DE72A 5147D13F D570B44C \n\n+ D0FD7709 2D1FA332 686B8765 6A0FD0FB E4381017 EC02233C 563231B6 5373D6B0 \n\n+ 647824AA 3869AE1E 72737580 0C881B5C B095D93F ACC6EC38 C7E9A98C 327EC8BF \n\n+ C1FDB65B 77F26CE9 BE6B76E4 3B16D8B3 AB33E069 EDC18773 DDE035C4 F97D2E0B \n\n+ ECB08616 F6E8804D BA0C30EE 3F75EFC4 0A64A72B C040A6D7 E5297E97 0858EAA7 \n\n+ 0351FA75 F8E13CB7 A87DF62B DC2A1964 EADA71AF\n\n \tquit\n\n crypto pki certificate chain SLA-TrustPoint\n\n certificate ca 01\n\n@@ -148,17 +157,20 @@\n 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 \n\n D697DF7F 28\n\n \tquit\n\n+crypto pki certificate chain trustpoint1\n\n+crypto pki certificate chain trustpoint2\n\n !\n\n license udi pid CSR1000V sn 9SAGBHTUEE9\n\n diagnostic bootup level minimal\n\n archive\n\n path bootflash:archive\n\n memory free low-watermark processor 72107\n\n+file prompt quiet\n\n !\n\n !\n\n spanning-tree extend system-id\n\n !\n\n-\n\n+username ntc privilege 15 password 0 ntc123\n\n !\n\n redundancy\n\n !\n\n@@ -188,10 +200,8 @@\n !\n\n interface Loopback0\n\n ip address 10.0.10.3 255.255.255.255\n\n-!\n\n interface GigabitEthernet1\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n- ip address 10.0.0.15 255.255.255.0\n\n+ no ip address\n\n negotiation auto\n\n no mop enabled\n\n no mop sysid\n\n@@ -210,7 +220,6 @@\n no mop sysid\n\n !\n\n interface GigabitEthernet4\n\n- description backbone-to-vmx3-ge0/0/3\n\n ip address 10.10.0.17 255.255.255.252\n\n negotiation auto\n\n no mop enabled\n\n@@ -224,28 +233,24 @@\n !\n\n interface GigabitEthernet6\n\n no ip address\n\n- shutdown\n\n negotiation auto\n\n no mop enabled\n\n no mop sysid\n\n !\n\n interface GigabitEthernet7\n\n no ip address\n\n- shutdown\n\n negotiation auto\n\n no mop enabled\n\n no mop sysid\n\n !\n\n interface GigabitEthernet8\n\n no ip address\n\n- shutdown\n\n negotiation auto\n\n no mop enabled\n\n no mop sysid\n\n !\n\n interface GigabitEthernet9\n\n no ip address\n\n- shutdown\n\n negotiation auto\n\n no mop enabled\n\n no mop sysid\n\n@@ -255,11 +260,8 @@\n bgp log-neighbor-changes\n\n redistribute connected\n\n neighbor 10.10.0.5 remote-as 65251\n\n- neighbor 10.10.0.5 weight 5000\n\n neighbor 10.10.0.13 remote-as 65251\n\n- neighbor 10.10.0.13 weight 4000\n\n neighbor 10.10.0.18 remote-as 65252\n\n- neighbor 10.10.0.18 weight 3000\n\n !\n\n !\n\n virtual-service csr_mgmt\n\n@@ -269,20 +271,17 @@\n ip http authentication local\n\n ip http secure-server\n\n !\n\n-ip route 0.0.0.0 0.0.0.0 10.0.0.2\n\n ip scp server enable\n\n !\n\n !\n\n logging origin-id hostname\n\n-logging host 10.125.1.171 transport udp port 7004\n\n-!\n\n-!\n\n+logging host 10.1.1.1 transport udp port 7004\n\n+!\n\n+!\n\n+snmp-server community ntc-public RO\n\n+snmp-server community ntc-private RW\n\n snmp-server community networktocode RO\n\n snmp-server community secure RW\n\n-snmp-server community ntc-public RO\n\n-snmp-server community ntc-private RW\n\n-snmp-server trap retry 5\n\n-snmp-server trap timeout 60\n\n snmp-server location Network to Code - NYC | NY\n\n snmp-server contact John Smith\n\n snmp-server host 10.1.1.1 version 2c networktocode \n\n@@ -319,4 +318,4 @@\n !\n\n netconf-yang\n\n restconf\n\n-end\n\n+end 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 45cca71d-85a7-42ac-b792-af8b4aef87cd +2d76b11b-b3f3-4ee1-b2e6-5a4566395e41 2023-09-19 2023-09-19 08:11:02.56113+00 {} \n\n!\n\n!\nversion 17.1\nservice timestamps debug datetime msec\nservice timestamps log datetime msec\n! Call-home is enabled by Smart-Licensing.\nservice call-home\nplatform qfp utilization monitor load 80\nplatform punt-keepalive disable-kernel-core\nplatform console serial\n!\nhostname jcy-rtr-01\n!\nboot-start-marker\nboot-end-marker\n!\n!\nvrf definition MANAGEMENT\n !\n address-family ipv4\n exit-address-family\n !\n address-family ipv6\n exit-address-family\n!\nlogging userinfo\n!\nno aaa new-model\ncall-home\n ! If contact email address in call-home is configured as sch-smart-licensing@cisco.com\n ! the email address configured in Cisco Smart License Portal will be used as contact email address to send SCH notifications.\n contact-email-addr sch-smart-licensing@cisco.com\n profile "CiscoTAC-1"\n active\n destination transport-method http\n!\n!\n!\n!\n!\n!\n!\nno ip domain lookup\nip domain name infra.ntc.com\n!\n!\n!\nlogin on-success log\n!\n!\n!\n!\n!\n!\n!\nsubscriber templating\n! \n! \n! \n! \n!\n!\nmultilink bundle-name authenticated\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\ncrypto pki trustpoint TP-self-signed-1088426642\n enrollment selfsigned\n subject-name cn=IOS-Self-Signed-Certificate-1088426642\n revocation-check none\n rsakeypair TP-self-signed-1088426642\n!\ncrypto pki trustpoint SLA-TrustPoint\n enrollment pkcs12\n revocation-check crl\n!\n!\ncrypto pki certificate chain TP-self-signed-1088426642\n certificate self-signed 01\n 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 \n 31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 \n 69666963 6174652D 31303838 34323636 3432301E 170D3231 30333039 30333233 \n 30325A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 30383834 \n 32363634 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 \n 0A028201 0100C258 B786C7FC 5B053BDF 854C875F C9759970 63D68CAA 1A5EB6E5 \n 31A746E3 B0842F27 FD502FE1 B2524DB4 F3148E12 77440F36 8499D1A7 C33F23EA \n 5CE478FE FFE62F45 0CB4AD92 2A27C69F 3BE2DA7B 3632D5AB 5DE71F8C FE8C084E \n C2F5E747 0C69200F 0791BF57 744EB91C 4203A53C 24B352CE B81166FF 71EE1664 \n A012BADA 635E113E 3BDD4D4C AF80E122 A69D835C 2C2DF16E 551C1C04 A22CC9B6 \n 617ABBCE 4B1BFF43 7CDE889A CC93B318 4CE30CE3 E878574D 93AFAAF8 EA4C1E33 \n 8273EED5 5D0246EE 3BC2BD90 079CE962 61D08E45 ED709A81 FA6F7CEC 318122EA \n 3AD8FD96 511540FB 6664EAD1 DBB71E61 D0DE0312 16EF1408 F73FFC06 373D6C33 \n 33A1D096 47050203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n 301F0603 551D2304 18301680 147DBCC4 E4050777 6A32BB60 ADF933CF F5E71298 \n 6D301D06 03551D0E 04160414 7DBCC4E4 0507776A 32BB60AD F933CFF5 E712986D \n 300D0609 2A864886 F70D0101 05050003 82010100 84CA0D25 F7BCBF9D BE8D384C \n E496A199 D535A35B 3C02E738 A7FE0999 12C238B6 C29F0772 C59EB7CF 6CD51F23 \n A93B49AA 934326E0 47E2D658 46B9DC53 D85BA4E9 577D95EA FEA671F2 B4BFA81F \n 27B5D40B 9AEE0AC4 087392E9 831516E3 E72798CE 9ECA5257 772097D8 BCF4EA5E \n 25B100D9 DB7F1219 C0C05196 E3A2659C 31DA522A 90AE875E 695771CC B9170079 \n 714AF158 ED008EA4 75DC6EFB CCF5A9C4 AA8F5946 8234C1CB CC36DAAE 7E4913C8 \n F81C5FD8 CCD1BFF3 DCC2C3D5 EE7565B4 A6B1F172 9B0ABEDF A5412E10 B5268843 \n A4808B32 D24EA0B6 5FB375BF E3199024 CC68F202 ABC0826B 5224D6F7 633C01F4 \n 947E65FC C4B16ABB 5B595B4D B7BA2DD1 76A8A383\n \tquit\ncrypto pki certificate chain SLA-TrustPoint\n certificate ca 01\n 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 \n 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 \n 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 \n 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 \n 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 \n 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 \n 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D \n CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 \n 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE \n 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC \n 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 \n 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 \n C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 \n C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 \n DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 \n 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 \n 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 \n 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 \n 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B \n D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 \n 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C \n 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B \n 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 \n 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB \n 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 \n D697DF7F 28\n \tquit\n!\nlicense udi pid CSR1000V sn 9SAGBHTUEE9\ndiagnostic bootup level minimal\narchive\n path bootflash:archive\nmemory free low-watermark processor 72107\n!\n!\nspanning-tree extend system-id\n!\n\n!\nredundancy\n!\n!\n!\n!\n!\nlldp run\ncdp run\n!\n! \n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n! \n! \n!\n!\ninterface Loopback0\n ip address 10.0.10.1 255.255.255.255\n!\ninterface GigabitEthernet1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15 255.255.255.0\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet2\n ip address 10.10.0.5 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet3\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet4\n ip address 10.10.0.9 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet5\n ip address 10.10.11.5 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet6\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet7\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet8\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet9\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\nrouter bgp 65251\n bgp router-id 10.0.10.1\n bgp log-neighbor-changes\n redistribute connected\n neighbor 10.10.0.6 remote-as 65251\n neighbor 10.10.0.10 remote-as 65251\n neighbor 10.10.11.6 remote-as 65250\n!\n!\nvirtual-service csr_mgmt\n!\nip forward-protocol nd\nip http server\nip http authentication local\nip http secure-server\n!\nip route 0.0.0.0 0.0.0.0 10.0.0.2\nip scp server enable\n!\n!\nlogging origin-id hostname\nlogging host 10.125.1.171 transport udp port 7004\n!\n!\nsnmp-server community networktocode RO\nsnmp-server community secure RW\nsnmp-server community ntc-public RO\nsnmp-server community ntc-private RW\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode \n!\n!\n!\ncontrol-plane\n!\n!\n!\n!\n!\nalias exec ntcclear clear platform software vnic-if nv\n!\nline con 0\n stopbits 1\nline vty 0 4\n privilege level 15\n login local\n transport preferred ssh\n transport input all\nline vty 5 15\n privilege level 15\n login local\n transport preferred ssh\n transport input all\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\n!\n!\n!\n!\nnetconf-yang\nrestconf\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 \N --- \n+++ \n@@ -1,315 +0,0 @@\n-\n\n-\n\n-!\n\n-\n\n-!\n\n-version 17.1\n\n-service timestamps debug datetime msec\n\n-service timestamps log datetime msec\n\n-! Call-home is enabled by Smart-Licensing.\n\n-service call-home\n\n-platform qfp utilization monitor load 80\n\n-platform punt-keepalive disable-kernel-core\n\n-platform console serial\n\n-!\n\n-hostname jcy-rtr-01\n\n-!\n\n-boot-start-marker\n\n-boot-end-marker\n\n-!\n\n-!\n\n-vrf definition MANAGEMENT\n\n- !\n\n- address-family ipv4\n\n- exit-address-family\n\n- !\n\n- address-family ipv6\n\n- exit-address-family\n\n-!\n\n-logging userinfo\n\n-!\n\n-no aaa new-model\n\n-call-home\n\n- ! If contact email address in call-home is configured as sch-smart-licensing@cisco.com\n\n- ! the email address configured in Cisco Smart License Portal will be used as contact email address to send SCH notifications.\n\n- contact-email-addr sch-smart-licensing@cisco.com\n\n- profile "CiscoTAC-1"\n\n- active\n\n- destination transport-method http\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-no ip domain lookup\n\n-ip domain name infra.ntc.com\n\n-!\n\n-!\n\n-!\n\n-login on-success log\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-subscriber templating\n\n-! \n\n-! \n\n-! \n\n-! \n\n-!\n\n-!\n\n-multilink bundle-name authenticated\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-crypto pki trustpoint TP-self-signed-1088426642\n\n- enrollment selfsigned\n\n- subject-name cn=IOS-Self-Signed-Certificate-1088426642\n\n- revocation-check none\n\n- rsakeypair TP-self-signed-1088426642\n\n-!\n\n-crypto pki trustpoint SLA-TrustPoint\n\n- enrollment pkcs12\n\n- revocation-check crl\n\n-!\n\n-!\n\n-crypto pki certificate chain TP-self-signed-1088426642\n\n- certificate self-signed 01\n\n- 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 \n\n- 31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 \n\n- 69666963 6174652D 31303838 34323636 3432301E 170D3231 30333039 30333233 \n\n- 30325A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n\n- 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 30383834 \n\n- 32363634 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 \n\n- 0A028201 0100C258 B786C7FC 5B053BDF 854C875F C9759970 63D68CAA 1A5EB6E5 \n\n- 31A746E3 B0842F27 FD502FE1 B2524DB4 F3148E12 77440F36 8499D1A7 C33F23EA \n\n- 5CE478FE FFE62F45 0CB4AD92 2A27C69F 3BE2DA7B 3632D5AB 5DE71F8C FE8C084E \n\n- C2F5E747 0C69200F 0791BF57 744EB91C 4203A53C 24B352CE B81166FF 71EE1664 \n\n- A012BADA 635E113E 3BDD4D4C AF80E122 A69D835C 2C2DF16E 551C1C04 A22CC9B6 \n\n- 617ABBCE 4B1BFF43 7CDE889A CC93B318 4CE30CE3 E878574D 93AFAAF8 EA4C1E33 \n\n- 8273EED5 5D0246EE 3BC2BD90 079CE962 61D08E45 ED709A81 FA6F7CEC 318122EA \n\n- 3AD8FD96 511540FB 6664EAD1 DBB71E61 D0DE0312 16EF1408 F73FFC06 373D6C33 \n\n- 33A1D096 47050203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n\n- 301F0603 551D2304 18301680 147DBCC4 E4050777 6A32BB60 ADF933CF F5E71298 \n\n- 6D301D06 03551D0E 04160414 7DBCC4E4 0507776A 32BB60AD F933CFF5 E712986D \n\n- 300D0609 2A864886 F70D0101 05050003 82010100 84CA0D25 F7BCBF9D BE8D384C \n\n- E496A199 D535A35B 3C02E738 A7FE0999 12C238B6 C29F0772 C59EB7CF 6CD51F23 \n\n- A93B49AA 934326E0 47E2D658 46B9DC53 D85BA4E9 577D95EA FEA671F2 B4BFA81F \n\n- 27B5D40B 9AEE0AC4 087392E9 831516E3 E72798CE 9ECA5257 772097D8 BCF4EA5E \n\n- 25B100D9 DB7F1219 C0C05196 E3A2659C 31DA522A 90AE875E 695771CC B9170079 \n\n- 714AF158 ED008EA4 75DC6EFB CCF5A9C4 AA8F5946 8234C1CB CC36DAAE 7E4913C8 \n\n- F81C5FD8 CCD1BFF3 DCC2C3D5 EE7565B4 A6B1F172 9B0ABEDF A5412E10 B5268843 \n\n- A4808B32 D24EA0B6 5FB375BF E3199024 CC68F202 ABC0826B 5224D6F7 633C01F4 \n\n- 947E65FC C4B16ABB 5B595B4D B7BA2DD1 76A8A383\n\n- \tquit\n\n-crypto pki certificate chain SLA-TrustPoint\n\n- certificate ca 01\n\n- 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 \n\n- 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 \n\n- 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 \n\n- 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 \n\n- 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 \n\n- 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 \n\n- 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D \n\n- CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 \n\n- 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE \n\n- 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC \n\n- 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 \n\n- 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 \n\n- C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 \n\n- C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 \n\n- DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 \n\n- 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 \n\n- 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 \n\n- 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 \n\n- 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B \n\n- D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 \n\n- 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C \n\n- 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B \n\n- 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 \n\n- 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB \n\n- 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 \n\n- D697DF7F 28\n\n- \tquit\n\n-!\n\n-license udi pid CSR1000V sn 9SAGBHTUEE9\n\n-diagnostic bootup level minimal\n\n-archive\n\n- path bootflash:archive\n\n-memory free low-watermark processor 72107\n\n-!\n\n-!\n\n-spanning-tree extend system-id\n\n-!\n\n-\n\n-!\n\n-redundancy\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-lldp run\n\n-cdp run\n\n-!\n\n-! \n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-! \n\n-! \n\n-!\n\n-!\n\n-interface Loopback0\n\n- ip address 10.0.10.1 255.255.255.255\n\n-!\n\n-interface GigabitEthernet1\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n- ip address 10.0.0.15 255.255.255.0\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet2\n\n- ip address 10.10.0.5 255.255.255.252\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet3\n\n- no ip address\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet4\n\n- ip address 10.10.0.9 255.255.255.252\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet5\n\n- ip address 10.10.11.5 255.255.255.252\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet6\n\n- no ip address\n\n- shutdown\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet7\n\n- no ip address\n\n- shutdown\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet8\n\n- no ip address\n\n- shutdown\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-interface GigabitEthernet9\n\n- no ip address\n\n- shutdown\n\n- negotiation auto\n\n- no mop enabled\n\n- no mop sysid\n\n-!\n\n-router bgp 65251\n\n- bgp router-id 10.0.10.1\n\n- bgp log-neighbor-changes\n\n- redistribute connected\n\n- neighbor 10.10.0.6 remote-as 65251\n\n- neighbor 10.10.0.10 remote-as 65251\n\n- neighbor 10.10.11.6 remote-as 65250\n\n-!\n\n-!\n\n-virtual-service csr_mgmt\n\n-!\n\n-ip forward-protocol nd\n\n-ip http server\n\n-ip http authentication local\n\n-ip http secure-server\n\n-!\n\n-ip route 0.0.0.0 0.0.0.0 10.0.0.2\n\n-ip scp server enable\n\n-!\n\n-!\n\n-logging origin-id hostname\n\n-logging host 10.125.1.171 transport udp port 7004\n\n-!\n\n-!\n\n-snmp-server community networktocode RO\n\n-snmp-server community secure RW\n\n-snmp-server community ntc-public RO\n\n-snmp-server community ntc-private RW\n\n-snmp-server location Network to Code - NYC | NY\n\n-snmp-server contact John Smith\n\n-snmp-server host 10.1.1.1 version 2c networktocode \n\n-!\n\n-!\n\n-!\n\n-control-plane\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-alias exec ntcclear clear platform software vnic-if nv\n\n-!\n\n-line con 0\n\n- stopbits 1\n\n-line vty 0 4\n\n- privilege level 15\n\n- login local\n\n- transport preferred ssh\n\n- transport input all\n\n-line vty 5 15\n\n- privilege level 15\n\n- login local\n\n- transport preferred ssh\n\n- transport input all\n\n-!\n\n-ntp server 10.1.1.1\n\n-ntp server 10.2.2.2 prefer\n\n-!\n\n-!\n\n-!\n\n-!\n\n-!\n\n-netconf-yang\n\n-restconf\n\n-end\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 80f9eb01-db6d-4939-9f2e-ef2c222cedee +70493f8e-14c6-4a71-a3b1-186eb9eb3f56 2023-09-19 2023-09-19 08:11:02.565817+00 {} \n\n!\n\n!\nversion 17.1\nservice timestamps debug datetime msec\nservice timestamps log datetime msec\n! Call-home is enabled by Smart-Licensing.\nservice call-home\nplatform qfp utilization monitor load 80\nplatform punt-keepalive disable-kernel-core\nplatform console serial\n!\nhostname jcy-rtr-02\n!\nboot-start-marker\nboot-end-marker\n!\n!\nvrf definition MANAGEMENT\n !\n address-family ipv4\n exit-address-family\n !\n address-family ipv6\n exit-address-family\n!\nlogging userinfo\n!\nno aaa new-model\ncall-home\n ! If contact email address in call-home is configured as sch-smart-licensing@cisco.com\n ! the email address configured in Cisco Smart License Portal will be used as contact email address to send SCH notifications.\n contact-email-addr sch-smart-licensing@cisco.com\n profile "CiscoTAC-1"\n active\n destination transport-method http\n!\n!\n!\n!\n!\n!\n!\nno ip domain lookup\nip domain name infra.ntc.com\n!\n!\n!\nlogin on-success log\n!\n!\n!\n!\n!\n!\n!\nsubscriber templating\n! \n! \n! \n! \n!\n!\nmultilink bundle-name authenticated\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\ncrypto pki trustpoint TP-self-signed-1088426642\n enrollment selfsigned\n subject-name cn=IOS-Self-Signed-Certificate-1088426642\n revocation-check none\n rsakeypair TP-self-signed-1088426642\n!\ncrypto pki trustpoint SLA-TrustPoint\n enrollment pkcs12\n revocation-check crl\n!\n!\ncrypto pki certificate chain TP-self-signed-1088426642\n certificate self-signed 01\n 30820330 30820218 A0030201 02020101 300D0609 2A864886 F70D0101 05050030 \n 31312F30 2D060355 04031326 494F532D 53656C66 2D536967 6E65642D 43657274 \n 69666963 6174652D 31303838 34323636 3432301E 170D3231 30333039 30333233 \n 30355A17 0D333030 31303130 30303030 305A3031 312F302D 06035504 03132649 \n 4F532D53 656C662D 5369676E 65642D43 65727469 66696361 74652D31 30383834 \n 32363634 32308201 22300D06 092A8648 86F70D01 01010500 0382010F 00308201 \n 0A028201 010091B0 9B92453B 4CF6913E 0EC99771 DE1C8252 93B3DE02 431E8A07 \n B691600F E9BF0C1E DE3A9316 47E0AB78 9A15C14C 62A745DB CD80B5AE F922511A \n E3236066 1C56C3CB 776B15D3 93AD2AB2 8394C0B7 ABA4A736 061DDC94 365E38FD \n 8133D183 66AF855B E5233DC0 D85D2FEC 55F19F55 91ED5C44 8060BEB1 4DDE0952 \n B0F242CC 34DD47D5 7E343264 6B3D6E5E 98DCD2E9 FD034857 3351806A 5F22F139 \n 1EC8E6F8 FA5D1CEA 33C67A22 A3838E67 32388654 1FA3FE17 A1D3E590 5FD054BA \n A432D80E 3859ED16 007DA7A9 08CF3EEF 6DCB7013 E5F5D31E D84EAA9B F51F53C5 \n 6E24FD28 AA8EE80C 8A8ADA19 B1D32C8A 71666515 5B71E9CE 40757139 535CC4EB \n 8416D18F 2D6F0203 010001A3 53305130 0F060355 1D130101 FF040530 030101FF \n 301F0603 551D2304 18301680 14FA04AC E2C74C9C 558CE1A2 B59FCE57 DF01003A \n 46301D06 03551D0E 04160414 FA04ACE2 C74C9C55 8CE1A2B5 9FCE57DF 01003A46 \n 300D0609 2A864886 F70D0101 05050003 82010100 66C70DAF 07657FFE CCC60731 \n 07192801 A67CB65A C6ADAD39 6796CD59 3A1CA609 2D6E9395 1D2B682F DFAEAF29 \n 15DD10F7 93F68D7A 85DD7FBB 55EE8D4F F9FCD328 3ED33141 5A5D971F F6C95651 \n 5F81D0DF BA18929F D0E61627 51D79EFC 295FC90F 337C24CC 5A716C1A 344AFCB4 \n 62699283 318C4A5D D256E13B 59DABB50 8A480F93 2A9E1CEF 98B653B7 C22138CF \n 348AD214 DF3932BD 0B82C587 AEC56A24 A3926F39 975F13E8 08F3FD7F BA7BE4F0 \n 4F572DEB 500ADC4D 3ADBA4C0 98EE420F E49E98F9 97F22ABE EC7383D7 8C66BCA5 \n E817AA61 6A8D390E 94554EBF 4FEBDDC9 81649DB1 FB917938 5EA171DF BEA45349 \n 369845F3 172B28BD AABDEA30 B954C956 68F090DC\n \tquit\ncrypto pki certificate chain SLA-TrustPoint\n certificate ca 01\n 30820321 30820209 A0030201 02020101 300D0609 2A864886 F70D0101 0B050030 \n 32310E30 0C060355 040A1305 43697363 6F312030 1E060355 04031317 43697363 \n 6F204C69 63656E73 696E6720 526F6F74 20434130 1E170D31 33303533 30313934 \n 3834375A 170D3338 30353330 31393438 34375A30 32310E30 0C060355 040A1305 \n 43697363 6F312030 1E060355 04031317 43697363 6F204C69 63656E73 696E6720 \n 526F6F74 20434130 82012230 0D06092A 864886F7 0D010101 05000382 010F0030 \n 82010A02 82010100 A6BCBD96 131E05F7 145EA72C 2CD686E6 17222EA1 F1EFF64D \n CBB4C798 212AA147 C655D8D7 9471380D 8711441E 1AAF071A 9CAE6388 8A38E520 \n 1C394D78 462EF239 C659F715 B98C0A59 5BBB5CBD 0CFEBEA3 700A8BF7 D8F256EE \n 4AA4E80D DB6FD1C9 60B1FD18 FFC69C96 6FA68957 A2617DE7 104FDC5F EA2956AC \n 7390A3EB 2B5436AD C847A2C5 DAB553EB 69A9A535 58E9F3E3 C0BD23CF 58BD7188 \n 68E69491 20F320E7 948E71D7 AE3BCC84 F10684C7 4BC8E00F 539BA42B 42C68BB7 \n C7479096 B4CB2D62 EA2F505D C7B062A4 6811D95B E8250FC4 5D5D5FB8 8F27D191 \n C55F0D76 61F9A4CD 3D992327 A8BB03BD 4E6D7069 7CBADF8B DF5F4368 95135E44 \n DFC7C6CF 04DD7FD1 02030100 01A34230 40300E06 03551D0F 0101FF04 04030201 \n 06300F06 03551D13 0101FF04 05300301 01FF301D 0603551D 0E041604 1449DC85 \n 4B3D31E5 1B3E6A17 606AF333 3D3B4C73 E8300D06 092A8648 86F70D01 010B0500 \n 03820101 00507F24 D3932A66 86025D9F E838AE5C 6D4DF6B0 49631C78 240DA905 \n 604EDCDE FF4FED2B 77FC460E CD636FDB DD44681E 3A5673AB 9093D3B1 6C9E3D8B \n D98987BF E40CBD9E 1AECA0C2 2189BB5C 8FA85686 CD98B646 5575B146 8DFC66A8 \n 467A3DF4 4D565700 6ADF0F0D CF835015 3C04FF7C 21E878AC 11BA9CD2 55A9232C \n 7CA7B7E6 C1AF74F6 152E99B7 B1FCF9BB E973DE7F 5BDDEB86 C71E3B49 1765308B \n 5FB0DA06 B92AFE7F 494E8A9E 07B85737 F3A58BE1 1A48A229 C37C1E69 39F08678 \n 80DDCD16 D6BACECA EEBC7CF9 8428787B 35202CDC 60E4616A B623CDBD 230E3AFB \n 418616A9 4093E049 4D10AB75 27E86F73 932E35B5 8862FDAE 0275156F 719BB2F0 \n D697DF7F 28\n \tquit\n!\nlicense udi pid CSR1000V sn 9SAGBHTUEE9\ndiagnostic bootup level minimal\narchive\n path bootflash:archive\nmemory free low-watermark processor 72107\n!\n!\nspanning-tree extend system-id\n!\n\n!\nredundancy\n!\n!\n!\n!\n!\nlldp run\ncdp run\n!\n! \n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n!\n! \n! \n!\n!\ninterface Loopback0\n ip address 10.0.10.2 255.255.255.255\n!\ninterface GigabitEthernet1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15 255.255.255.0\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet2\n no ip address\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet3\n ip address 10.10.0.13 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet4\n ip address 10.10.0.10 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet5\n ip address 10.10.11.9 255.255.255.252\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet6\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet7\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet8\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\ninterface GigabitEthernet9\n no ip address\n shutdown\n negotiation auto\n no mop enabled\n no mop sysid\n!\nrouter bgp 65251\n bgp router-id 10.0.10.2\n bgp log-neighbor-changes\n redistribute connected\n neighbor 10.10.0.9 remote-as 65251\n neighbor 10.10.0.14 remote-as 65251\n neighbor 10.10.11.10 remote-as 65250\n!\n!\nvirtual-service csr_mgmt\n!\nip forward-protocol nd\nip http server\nip http authentication local\nip http secure-server\n!\nip route 0.0.0.0 0.0.0.0 10.0.0.2\nip scp server enable\n!\n!\nlogging origin-id hostname\nlogging host 10.125.1.171 transport udp port 7004\n!\n!\nsnmp-server community networktocode RO\nsnmp-server community secure RW\nsnmp-server community ntc-public RO\nsnmp-server community ntc-private RW\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode \n!\n!\n!\ncontrol-plane\n!\n!\n!\n!\n!\nalias exec ntcclear clear platform software vnic-if nv\n!\nline con 0\n stopbits 1\nline vty 0 4\n privilege level 15\n login local\n transport preferred ssh\n transport input all\nline vty 5 15\n privilege level 15\n login local\n transport preferred ssh\n transport input all\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\n!\n!\n!\n!\nnetconf-yang\nrestconf\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N 720ef39b-a75e-4681-ac70-4237598974d0 +0a2aacfd-b20c-482c-bfd3-63573f2e3d85 2023-09-19 2023-09-19 08:11:02.569832+00 {} \n!Command: show running-config\n!Running configuration last done at: Tue May 11 16:45:42 2021\n!Time: Fri May 28 17:54:49 2021\n\nversion 9.3(3) Bios:version \nhostname jcy-spine-01\nvdc jcy-spine-01 id 1\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 511\n limit-resource u4route-mem minimum 128 maximum 128\n limit-resource u6route-mem minimum 96 maximum 96\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\n\nfeature nxapi\nfeature bash-shell\nfeature scp-server\ncfs eth distribute\nfeature bgp\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature lldp\n\nlogging level aaa 4\nlogging level acllog 4\nlogging level aclmgr 4\nlogging level adbm 4\nlogging level ascii-cfg 4\nlogging level bootvar 4\nlogging level callhome 4\nlogging level capability 4\nlogging level cdp 4\nlogging level cert_enroll 4\nlogging level cfs 4\nlogging level clk_mgr 4\nlogging level confcheck 4\nlogging level copp 4\nlogging level dhclient 4\nlogging level diag_port_lb 4\nlogging level diagclient 4\nlogging level diagmgr 4\nlogging level eltm 4\nlogging level eth_dstats 4\nlogging level eth_port_channel 4\nlogging level ethpm 4\nlogging level evmc 4\nlogging level evms 4\nlogging level feature-mgr 4\nlogging level fs-daemon 4\nlogging level hsrp 4\nlogging level ifmgr 4\nlogging level interface-vlan 4\nlogging level ipfib 4\nlogging level l2fm 4\nlogging level l2pt 4\nlogging level licmgr 4\nlogging level lim 4\nlogging level module 4\nlogging level monitor 4\nlogging level mvsh 4\nlogging level ntp 4\nlogging level otm 4\nlogging level pfstat 4\nlogging level platform 4\nlogging level plcmgr 4\nlogging level plugin 4\nlogging level radius 4\nlogging level res_mgr 4\nlogging level sal 4\nlogging level securityd 4\nlogging level session-mgr 4\nlogging level sksd 4\nlogging level snmpd 4\nlogging level snmpmib_proc 4\nlogging level spanning-tree 4\nlogging level stripcl 4\nlogging level template_manager 4\nlogging level ufdm 4\nlogging level vdc_mgr 4\nlogging level virtual-service 4\nlogging level vlan_mgr 4 \nlogging level vpc 4\nlogging level vshd 4\nlogging level xbar 4\nlogging level xmlma 4\nlogging level urib 4\nlogging level igmp 4\nlogging level mrib 4\nlogging level m6rib 4\nlogging level arp 4\nlogging level clis 4\nlogging level netstack 4\nlogging level bgp 4\nlogging level icmpv6 4\nlogging level adjmgr 4\nlogging level pktmgr 4\nlogging level ecp 4\nlogging level rpm 4\nlogging level smm 4\nlogging level u6rib 4\nlogging level lldp 4\n\nno password strength-check\nusername admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\nusername ntc password 5 $5$CDcpD09G$Lf1x/n.2SDvcnznTJsZ75drkIi5XguFoieba3IVtGV. role network-admin\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\nip domain-lookup\nip domain-name infra.ntc.com\nip access-list PERMIT_ROUTES\n 10 permit ip any any \ncopp profile strict\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server user ntc network-admin auth md5 0xe15d7e7768418903040d565987788402 priv 0xe15d7e7768418903040d565987788402 localizedkey\nsnmp-server user admin auth md5 0x3c0c5d5139941831378b36418799e1cc priv 0x3c0c5d5139941831378b36418799e1cc localizedkey engineID 128:0:0:9:3:82:208:168:0:27:1\nsnmp-server host 10.1.1.1 traps version 2c networktocode\nrmon event 1 description FATAL(1) owner PMON@FATAL\nrmon event 2 description CRITICAL(2) owner PMON@CRITICAL\nrmon event 3 description ERROR(3) owner PMON@ERROR\nrmon event 4 description WARNING(4) owner PMON@WARNING\nrmon event 5 description INFORMATION(5) owner PMON@INFO\nsnmp-server community secure group network-admin\nsnmp-server community networktocode group network-operator\nntp server 10.1.1.1 use-vrf default\nntp server 10.2.2.2 prefer use-vrf default\n\nip route 0.0.0.0/0 10.0.0.2\nvlan 1,101-102,248,260-270,272-276,280,282-283\nvlan 101\n name webvlan001\nvlan 102\n name dbvlan001\nvlan 248\n name vlan248\nvlan 260\n name vlan260\nvlan 261\n name vlan261\nvlan 262\n name vlan262\nvlan 263\n name vlan263\nvlan 264\n name vlan264\nvlan 265\n name vlan265\nvlan 266\n name vlan266\nvlan 267\n name vlan267\nvlan 268\n name vlan268\nvlan 269\n name vlan269\nvlan 270\n name vlan270\nvlan 272\n name vlan272\nvlan 273\n name vlan273\nvlan 274\n name vlan274\nvlan 275\n name vlan275\nvlan 276\n name vlan276\nvlan 280\n name vlan280\nvlan 282\n name vlan282\nvlan 283\n name vlan283\n\nroute-map PERMIT_CONN_ROUTES permit 10\n match ip address PERMIT_ROUTES \nvrf context management\n\nlogging level sysmgr 4\nnxapi ssl ciphers weak\nnxapi ssl protocols TLSv1\n\n\ninterface Vlan1\n\ninterface Ethernet1/1\n no switchport\n mac-address 0000.1100.2222\n ip address 10.10.10.5/30\n no shutdown\n\ninterface Ethernet1/2\n no switchport\n mac-address 0011.1111.2222\n ip address 10.10.10.9/30\n no shutdown\n\ninterface Ethernet1/3\n no switchport\n mac-address 0022.1122.2222\n ip address 10.10.10.13/30\n no shutdown\n\ninterface Ethernet1/4\n no switchport\n mac-address 0033.1133.2222\n ip address 10.10.10.17/30\n no shutdown\n\ninterface Ethernet1/5\n no switchport\n mac-address 0044.1144.2222\n ip address 10.10.11.6/30\n no shutdown\n\ninterface Ethernet1/6\n\ninterface Ethernet1/7\n\ninterface Ethernet1/8\n\ninterface Ethernet1/9\n\ninterface Ethernet1/10\n\ninterface Ethernet1/11\n\ninterface Ethernet1/12\n\ninterface Ethernet1/13\n\ninterface Ethernet1/14\n\ninterface Ethernet1/15\n\ninterface Ethernet1/16\n\ninterface Ethernet1/17\n\ninterface Ethernet1/18\n\ninterface Ethernet1/19\n\ninterface Ethernet1/20\n\ninterface Ethernet1/21\n\ninterface Ethernet1/22\n\ninterface Ethernet1/23\n\ninterface Ethernet1/24\n\ninterface Ethernet1/25\n\ninterface Ethernet1/26\n\ninterface Ethernet1/27\n\ninterface Ethernet1/28\n\ninterface Ethernet1/29\n\ninterface Ethernet1/30\n\ninterface Ethernet1/31\n\ninterface Ethernet1/32\n\ninterface Ethernet1/33\n\ninterface Ethernet1/34\n\ninterface Ethernet1/35\n\ninterface Ethernet1/36\n\ninterface Ethernet1/37\n\ninterface Ethernet1/38\n\ninterface Ethernet1/39\n\ninterface Ethernet1/40\n\ninterface Ethernet1/41\n\ninterface Ethernet1/42\n\ninterface Ethernet1/43\n\ninterface Ethernet1/44\n\ninterface Ethernet1/45\n\ninterface Ethernet1/46\n\ninterface Ethernet1/47\n\ninterface Ethernet1/48\n\ninterface Ethernet1/49\n\ninterface Ethernet1/50\n\ninterface Ethernet1/51\n\ninterface Ethernet1/52\n\ninterface Ethernet1/53\n\ninterface Ethernet1/54\n\ninterface Ethernet1/55\n\ninterface Ethernet1/56\n\ninterface Ethernet1/57\n\ninterface Ethernet1/58\n\ninterface Ethernet1/59\n\ninterface Ethernet1/60\n\ninterface Ethernet1/61\n\ninterface Ethernet1/62\n\ninterface Ethernet1/63\n\ninterface Ethernet1/64\n\ninterface mgmt0\n description MANAGEMENT_DO_NOT_CHANGE\n vrf member management\n ip address 10.0.0.15/24\n\ninterface loopback0\n ip address 10.0.10.4/32\nline console\nline vty\nrouter bgp 65250\n router-id 10.0.10.4\n log-neighbor-changes\n address-family ipv4 unicast\n redistribute direct route-map PERMIT_CONN_ROUTES\n neighbor 10.10.10.6\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.10\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.14\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.18\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.11.5\n remote-as 65251\n address-family ipv4 unicast\nlogging level l3vm 4\n\nlogging server 10.125.1.171 6 port 7008\nlogging source-interface mgmt0\nlogging level kernel 4\nlogging level user 4\nlogging level mail 4\nlogging level daemon 4\nlogging level auth 4\nlogging level syslog 4\nlogging level lpr 4\nlogging level news 4\nlogging level uucp 4\nlogging level cron 4\nlogging level authpri 4\nlogging level ftp 4\nlogging level local0 4\nlogging level local1 4\nlogging level local2 4\nlogging level local3 4\nlogging level local4 4\nlogging level local5 4\nlogging level local6 4\nlogging level local7 4\nlogging origin-id hostname\nboot nxos bootflash:/nxos.9.3.3.bin sup-1\n\n\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 version 9.3(3) Bios:version\nhostname jcy-spine-01\nvdc jcy-spine-01 id 1\n\nfeature nxapi\nfeature bash-shell\nfeature scp-server\ncfs eth distribute\nfeature bgp\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature lldp\n\nlogging level aaa 7\nlogging level acllog 4\nlogging level aclmgr 4\nlogging level adbm 4\nlogging level ascii-cfg 4\nlogging level bootvar 4\nlogging level callhome 4\nlogging level capability 4\nlogging level cdp 4\nlogging level cert_enroll 4\nlogging level cfs 4\nlogging level clk_mgr 4\nlogging level confcheck 4\nlogging level copp 4\nlogging level dhclient 4\nlogging level diag_port_lb 4\nlogging level diagclient 4\nlogging level diagmgr 4\nlogging level eltm 4\nlogging level eth_dstats 4\nlogging level eth_port_channel 4\nlogging level ethpm 4\nlogging level evmc 4\nlogging level evms 4\nlogging level feature-mgr 4\nlogging level fs-daemon 4\nlogging level hsrp 4\nlogging level ifmgr 4\nlogging level interface-vlan 4\nlogging level ipfib 4\nlogging level l2fm 4\nlogging level l2pt 4\nlogging level licmgr 4\nlogging level lim 4\nlogging level module 4\nlogging level monitor 4\nlogging level mvsh 4\nlogging level ntp 4\nlogging level otm 4\nlogging level pfstat 4\nlogging level platform 4\nlogging level plcmgr 4\nlogging level plugin 4\nlogging level radius 4\nlogging level res_mgr 4\nlogging level sal 4\nlogging level securityd 4\nlogging level session-mgr 4\nlogging level sksd 4\nlogging level snmpd 4\nlogging level snmpmib_proc 4\nlogging level spanning-tree 4\nlogging level stripcl 4\nlogging level template_manager 4\nlogging level ufdm 4\nlogging level vdc_mgr 4\nlogging level virtual-service 4\nlogging level vlan_mgr 4\nlogging level vpc 4\nlogging level vshd 4\nlogging level xbar 4\nlogging level xmlma 4\nlogging level urib 4\nlogging level igmp 4\nlogging level mrib 4\nlogging level m6rib 4\nlogging level arp 4\nlogging level clis 4\nlogging level netstack 4\nlogging level bgp 4\nlogging level icmpv6 4\nlogging level adjmgr 4\nlogging level pktmgr 4\nlogging level ecp 4\nlogging level rpm 4\nlogging level u6rib 4\nlogging level lldp 4\n\nno password strength-check\nusername admin password 5 role network-admin\nusername ntc password 5 role network-admin\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\nip domain-lookup\nip domain-name ntc.com\nip access-list PERMIT_ROUTES\n 10 permit ip any any\ncopp profile strict\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server host 10.1.1.1 traps version 2c networktocode\nsnmp-server community networktocode group network-operator\nsnmp-server community secure group network-admin\nntp server 10.1.1.1 use-vrf default\nntp server 10.2.2.2 prefer use-vrf default\n\nip route 0.0.0.0/0 10.0.0.2\nroute-map PERMIT_CONN_ROUTES permit 10\n match ip address PERMIT_ROUTES\nvrf context management\n\nlogging level sysmgr 4\nnxapi ssl ciphers weak\nnxapi ssl protocols TLSv1\n\n\ninterface Ethernet1/1\n no switchport\n ip address 10.10.10.5/30\n\ninterface Ethernet1/2\n no switchport\n ip address 10.10.10.9/30\n\ninterface Ethernet1/3\n no switchport\n ip address 10.10.10.13/30\n\ninterface Ethernet1/4\n no switchport\n ip address 10.10.10.17/30\n\ninterface Ethernet1/5\n no switchport\n ip address 10.10.11.6/30\n\ninterface Ethernet1/6\n\ninterface Ethernet1/7\n\ninterface Ethernet1/8\n\ninterface Ethernet1/9\n\ninterface Ethernet1/10\n\ninterface Ethernet1/11\n\ninterface Ethernet1/12\n\ninterface Ethernet1/13\n\ninterface Ethernet1/14\n\ninterface Ethernet1/15\n\ninterface Ethernet1/16\n\ninterface Ethernet1/17\n\ninterface Ethernet1/18\n\ninterface Ethernet1/19\n\ninterface Ethernet1/20\n\ninterface Ethernet1/21\n\ninterface Ethernet1/22\n\ninterface Ethernet1/23\n\ninterface Ethernet1/24\n\ninterface Ethernet1/25\n\ninterface Ethernet1/26\n\ninterface Ethernet1/27\n\ninterface Ethernet1/28\n\ninterface Ethernet1/29\n\ninterface Ethernet1/30\n\ninterface Ethernet1/31\n\ninterface Ethernet1/32\n\ninterface Ethernet1/33\n\ninterface Ethernet1/34\n\ninterface Ethernet1/35\n\ninterface Ethernet1/36\n\ninterface Ethernet1/37\n\ninterface Ethernet1/38\n\ninterface Ethernet1/39\n\ninterface Ethernet1/40\n\ninterface Ethernet1/41\n\ninterface Ethernet1/42\n\ninterface Ethernet1/43\n\ninterface Ethernet1/44\n\ninterface Ethernet1/45\n\ninterface Ethernet1/46\n\ninterface Ethernet1/47\n\ninterface Ethernet1/48\n\ninterface Ethernet1/49\n\ninterface Ethernet1/50\n\ninterface Ethernet1/51\n\ninterface Ethernet1/52\n\ninterface Ethernet1/53\n\ninterface Ethernet1/54\n\ninterface Ethernet1/55\n\ninterface Ethernet1/56\n\ninterface Ethernet1/57\n\ninterface Ethernet1/58\n\ninterface Ethernet1/59\n\ninterface Ethernet1/60\n\ninterface Ethernet1/61\n\ninterface Ethernet1/62\n\ninterface Ethernet1/63\n\ninterface Ethernet1/64\n\ninterface mgmt0\n vrf member management\n no ip address\n\ninterface loopback0\n ip address 10.0.10.4/32\nline console\nline vty\nrouter bgp 65250\n router-id 10.0.10.4\n log-neighbor-changes\n address-family ipv4 unicast\n redistribute direct route-map PERMIT_CONN_ROUTES\n neighbor 10.10.10.6\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.10\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.14\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.18\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.11.5\n remote-as 65251\n address-family ipv4 unicast\n\nlogging server 10.125.1.171 6 port 7008\nlogging level kernel 4\nlogging level user 4\nlogging level mail 4\nlogging level daemon 4\nlogging level auth 4\nlogging level syslog 4\nlogging level lpr 4\nlogging level news 4\nlogging level uucp 4\nlogging level cron 4\nlogging level authpri 4\nlogging level ftp 4\nlogging level local0 4\nlogging level local1 4\nlogging level local2 4\nlogging level local3 4\nlogging level local4 4\nlogging level local5 4\nlogging level local6 4\nlogging level local7 4\nlogging origin-id hostname\nboot nxos bootflash:/nxos.9.3.3.bin sup-1\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,18 +1,6 @@\n-\n\n-!Command: show running-config\n\n-!Running configuration last done at: Tue May 11 16:45:42 2021\n\n-!Time: Fri May 28 17:54:49 2021\n\n-\n\n-version 9.3(3) Bios:version \n\n+version 9.3(3) Bios:version\n\n hostname jcy-spine-01\n\n vdc jcy-spine-01 id 1\n\n- limit-resource vlan minimum 16 maximum 4094\n\n- limit-resource vrf minimum 2 maximum 4096\n\n- limit-resource port-channel minimum 0 maximum 511\n\n- limit-resource u4route-mem minimum 128 maximum 128\n\n- limit-resource u6route-mem minimum 96 maximum 96\n\n- limit-resource m4route-mem minimum 58 maximum 58\n\n- limit-resource m6route-mem minimum 8 maximum 8\n\n \n\n feature nxapi\n\n feature bash-shell\n\n@@ -24,7 +12,7 @@\n feature vpc\n\n feature lldp\n\n \n\n-logging level aaa 4\n\n+logging level aaa 7\n\n logging level acllog 4\n\n logging level aclmgr 4\n\n logging level adbm 4\n\n@@ -81,7 +69,7 @@\n logging level ufdm 4\n\n logging level vdc_mgr 4\n\n logging level virtual-service 4\n\n-logging level vlan_mgr 4 \n\n+logging level vlan_mgr 4\n\n logging level vpc 4\n\n logging level vshd 4\n\n logging level xbar 4\n\n@@ -99,83 +87,29 @@\n logging level pktmgr 4\n\n logging level ecp 4\n\n logging level rpm 4\n\n-logging level smm 4\n\n logging level u6rib 4\n\n logging level lldp 4\n\n \n\n no password strength-check\n\n-username admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\n\n-username ntc password 5 $5$CDcpD09G$Lf1x/n.2SDvcnznTJsZ75drkIi5XguFoieba3IVtGV. role network-admin\n\n+username admin password 5 role network-admin\n\n+username ntc password 5 role network-admin\n\n username ntc passphrase lifetime 99999 warntime 14 gracetime 3\n\n ip domain-lookup\n\n-ip domain-name infra.ntc.com\n\n+ip domain-name ntc.com\n\n ip access-list PERMIT_ROUTES\n\n- 10 permit ip any any \n\n+ 10 permit ip any any\n\n copp profile strict\n\n snmp-server contact John Smith\n\n snmp-server location Network to Code - NYC | NY\n\n-snmp-server user ntc network-admin auth md5 0xe15d7e7768418903040d565987788402 priv 0xe15d7e7768418903040d565987788402 localizedkey\n\n-snmp-server user admin auth md5 0x3c0c5d5139941831378b36418799e1cc priv 0x3c0c5d5139941831378b36418799e1cc localizedkey engineID 128:0:0:9:3:82:208:168:0:27:1\n\n snmp-server host 10.1.1.1 traps version 2c networktocode\n\n-rmon event 1 description FATAL(1) owner PMON@FATAL\n\n-rmon event 2 description CRITICAL(2) owner PMON@CRITICAL\n\n-rmon event 3 description ERROR(3) owner PMON@ERROR\n\n-rmon event 4 description WARNING(4) owner PMON@WARNING\n\n-rmon event 5 description INFORMATION(5) owner PMON@INFO\n\n+snmp-server community networktocode group network-operator\n\n snmp-server community secure group network-admin\n\n-snmp-server community networktocode group network-operator\n\n ntp server 10.1.1.1 use-vrf default\n\n ntp server 10.2.2.2 prefer use-vrf default\n\n \n\n ip route 0.0.0.0/0 10.0.0.2\n\n-vlan 1,101-102,248,260-270,272-276,280,282-283\n\n-vlan 101\n\n- name webvlan001\n\n-vlan 102\n\n- name dbvlan001\n\n-vlan 248\n\n- name vlan248\n\n-vlan 260\n\n- name vlan260\n\n-vlan 261\n\n- name vlan261\n\n-vlan 262\n\n- name vlan262\n\n-vlan 263\n\n- name vlan263\n\n-vlan 264\n\n- name vlan264\n\n-vlan 265\n\n- name vlan265\n\n-vlan 266\n\n- name vlan266\n\n-vlan 267\n\n- name vlan267\n\n-vlan 268\n\n- name vlan268\n\n-vlan 269\n\n- name vlan269\n\n-vlan 270\n\n- name vlan270\n\n-vlan 272\n\n- name vlan272\n\n-vlan 273\n\n- name vlan273\n\n-vlan 274\n\n- name vlan274\n\n-vlan 275\n\n- name vlan275\n\n-vlan 276\n\n- name vlan276\n\n-vlan 280\n\n- name vlan280\n\n-vlan 282\n\n- name vlan282\n\n-vlan 283\n\n- name vlan283\n\n-\n\n route-map PERMIT_CONN_ROUTES permit 10\n\n- match ip address PERMIT_ROUTES \n\n+ match ip address PERMIT_ROUTES\n\n vrf context management\n\n \n\n logging level sysmgr 4\n\n@@ -183,37 +117,25 @@\n nxapi ssl protocols TLSv1\n\n \n\n \n\n-interface Vlan1\n\n-\n\n interface Ethernet1/1\n\n no switchport\n\n- mac-address 0000.1100.2222\n\n ip address 10.10.10.5/30\n\n- no shutdown\n\n \n\n interface Ethernet1/2\n\n no switchport\n\n- mac-address 0011.1111.2222\n\n ip address 10.10.10.9/30\n\n- no shutdown\n\n \n\n interface Ethernet1/3\n\n no switchport\n\n- mac-address 0022.1122.2222\n\n ip address 10.10.10.13/30\n\n- no shutdown\n\n \n\n interface Ethernet1/4\n\n no switchport\n\n- mac-address 0033.1133.2222\n\n ip address 10.10.10.17/30\n\n- no shutdown\n\n \n\n interface Ethernet1/5\n\n no switchport\n\n- mac-address 0044.1144.2222\n\n ip address 10.10.11.6/30\n\n- no shutdown\n\n \n\n interface Ethernet1/6\n\n \n\n@@ -334,9 +256,8 @@\n interface Ethernet1/64\n\n \n\n interface mgmt0\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n vrf member management\n\n- ip address 10.0.0.15/24\n\n+ no ip address\n\n \n\n interface loopback0\n\n ip address 10.0.10.4/32\n\n@@ -362,10 +283,8 @@\n neighbor 10.10.11.5\n\n remote-as 65251\n\n address-family ipv4 unicast\n\n-logging level l3vm 4\n\n \n\n logging server 10.125.1.171 6 port 7008\n\n-logging source-interface mgmt0\n\n logging level kernel 4\n\n logging level user 4\n\n logging level mail 4\n\n@@ -388,5 +307,3 @@\n logging level local7 4\n\n logging origin-id hostname\n\n boot nxos bootflash:/nxos.9.3.3.bin sup-1\n\n-\n\n-\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 6442be3b-16d7-4788-ad3f-fb88282ea42d +5a67d868-8f70-4ed3-bfe1-8ebc194e1964 2023-09-19 2023-09-19 08:11:02.574239+00 {} \n!Command: show running-config\n!Running configuration last done at: Wed Mar 10 17:57:45 2021\n!Time: Fri May 28 17:55:58 2021\n\nversion 9.3(3) Bios:version \nhostname jcy-spine-02\nvdc jcy-spine-02 id 1\n limit-resource vlan minimum 16 maximum 4094\n limit-resource vrf minimum 2 maximum 4096\n limit-resource port-channel minimum 0 maximum 511\n limit-resource u4route-mem minimum 128 maximum 128\n limit-resource u6route-mem minimum 96 maximum 96\n limit-resource m4route-mem minimum 58 maximum 58\n limit-resource m6route-mem minimum 8 maximum 8\n\nfeature nxapi\nfeature bash-shell\nfeature scp-server\ncfs eth distribute\nfeature bgp\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature lldp\n\nlogging level aaa 4\nlogging level acllog 4\nlogging level aclmgr 4\nlogging level adbm 4\nlogging level ascii-cfg 4\nlogging level bootvar 4\nlogging level callhome 4\nlogging level capability 4\nlogging level cdp 4\nlogging level cert_enroll 4\nlogging level cfs 4\nlogging level clk_mgr 4\nlogging level confcheck 4\nlogging level copp 4\nlogging level dhclient 4\nlogging level diag_port_lb 4\nlogging level diagclient 4\nlogging level diagmgr 4\nlogging level eltm 4\nlogging level eth_dstats 4\nlogging level eth_port_channel 4\nlogging level ethpm 4\nlogging level evmc 4\nlogging level evms 4\nlogging level feature-mgr 4\nlogging level fs-daemon 4\nlogging level hsrp 4\nlogging level ifmgr 4\nlogging level interface-vlan 4\nlogging level ipfib 4\nlogging level l2fm 4\nlogging level l2pt 4\nlogging level licmgr 4\nlogging level lim 4\nlogging level module 4\nlogging level monitor 4\nlogging level mvsh 4\nlogging level ntp 4\nlogging level otm 4\nlogging level pfstat 4\nlogging level platform 4\nlogging level plcmgr 4\nlogging level plugin 4\nlogging level radius 4\nlogging level res_mgr 4\nlogging level sal 4\nlogging level securityd 4\nlogging level session-mgr 4\nlogging level sksd 4\nlogging level snmpd 4\nlogging level snmpmib_proc 4\nlogging level spanning-tree 4\nlogging level stripcl 4\nlogging level template_manager 4\nlogging level ufdm 4\nlogging level vdc_mgr 4\nlogging level virtual-service 4\nlogging level vlan_mgr 4 \nlogging level vpc 4\nlogging level vshd 4\nlogging level xbar 4\nlogging level xmlma 4\nlogging level urib 4\nlogging level igmp 4\nlogging level mrib 4\nlogging level m6rib 4\nlogging level arp 4\nlogging level clis 4\nlogging level netstack 4\nlogging level bgp 4\nlogging level icmpv6 4\nlogging level adjmgr 4\nlogging level pktmgr 4\nlogging level ecp 4\nlogging level rpm 4\nlogging level smm 4\nlogging level u6rib 4\nlogging level lldp 4\n\nno password strength-check\nusername admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\nusername ntc password 5 $5$vs8QBzjV$RAvg3Ix44L4CHZZJSDagsDPuVLKFkt9bcwliTEM8Lf1 role network-admin\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\nip domain-lookup\nip domain-name infra.ntc.com\nip access-list PERMIT_ROUTES\n 10 permit ip any any \ncopp profile strict\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server user ntc network-admin auth md5 0xa79a86a1599fd860c20300734d2e31d6 priv 0xa79a86a1599fd860c20300734d2e31d6 localizedkey\nsnmp-server user admin auth md5 0x3c0c5d5139941831378b36418799e1cc priv 0x3c0c5d5139941831378b36418799e1cc localizedkey engineID 128:0:0:9:3:82:208:168:0:27:1\nsnmp-server host 10.1.1.1 traps version 2c networktocode\nrmon event 1 description FATAL(1) owner PMON@FATAL\nrmon event 2 description CRITICAL(2) owner PMON@CRITICAL\nrmon event 3 description ERROR(3) owner PMON@ERROR\nrmon event 4 description WARNING(4) owner PMON@WARNING\nrmon event 5 description INFORMATION(5) owner PMON@INFO\nsnmp-server community secure group network-admin\nsnmp-server community networktocode group network-operator\nntp server 10.1.1.1 use-vrf default\nntp server 10.2.2.2 prefer use-vrf default\n\nip route 0.0.0.0/0 10.0.0.2\nvlan 1\n\nroute-map PERMIT_CONN_ROUTES permit 10\n match ip address PERMIT_ROUTES \nvrf context management\n\nlogging level sysmgr 4\nnxapi ssl ciphers weak\nnxapi ssl protocols TLSv1\n\n\ninterface Vlan1\n\ninterface Ethernet1/1\n no switchport\n mac-address 4444.a800.0101\n ip address 10.10.10.6/30\n no shutdown\n\ninterface Ethernet1/2\n no switchport\n mac-address 4444.a801.0001\n ip address 10.10.10.10/30\n no shutdown\n\ninterface Ethernet1/3\n no switchport\n mac-address 4444.a802.1100\n ip address 10.10.10.14/30\n no shutdown\n\ninterface Ethernet1/4\n no switchport\n mac-address 4444.a803.1010\n ip address 10.10.10.18/30\n no shutdown\n\ninterface Ethernet1/5\n no switchport\n mac-address 4444.a804.1110\n ip address 10.10.11.10/30\n no shutdown\n\ninterface Ethernet1/6\n\ninterface Ethernet1/7\n\ninterface Ethernet1/8\n\ninterface Ethernet1/9\n\ninterface Ethernet1/10\n\ninterface Ethernet1/11\n\ninterface Ethernet1/12\n\ninterface Ethernet1/13\n\ninterface Ethernet1/14\n\ninterface Ethernet1/15\n\ninterface Ethernet1/16\n\ninterface Ethernet1/17\n\ninterface Ethernet1/18\n\ninterface Ethernet1/19\n\ninterface Ethernet1/20\n\ninterface Ethernet1/21\n\ninterface Ethernet1/22\n\ninterface Ethernet1/23\n\ninterface Ethernet1/24\n\ninterface Ethernet1/25\n\ninterface Ethernet1/26\n\ninterface Ethernet1/27\n\ninterface Ethernet1/28\n\ninterface Ethernet1/29\n\ninterface Ethernet1/30\n\ninterface Ethernet1/31\n\ninterface Ethernet1/32\n\ninterface Ethernet1/33\n\ninterface Ethernet1/34\n\ninterface Ethernet1/35\n\ninterface Ethernet1/36\n\ninterface Ethernet1/37\n\ninterface Ethernet1/38\n\ninterface Ethernet1/39\n\ninterface Ethernet1/40\n\ninterface Ethernet1/41\n\ninterface Ethernet1/42\n\ninterface Ethernet1/43\n\ninterface Ethernet1/44\n\ninterface Ethernet1/45\n\ninterface Ethernet1/46\n\ninterface Ethernet1/47\n\ninterface Ethernet1/48\n\ninterface Ethernet1/49\n\ninterface Ethernet1/50\n\ninterface Ethernet1/51\n\ninterface Ethernet1/52\n\ninterface Ethernet1/53\n\ninterface Ethernet1/54\n\ninterface Ethernet1/55\n\ninterface Ethernet1/56\n\ninterface Ethernet1/57\n\ninterface Ethernet1/58\n\ninterface Ethernet1/59\n\ninterface Ethernet1/60\n\ninterface Ethernet1/61\n\ninterface Ethernet1/62\n\ninterface Ethernet1/63\n\ninterface Ethernet1/64\n\ninterface mgmt0\n description MANAGEMENT_DO_NOT_CHANGE\n vrf member management\n ip address 10.0.0.15/24\n\ninterface loopback0\n ip address 10.0.10.5/32\nline console\nline vty\nrouter bgp 65250\n router-id 10.0.10.5\n log-neighbor-changes\n address-family ipv4 unicast\n redistribute direct route-map PERMIT_CONN_ROUTES\n neighbor 10.10.10.5\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.9\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.13\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.17\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.11.9\n remote-as 65251\n address-family ipv4 unicast\nlogging level l3vm 4\n\nlogging server 10.125.1.171 6 port 7008\nlogging source-interface mgmt0\nlogging level kernel 4\nlogging level user 4\nlogging level mail 4\nlogging level daemon 4\nlogging level auth 4\nlogging level syslog 4\nlogging level lpr 4\nlogging level news 4\nlogging level uucp 4\nlogging level cron 4\nlogging level authpri 4\nlogging level ftp 4\nlogging level local0 4\nlogging level local1 4\nlogging level local2 4\nlogging level local3 4\nlogging level local4 4\nlogging level local5 4\nlogging level local6 4\nlogging level local7 4\nlogging origin-id hostname\nboot nxos bootflash:/nxos.9.3.3.bin sup-1\n\n\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 version 9.3(3) Bios:version\nhostname jcy-spine-02\nvdc jcy-spine-02 id 1\n\nfeature nxapi\nfeature bash-shell\nfeature scp-server\ncfs eth distribute\nfeature bgp\nfeature interface-vlan\nfeature hsrp\nfeature vpc\nfeature lldp\n\nlogging level aaa 7\nlogging level acllog 4\nlogging level aclmgr 4\nlogging level adbm 4\nlogging level ascii-cfg 4\nlogging level bootvar 4\nlogging level callhome 4\nlogging level capability 4\nlogging level cdp 4\nlogging level cert_enroll 4\nlogging level cfs 4\nlogging level clk_mgr 4\nlogging level confcheck 4\nlogging level copp 4\nlogging level dhclient 4\nlogging level diag_port_lb 4\nlogging level diagclient 4\nlogging level diagmgr 4\nlogging level eltm 4\nlogging level eth_dstats 4\nlogging level eth_port_channel 4\nlogging level ethpm 4\nlogging level evmc 4\nlogging level evms 4\nlogging level feature-mgr 4\nlogging level fs-daemon 4\nlogging level hsrp 4\nlogging level ifmgr 4\nlogging level interface-vlan 4\nlogging level ipfib 4\nlogging level l2fm 4\nlogging level l2pt 4\nlogging level licmgr 4\nlogging level lim 4\nlogging level module 4\nlogging level monitor 4\nlogging level mvsh 4\nlogging level ntp 4\nlogging level otm 4\nlogging level pfstat 4\nlogging level platform 4\nlogging level plcmgr 4\nlogging level plugin 4\nlogging level radius 4\nlogging level res_mgr 4\nlogging level sal 4\nlogging level securityd 4\nlogging level session-mgr 4\nlogging level sksd 4\nlogging level snmpd 4\nlogging level snmpmib_proc 4\nlogging level spanning-tree 4\nlogging level stripcl 4\nlogging level template_manager 4\nlogging level ufdm 4\nlogging level vdc_mgr 4\nlogging level virtual-service 4\nlogging level vlan_mgr 4\nlogging level vpc 4\nlogging level vshd 4\nlogging level xbar 4\nlogging level xmlma 4\nlogging level urib 4\nlogging level igmp 4\nlogging level mrib 4\nlogging level m6rib 4\nlogging level arp 4\nlogging level clis 4\nlogging level netstack 4\nlogging level bgp 4\nlogging level icmpv6 4\nlogging level adjmgr 4\nlogging level pktmgr 4\nlogging level ecp 4\nlogging level rpm 4\nlogging level u6rib 4\nlogging level lldp 4\n\nno password strength-check\nusername admin password 5 role network-admin\nusername ntc password 5 role network-admin\nusername ntc passphrase lifetime 99999 warntime 14 gracetime 3\nip domain-lookup\nip domain-name ntc.com\nip access-list PERMIT_ROUTES\n 10 permit ip any any\ncopp profile strict\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server host 10.1.1.1 traps version 2c networktocode\nsnmp-server community networktocode group network-operator\nsnmp-server community secure group network-admin\nntp server 10.1.1.1 use-vrf default\nntp server 10.2.2.2 prefer use-vrf default\n\nroute-map PERMIT_CONN_ROUTES permit 10\n match ip address PERMIT_ROUTES\nvrf context management\n\nlogging level sysmgr 4\nnxapi ssl ciphers weak\nnxapi ssl protocols TLSv1\n\n\ninterface Ethernet1/1\n no switchport\n ip address 10.10.10.6/30\n\ninterface Ethernet1/2\n no switchport\n ip address 10.10.10.10/30\n\ninterface Ethernet1/3\n no switchport\n ip address 10.10.10.14/30\n\ninterface Ethernet1/4\n no switchport\n ip address 10.10.10.18/30\n\ninterface Ethernet1/5\n no switchport\n ip address 10.10.11.10/30\n\ninterface Ethernet1/6\n\ninterface Ethernet1/7\n\ninterface Ethernet1/8\n\ninterface Ethernet1/9\n\ninterface Ethernet1/10\n\ninterface Ethernet1/11\n\ninterface Ethernet1/12\n\ninterface Ethernet1/13\n\ninterface Ethernet1/14\n\ninterface Ethernet1/15\n\ninterface Ethernet1/16\n\ninterface Ethernet1/17\n\ninterface Ethernet1/18\n\ninterface Ethernet1/19\n\ninterface Ethernet1/20\n\ninterface Ethernet1/21\n\ninterface Ethernet1/22\n\ninterface Ethernet1/23\n\ninterface Ethernet1/24\n\ninterface Ethernet1/25\n\ninterface Ethernet1/26\n\ninterface Ethernet1/27\n\ninterface Ethernet1/28\n\ninterface Ethernet1/29\n\ninterface Ethernet1/30\n\ninterface Ethernet1/31\n\ninterface Ethernet1/32\n\ninterface Ethernet1/33\n\ninterface Ethernet1/34\n\ninterface Ethernet1/35\n\ninterface Ethernet1/36\n\ninterface Ethernet1/37\n\ninterface Ethernet1/38\n\ninterface Ethernet1/39\n\ninterface Ethernet1/40\n\ninterface Ethernet1/41\n\ninterface Ethernet1/42\n\ninterface Ethernet1/43\n\ninterface Ethernet1/44\n\ninterface Ethernet1/45\n\ninterface Ethernet1/46\n\ninterface Ethernet1/47\n\ninterface Ethernet1/48\n\ninterface Ethernet1/49\n\ninterface Ethernet1/50\n\ninterface Ethernet1/51\n\ninterface Ethernet1/52\n\ninterface Ethernet1/53\n\ninterface Ethernet1/54\n\ninterface Ethernet1/55\n\ninterface Ethernet1/56\n\ninterface Ethernet1/57\n\ninterface Ethernet1/58\n\ninterface Ethernet1/59\n\ninterface Ethernet1/60\n\ninterface Ethernet1/61\n\ninterface Ethernet1/62\n\ninterface Ethernet1/63\n\ninterface Ethernet1/64\n\ninterface mgmt0\n vrf member management\n no ip address\n\ninterface loopback0\n ip address 10.0.10.5/32\nline console\nline vty\nrouter bgp 65250\n router-id 10.0.10.5\n log-neighbor-changes\n address-family ipv4 unicast\n redistribute direct route-map PERMIT_CONN_ROUTES\n neighbor 10.10.10.5\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.9\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.13\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.10.17\n remote-as 65250\n address-family ipv4 unicast\n neighbor 10.10.11.9\n remote-as 65251\n address-family ipv4 unicast\n\nlogging server 10.125.1.171 6 port 7008\nlogging level kernel 4\nlogging level user 4\nlogging level mail 4\nlogging level daemon 4\nlogging level auth 4\nlogging level syslog 4\nlogging level lpr 4\nlogging level news 4\nlogging level uucp 4\nlogging level cron 4\nlogging level authpri 4\nlogging level ftp 4\nlogging level local0 4\nlogging level local1 4\nlogging level local2 4\nlogging level local3 4\nlogging level local4 4\nlogging level local5 4\nlogging level local6 4\nlogging level local7 4\nlogging origin-id hostname\nboot nxos bootflash:/nxos.9.3.3.bin sup-1\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,18 +1,6 @@\n-\n\n-!Command: show running-config\n\n-!Running configuration last done at: Wed Mar 10 17:57:45 2021\n\n-!Time: Fri May 28 17:55:58 2021\n\n-\n\n-version 9.3(3) Bios:version \n\n+version 9.3(3) Bios:version\n\n hostname jcy-spine-02\n\n vdc jcy-spine-02 id 1\n\n- limit-resource vlan minimum 16 maximum 4094\n\n- limit-resource vrf minimum 2 maximum 4096\n\n- limit-resource port-channel minimum 0 maximum 511\n\n- limit-resource u4route-mem minimum 128 maximum 128\n\n- limit-resource u6route-mem minimum 96 maximum 96\n\n- limit-resource m4route-mem minimum 58 maximum 58\n\n- limit-resource m6route-mem minimum 8 maximum 8\n\n \n\n feature nxapi\n\n feature bash-shell\n\n@@ -24,7 +12,7 @@\n feature vpc\n\n feature lldp\n\n \n\n-logging level aaa 4\n\n+logging level aaa 7\n\n logging level acllog 4\n\n logging level aclmgr 4\n\n logging level adbm 4\n\n@@ -81,7 +69,7 @@\n logging level ufdm 4\n\n logging level vdc_mgr 4\n\n logging level virtual-service 4\n\n-logging level vlan_mgr 4 \n\n+logging level vlan_mgr 4\n\n logging level vpc 4\n\n logging level vshd 4\n\n logging level xbar 4\n\n@@ -99,39 +87,28 @@\n logging level pktmgr 4\n\n logging level ecp 4\n\n logging level rpm 4\n\n-logging level smm 4\n\n logging level u6rib 4\n\n logging level lldp 4\n\n \n\n no password strength-check\n\n-username admin password 5 $5$MDAMMP$QsQ37KtSkR6G.d89nZcod.gboOauSsDyWNvSa.UT0c2 role network-admin\n\n-username ntc password 5 $5$vs8QBzjV$RAvg3Ix44L4CHZZJSDagsDPuVLKFkt9bcwliTEM8Lf1 role network-admin\n\n+username admin password 5 role network-admin\n\n+username ntc password 5 role network-admin\n\n username ntc passphrase lifetime 99999 warntime 14 gracetime 3\n\n ip domain-lookup\n\n-ip domain-name infra.ntc.com\n\n+ip domain-name ntc.com\n\n ip access-list PERMIT_ROUTES\n\n- 10 permit ip any any \n\n+ 10 permit ip any any\n\n copp profile strict\n\n snmp-server contact John Smith\n\n snmp-server location Network to Code - NYC | NY\n\n-snmp-server user ntc network-admin auth md5 0xa79a86a1599fd860c20300734d2e31d6 priv 0xa79a86a1599fd860c20300734d2e31d6 localizedkey\n\n-snmp-server user admin auth md5 0x3c0c5d5139941831378b36418799e1cc priv 0x3c0c5d5139941831378b36418799e1cc localizedkey engineID 128:0:0:9:3:82:208:168:0:27:1\n\n snmp-server host 10.1.1.1 traps version 2c networktocode\n\n-rmon event 1 description FATAL(1) owner PMON@FATAL\n\n-rmon event 2 description CRITICAL(2) owner PMON@CRITICAL\n\n-rmon event 3 description ERROR(3) owner PMON@ERROR\n\n-rmon event 4 description WARNING(4) owner PMON@WARNING\n\n-rmon event 5 description INFORMATION(5) owner PMON@INFO\n\n+snmp-server community networktocode group network-operator\n\n snmp-server community secure group network-admin\n\n-snmp-server community networktocode group network-operator\n\n ntp server 10.1.1.1 use-vrf default\n\n ntp server 10.2.2.2 prefer use-vrf default\n\n \n\n-ip route 0.0.0.0/0 10.0.0.2\n\n-vlan 1\n\n-\n\n route-map PERMIT_CONN_ROUTES permit 10\n\n- match ip address PERMIT_ROUTES \n\n+ match ip address PERMIT_ROUTES\n\n vrf context management\n\n \n\n logging level sysmgr 4\n\n@@ -139,37 +116,25 @@\n nxapi ssl protocols TLSv1\n\n \n\n \n\n-interface Vlan1\n\n-\n\n interface Ethernet1/1\n\n no switchport\n\n- mac-address 4444.a800.0101\n\n ip address 10.10.10.6/30\n\n- no shutdown\n\n \n\n interface Ethernet1/2\n\n no switchport\n\n- mac-address 4444.a801.0001\n\n ip address 10.10.10.10/30\n\n- no shutdown\n\n \n\n interface Ethernet1/3\n\n no switchport\n\n- mac-address 4444.a802.1100\n\n ip address 10.10.10.14/30\n\n- no shutdown\n\n \n\n interface Ethernet1/4\n\n no switchport\n\n- mac-address 4444.a803.1010\n\n ip address 10.10.10.18/30\n\n- no shutdown\n\n \n\n interface Ethernet1/5\n\n no switchport\n\n- mac-address 4444.a804.1110\n\n ip address 10.10.11.10/30\n\n- no shutdown\n\n \n\n interface Ethernet1/6\n\n \n\n@@ -290,9 +255,8 @@\n interface Ethernet1/64\n\n \n\n interface mgmt0\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n vrf member management\n\n- ip address 10.0.0.15/24\n\n+ no ip address\n\n \n\n interface loopback0\n\n ip address 10.0.10.5/32\n\n@@ -318,10 +282,8 @@\n neighbor 10.10.11.9\n\n remote-as 65251\n\n address-family ipv4 unicast\n\n-logging level l3vm 4\n\n \n\n logging server 10.125.1.171 6 port 7008\n\n-logging source-interface mgmt0\n\n logging level kernel 4\n\n logging level user 4\n\n logging level mail 4\n\n@@ -344,5 +306,3 @@\n logging level local7 4\n\n logging origin-id hostname\n\n boot nxos bootflash:/nxos.9.3.3.bin sup-1\n\n-\n\n-\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 b79eb1e8-3a2c-4d13-b130-92eb82f6b8af +3e5be6fc-0745-4c31-92e1-00a71e0c44ef 2023-09-19 2023-09-19 08:11:02.57844+00 {} set version 18.2R1.9\nset system login class super-user-local idle-timeout 3600\nset system login class super-user-local permissions all\nset system login user ntc uid 2000\nset system login user ntc class super-user-local\nset system login user ntc authentication encrypted-password "$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph."\nset system root-authentication encrypted-password "$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1"\nset system host-name nyc-bb-01\nset system domain-name ntc.com\nset system services ssh\nset system services netconf ssh\nset system services netconf rfc-compliant\nset system syslog user * any emergency\ndeactivate system syslog user *\nset system syslog file messages any notice\nset system syslog file messages authorization info\nset system syslog file interactive-commands interactive-commands any\nset chassis fpc 0 pic 0 number-of-ports 20\nset chassis fpc 0 lite-mode\nset interfaces ge-0/0/0 unit 0 family inet address 10.10.0.22/30\nset interfaces ge-0/0/1 unit 0 family inet\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.30/30\nset interfaces ge-0/0/3 unit 0 family inet address 10.10.0.18/30\nset interfaces ge-0/0/4 unit 0 family inet\nset interfaces ge-0/0/5 unit 0 family inet\nset interfaces ge-0/0/6 unit 0 family inet\nset interfaces ge-0/0/7 unit 0 family inet\nset interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24\nset interfaces lo0 unit 0 family inet address 10.0.20.3/32\nset snmp view system-include oid .1 include\nset snmp community networktocode view system-include\nset snmp community networktocode authorization read-only\nset snmp community secure view system-include\nset snmp community secure authorization read-write\nset protocols bgp local-as 65252\nset protocols bgp group p2p export send-direct\nset protocols bgp group p2p neighbor 10.10.0.17 peer-as 65251\nset protocols bgp group p2p neighbor 10.10.0.21 peer-as 65252\nset protocols bgp group p2p neighbor 10.10.0.29 peer-as 65252\nset protocols lldp transmit-delay 5\nset protocols lldp port-id-subtype interface-name\nset protocols lldp interface all\nset protocols lldp interface fxp0\nset policy-options policy-statement send-direct term 1 from protocol direct\nset policy-options policy-statement send-direct term 1 then accept\nset routing-instances mgmt_junos description "Management VRF"\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 set version 18.2R1.9\nset system login class super-user-local idle-timeout 3600\nset system login class super-user-local permissions all\nset system login user ntc uid 2000\nset system login user ntc class super-user-local\nset system login user ntc authentication encrypted-password "$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph."\nset system root-authentication encrypted-password "$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1"\nset system host-name nyc-bb-01\nset system domain-name ntc.com\nset system services ssh\nset system services netconf ssh\nset system services netconf rfc-compliant\nset system syslog user * any emergency\ndeactivate system syslog user *\nset system syslog file messages any notice\nset system syslog file messages authorization info\nset system syslog file interactive-commands interactive-commands any\nset chassis fpc 0 pic 0 number-of-ports 20\nset chassis fpc 0 lite-mode\nset interfaces ge-0/0/0 unit 0 family inet address 10.10.0.22/30\nset interfaces ge-0/0/1 unit 0 family inet\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.30/30\nset interfaces ge-0/0/3 unit 0 family inet address 10.10.0.18/30\nset interfaces ge-0/0/4 unit 0 family inet\nset interfaces ge-0/0/5 unit 0 family inet\nset interfaces ge-0/0/6 unit 0 family inet\nset interfaces ge-0/0/7 unit 0 family inet\nset interfaces ge-0/0/8 unit 0 family inet\nset interfaces ge-0/0/9 unit 0 family inet\nset interfaces ge-0/0/10 unit 0 family inet\nset interfaces ge-0/0/11 unit 0 family inet\nset interfaces ge-0/0/12 unit 0 family inet\nset interfaces ge-0/0/13 unit 0 family inet\nset interfaces ge-0/0/14 unit 0 family inet\nset interfaces ge-0/0/15 unit 0 family inet\nset interfaces ge-0/0/16 unit 0 family inet\nset interfaces ge-0/0/17 unit 0 family inet\nset interfaces ge-0/0/18 unit 0 family inet\nset interfaces ge-0/0/19 unit 0 family inet\nset interfaces fxp0 unit 0 family inet\nset interfaces lo0 unit 0 family inet address 10.0.20.3/32\nset protocols bgp local-as 65252\nset protocols bgp group p2p export send-direct\nset protocols bgp group p2p neighbor 10.10.0.17 peer-as 65251\nset protocols bgp group p2p neighbor 10.10.0.21 peer-as 65252\nset protocols bgp group p2p neighbor 10.10.0.29 peer-as 65252\nset protocols lldp transmit-delay 5\nset protocols lldp port-id-subtype interface-name\nset protocols lldp interface all\nset protocols lldp interface fxp0\nset policy-options policy-statement send-direct term 1 from protocol direct\nset policy-options policy-statement send-direct term 1 then accept\nset routing-instances mgmt_junos description "Management VRF" 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -25,14 +25,20 @@\n set interfaces ge-0/0/5 unit 0 family inet\n\n set interfaces ge-0/0/6 unit 0 family inet\n\n set interfaces ge-0/0/7 unit 0 family inet\n\n-set interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\n\n-set interfaces fxp0 unit 0 family inet address 10.0.0.15/24\n\n+set interfaces ge-0/0/8 unit 0 family inet\n\n+set interfaces ge-0/0/9 unit 0 family inet\n\n+set interfaces ge-0/0/10 unit 0 family inet\n\n+set interfaces ge-0/0/11 unit 0 family inet\n\n+set interfaces ge-0/0/12 unit 0 family inet\n\n+set interfaces ge-0/0/13 unit 0 family inet\n\n+set interfaces ge-0/0/14 unit 0 family inet\n\n+set interfaces ge-0/0/15 unit 0 family inet\n\n+set interfaces ge-0/0/16 unit 0 family inet\n\n+set interfaces ge-0/0/17 unit 0 family inet\n\n+set interfaces ge-0/0/18 unit 0 family inet\n\n+set interfaces ge-0/0/19 unit 0 family inet\n\n+set interfaces fxp0 unit 0 family inet\n\n set interfaces lo0 unit 0 family inet address 10.0.20.3/32\n\n-set snmp view system-include oid .1 include\n\n-set snmp community networktocode view system-include\n\n-set snmp community networktocode authorization read-only\n\n-set snmp community secure view system-include\n\n-set snmp community secure authorization read-write\n\n set protocols bgp local-as 65252\n\n set protocols bgp group p2p export send-direct\n\n set protocols bgp group p2p neighbor 10.10.0.17 peer-as 65251\n\n@@ -44,4 +50,4 @@\n set protocols lldp interface fxp0\n\n set policy-options policy-statement send-direct term 1 from protocol direct\n\n set policy-options policy-statement send-direct term 1 then accept\n\n-set routing-instances mgmt_junos description "Management VRF"\n\n+set routing-instances mgmt_junos description "Management VRF" 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 4f1092db-761d-4ae6-9d20-275e186b67ea +45e9691a-f2a0-40b0-9baf-59cc4a312faf 2023-09-19 2023-09-19 08:11:02.582237+00 {} ! Command: show running-config\n! device: nyc-leaf-01 (vEOS, EOS-4.22.4M)\n!\n! boot system flash:/vEOS-lab.swi\n!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=apiserver.arista.io:443 -cvcompression=gzip -taillogs -cvauth=token,/tmp/cv-onboarding-token -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-leaf-01\nip name-server vrf default 172.18.0.4\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n!\ninterface Ethernet1\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.14/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.18/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.6/32\n!\ninterface Management1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15/24\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65254\n router-id 10.0.20.6\n neighbor 10.11.11.13 remote-as 65253\n neighbor 10.11.11.13 maximum-routes 12000\n neighbor 10.11.11.21 remote-as 65253\n neighbor 10.11.11.21 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 !\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\nlogging facility local6\nlogging source-interface Management1\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-leaf-01\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n!\ninterface Ethernet1\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.14/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.22/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.6/32\ninterface Management1\n no ip address\n\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65254\n router-id 10.0.20.6\n neighbor 10.11.11.13 remote-as 65253\n neighbor 10.11.11.13 maximum-routes 12000\n neighbor 10.11.11.21 remote-as 65253\n neighbor 10.11.11.21 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,15 +1,11 @@\n-! Command: show running-config\n\n-! device: nyc-leaf-01 (vEOS, EOS-4.22.4M)\n\n !\n\n-! boot system flash:/vEOS-lab.swi\n\n-!\n\n-daemon TerminAttr\n\n- exec /usr/bin/TerminAttr -cvaddr=apiserver.arista.io:443 -cvcompression=gzip -taillogs -cvauth=token,/tmp/cv-onboarding-token -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent\n\n !\n\n transceiver qsfp default-mode 4x10G\n\n !\n\n logging host 10.125.1.171 7002\n\n logging format hostname fqdn\n\n+logging facility local6\n\n+logging source-interface Management1\n\n !\n\n logging level AAA informational\n\n logging level ACCOUNTING informational\n\n@@ -109,16 +105,15 @@\n logging level ZTP informational\n\n !\n\n hostname nyc-leaf-01\n\n-ip name-server vrf default 172.18.0.4\n\n ip domain-name infra.ntc.com\n\n !\n\n ntp server 10.1.1.1\n\n ntp server 10.2.2.2 prefer\n\n !\n\n-snmp-server contact John Smith\n\n-snmp-server location Network to Code - NYC | NY\n\n snmp-server community networktocode ro\n\n snmp-server community secure rw\n\n+snmp-server location Network to Code - NYC | NY\n\n+snmp-server contact John Smith\n\n snmp-server host 10.1.1.1 version 2c networktocode\n\n !\n\n spanning-tree mode mstp\n\n@@ -137,7 +132,7 @@\n !\n\n interface Ethernet3\n\n no switchport\n\n- ip address 10.11.11.18/30\n\n+ ip address 10.11.11.22/30\n\n !\n\n interface Ethernet4\n\n !\n\n@@ -173,10 +168,9 @@\n !\n\n interface Loopback0\n\n ip address 10.0.20.6/32\n\n-!\n\n interface Management1\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n- ip address 10.0.0.15/24\n\n+ no ip address\n\n+\n\n !\n\n ip route 0.0.0.0/0 10.0.0.2\n\n !\n\n@@ -199,4 +193,4 @@\n transport grpc default\n\n port 830\n\n !\n\n-end\n\n+end 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 b99c3111-0b6d-4a36-8207-45d2d00e7e37 +33134ae4-5fda-45c8-bab3-ceb10fb8b766 2023-09-19 2023-09-19 08:11:02.586054+00 {} ! Command: show running-config\n! device: nyc-leaf-02 (vEOS, EOS-4.22.4M)\n!\n! boot system flash:/vEOS-lab.swi\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-leaf-02\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$Hm2oBDqw43WgKJ8/$JZjDIdhIAj7Ml2vEJshFJfJL.riNQg6scPJzStuWuty80wQ4RgH0UwBiUE7/uQKRUkTfo6clUSQIixKyrKtkI/\n!\ninterface Ethernet1\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.18/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.26/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.7/32\n!\ninterface Management1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15/24\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65255\n router-id 10.0.20.7\n neighbor 10.11.11.17 remote-as 65253\n neighbor 10.11.11.17 maximum-routes 12000\n neighbor 10.11.11.25 remote-as 65253\n neighbor 10.11.11.25 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 !\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\nlogging facility local6\nlogging source-interface Management1\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-leaf-02\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n!\ninterface Ethernet1\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.18/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.26/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.7/32\ninterface Management1\n no ip address\n\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65255\n router-id 10.0.20.7\n neighbor 10.11.11.17 remote-as 65253\n neighbor 10.11.11.17 maximum-routes 12000\n neighbor 10.11.11.25 remote-as 65253\n neighbor 10.11.11.25 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,12 +1,11 @@\n-! Command: show running-config\n\n-! device: nyc-leaf-02 (vEOS, EOS-4.22.4M)\n\n !\n\n-! boot system flash:/vEOS-lab.swi\n\n !\n\n transceiver qsfp default-mode 4x10G\n\n !\n\n logging host 10.125.1.171 7002\n\n logging format hostname fqdn\n\n+logging facility local6\n\n+logging source-interface Management1\n\n !\n\n logging level AAA informational\n\n logging level ACCOUNTING informational\n\n@@ -111,10 +110,10 @@\n ntp server 10.1.1.1\n\n ntp server 10.2.2.2 prefer\n\n !\n\n-snmp-server contact John Smith\n\n-snmp-server location Network to Code - NYC | NY\n\n snmp-server community networktocode ro\n\n snmp-server community secure rw\n\n+snmp-server location Network to Code - NYC | NY\n\n+snmp-server contact John Smith\n\n snmp-server host 10.1.1.1 version 2c networktocode\n\n !\n\n spanning-tree mode mstp\n\n@@ -123,7 +122,7 @@\n !\n\n no aaa root\n\n !\n\n-username ntc privilege 15 secret sha512 $6$Hm2oBDqw43WgKJ8/$JZjDIdhIAj7Ml2vEJshFJfJL.riNQg6scPJzStuWuty80wQ4RgH0UwBiUE7/uQKRUkTfo6clUSQIixKyrKtkI/\n\n+username ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n\n !\n\n interface Ethernet1\n\n !\n\n@@ -169,10 +168,9 @@\n !\n\n interface Loopback0\n\n ip address 10.0.20.7/32\n\n-!\n\n interface Management1\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n- ip address 10.0.0.15/24\n\n+ no ip address\n\n+\n\n !\n\n ip route 0.0.0.0/0 10.0.0.2\n\n !\n\n@@ -195,4 +193,4 @@\n transport grpc default\n\n port 830\n\n !\n\n-end\n\n+end 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 6edfd26a-e76c-40e8-ba15-9eb4f6eab3d1 +150cb36f-6146-4c52-a370-48f61a76e306 2023-09-19 2023-09-19 08:11:02.590088+00 {} set version 18.2R1.9\nset system login class super-user-local idle-timeout 3600\nset system login class super-user-local permissions all\nset system login user ntc uid 2000\nset system login user ntc class super-user-local\nset system login user ntc authentication encrypted-password "$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph."\nset system root-authentication encrypted-password "$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1"\nset system host-name nyc-rtr-01\nset system domain-name ntc.com\nset system services ssh\nset system services netconf ssh\nset system services netconf rfc-compliant\nset system syslog user * any emergency\ndeactivate system syslog user *\nset system syslog file messages any notice\nset system syslog file messages authorization info\nset system syslog file interactive-commands interactive-commands any\nset chassis fpc 0 pic 0 number-of-ports 20\nset chassis fpc 0 lite-mode\nset interfaces ge-0/0/0 unit 0 family inet address 10.10.0.21/30\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.25/30\nset interfaces ge-0/0/2 unit 0 family inet\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.5/30\nset interfaces ge-0/0/4 unit 0 family inet\nset interfaces ge-0/0/5 unit 0 family inet\nset interfaces ge-0/0/6 unit 0 family inet\nset interfaces ge-0/0/7 unit 0 family inet\nset interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24\nset interfaces lo0 unit 0 family inet address 10.0.20.1/32\nset snmp view system-include oid .1 include\nset snmp community networktocode view system-include\nset snmp community networktocode authorization read-only\nset snmp community secure view system-include\nset snmp community secure authorization read-write\nset protocols bgp local-as 65252\nset protocols bgp group p2p export send-direct\nset protocols bgp group p2p neighbor 10.10.0.22 peer-as 65252\nset protocols bgp group p2p neighbor 10.10.0.26 peer-as 65252\nset protocols bgp group p2p neighbor 10.11.11.6 peer-as 65253\nset protocols lldp transmit-delay 5\nset protocols lldp port-id-subtype interface-name\nset protocols lldp interface all\nset protocols lldp interface fxp0\nset policy-options policy-statement send-direct term 1 from protocol direct\nset policy-options policy-statement send-direct term 1 then accept\nset routing-instances mgmt_junos description "Management VRF"\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 set version 18.2R1.9\nset system login class super-user-local idle-timeout 3600\nset system login class super-user-local permissions all\nset system login user ntc uid 2000\nset system login user ntc class super-user-local\nset system login user ntc authentication encrypted-password "$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph."\nset system root-authentication encrypted-password "$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1"\nset system host-name nyc-rtr-01\nset system domain-name ntc.com\nset system services ssh\nset system services netconf ssh\nset system services netconf rfc-compliant\nset system syslog user * any emergency\ndeactivate system syslog user *\nset system syslog file messages any notice\nset system syslog file messages authorization info\nset system syslog file interactive-commands interactive-commands any\nset chassis fpc 0 pic 0 number-of-ports 20\nset chassis fpc 0 lite-mode\nset interfaces ge-0/0/0 unit 0 family inet address 10.10.0.21/30\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.25/30\nset interfaces ge-0/0/2 unit 0 family inet\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.5/30\nset interfaces ge-0/0/4 unit 0 family inet\nset interfaces ge-0/0/5 unit 0 family inet\nset interfaces ge-0/0/6 unit 0 family inet\nset interfaces ge-0/0/7 unit 0 family inet\nset interfaces ge-0/0/8 unit 0 family inet\nset interfaces ge-0/0/9 unit 0 family inet\nset interfaces ge-0/0/10 unit 0 family inet\nset interfaces ge-0/0/11 unit 0 family inet\nset interfaces ge-0/0/12 unit 0 family inet\nset interfaces ge-0/0/13 unit 0 family inet\nset interfaces ge-0/0/14 unit 0 family inet\nset interfaces ge-0/0/15 unit 0 family inet\nset interfaces ge-0/0/16 unit 0 family inet\nset interfaces ge-0/0/17 unit 0 family inet\nset interfaces ge-0/0/18 unit 0 family inet\nset interfaces ge-0/0/19 unit 0 family inet\nset interfaces fxp0 unit 0 family inet\nset interfaces lo0 unit 0 family inet address 10.0.20.1/32\nset protocols bgp local-as 65252\nset protocols bgp group p2p export send-direct\nset protocols bgp group p2p neighbor 10.10.0.22 peer-as 65252\nset protocols bgp group p2p neighbor 10.10.0.26 peer-as 65252\nset protocols bgp group p2p neighbor 10.11.11.6 peer-as 65253\nset protocols lldp transmit-delay 5\nset protocols lldp port-id-subtype interface-name\nset protocols lldp interface all\nset protocols lldp interface fxp0\nset policy-options policy-statement send-direct term 1 from protocol direct\nset policy-options policy-statement send-direct term 1 then accept\nset routing-instances mgmt_junos description "Management VRF" 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -25,14 +25,20 @@\n set interfaces ge-0/0/5 unit 0 family inet\n\n set interfaces ge-0/0/6 unit 0 family inet\n\n set interfaces ge-0/0/7 unit 0 family inet\n\n-set interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\n\n-set interfaces fxp0 unit 0 family inet address 10.0.0.15/24\n\n+set interfaces ge-0/0/8 unit 0 family inet\n\n+set interfaces ge-0/0/9 unit 0 family inet\n\n+set interfaces ge-0/0/10 unit 0 family inet\n\n+set interfaces ge-0/0/11 unit 0 family inet\n\n+set interfaces ge-0/0/12 unit 0 family inet\n\n+set interfaces ge-0/0/13 unit 0 family inet\n\n+set interfaces ge-0/0/14 unit 0 family inet\n\n+set interfaces ge-0/0/15 unit 0 family inet\n\n+set interfaces ge-0/0/16 unit 0 family inet\n\n+set interfaces ge-0/0/17 unit 0 family inet\n\n+set interfaces ge-0/0/18 unit 0 family inet\n\n+set interfaces ge-0/0/19 unit 0 family inet\n\n+set interfaces fxp0 unit 0 family inet\n\n set interfaces lo0 unit 0 family inet address 10.0.20.1/32\n\n-set snmp view system-include oid .1 include\n\n-set snmp community networktocode view system-include\n\n-set snmp community networktocode authorization read-only\n\n-set snmp community secure view system-include\n\n-set snmp community secure authorization read-write\n\n set protocols bgp local-as 65252\n\n set protocols bgp group p2p export send-direct\n\n set protocols bgp group p2p neighbor 10.10.0.22 peer-as 65252\n\n@@ -44,4 +50,4 @@\n set protocols lldp interface fxp0\n\n set policy-options policy-statement send-direct term 1 from protocol direct\n\n set policy-options policy-statement send-direct term 1 then accept\n\n-set routing-instances mgmt_junos description "Management VRF"\n\n+set routing-instances mgmt_junos description "Management VRF" 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 919660c6-0654-4904-9cf5-61a03cc069c3 +c8b1d4d9-7761-4a25-90e2-d8de5f6afaee 2023-09-19 2023-09-19 08:11:02.593631+00 {} set version 18.2R1.9\nset system login class super-user-local idle-timeout 3600\nset system login class super-user-local permissions all\nset system login user ntc uid 2000\nset system login user ntc class super-user-local\nset system login user ntc authentication encrypted-password "$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph."\nset system root-authentication encrypted-password "$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1"\nset system host-name nyc-rtr-02\nset system domain-name ntc.com\nset system services ssh\nset system services netconf ssh\nset system services netconf rfc-compliant\nset system syslog user * any emergency\ndeactivate system syslog user *\nset system syslog file messages any notice\nset system syslog file messages authorization info\nset system syslog file interactive-commands interactive-commands any\nset chassis fpc 0 pic 0 number-of-ports 20\nset chassis fpc 0 lite-mode\nset interfaces ge-0/0/0 unit 0 family inet\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.26/30\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.29/30\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.9/30\nset interfaces ge-0/0/4 unit 0 family inet\nset interfaces ge-0/0/5 unit 0 family inet\nset interfaces ge-0/0/6 unit 0 family inet\nset interfaces ge-0/0/7 unit 0 family inet\nset interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\nset interfaces fxp0 unit 0 family inet address 10.0.0.15/24\nset interfaces lo0 unit 0 family inet address 10.0.20.2/32\nset snmp view system-include oid .1 include\nset snmp community networktocode view system-include\nset snmp community networktocode authorization read-only\nset snmp community secure view system-include\nset snmp community secure authorization read-write\nset protocols bgp local-as 65252\nset protocols bgp group p2p export send-direct\nset protocols bgp group p2p neighbor 10.10.0.30 peer-as 65252\nset protocols bgp group p2p neighbor 10.10.0.25 peer-as 65252\nset protocols bgp group p2p neighbor 10.11.11.10 peer-as 65253\nset protocols lldp transmit-delay 5\nset protocols lldp port-id-subtype interface-name\nset protocols lldp interface all\nset protocols lldp interface fxp0\nset policy-options policy-statement send-direct term 1 from protocol direct\nset policy-options policy-statement send-direct term 1 then accept\nset routing-instances mgmt_junos description "Management VRF"\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 set version 18.2R1.9\nset system login class super-user-local idle-timeout 3600\nset system login class super-user-local permissions all\nset system login user ntc uid 2000\nset system login user ntc class super-user-local\nset system login user ntc authentication encrypted-password "$6$SMc6x4tb$Tc5YB7j/aFopl83C/a8w0ULBphIwSz8ckMgANOC8.2p9qJWKwKat1VKRWKTYihtYEu9W1aRN0PN35aOTYLmph."\nset system root-authentication encrypted-password "$6$Z5pgyCKJ$XFMRbBTMD.RjKlOtzCyUjcumTSnXDv6iX2HvhYr9dF3fJXsJeTP5Vms0lN7BzaQHyh8.nwUmsF.OBgBm/G.Dz1"\nset system host-name nyc-rtr-02\nset system domain-name ntc.com\nset system services ssh\nset system services netconf ssh\nset system services netconf rfc-compliant\nset system syslog user * any emergency\ndeactivate system syslog user *\nset system syslog file messages any notice\nset system syslog file messages authorization info\nset system syslog file interactive-commands interactive-commands any\nset chassis fpc 0 pic 0 number-of-ports 20\nset chassis fpc 0 lite-mode\nset interfaces ge-0/0/0 unit 0 family inet\nset interfaces ge-0/0/1 unit 0 family inet address 10.10.0.26/30\nset interfaces ge-0/0/2 unit 0 family inet address 10.10.0.29/30\nset interfaces ge-0/0/3 unit 0 family inet address 10.11.11.9/30\nset interfaces ge-0/0/4 unit 0 family inet\nset interfaces ge-0/0/5 unit 0 family inet\nset interfaces ge-0/0/6 unit 0 family inet\nset interfaces ge-0/0/7 unit 0 family inet\nset interfaces ge-0/0/8 unit 0 family inet\nset interfaces ge-0/0/9 unit 0 family inet\nset interfaces ge-0/0/10 unit 0 family inet\nset interfaces ge-0/0/11 unit 0 family inet\nset interfaces ge-0/0/12 unit 0 family inet\nset interfaces ge-0/0/13 unit 0 family inet\nset interfaces ge-0/0/14 unit 0 family inet\nset interfaces ge-0/0/15 unit 0 family inet\nset interfaces ge-0/0/16 unit 0 family inet\nset interfaces ge-0/0/17 unit 0 family inet\nset interfaces ge-0/0/18 unit 0 family inet\nset interfaces ge-0/0/19 unit 0 family inet\nset interfaces fxp0 unit 0 family inet\nset interfaces lo0 unit 0 family inet address 10.0.20.2/32\nset protocols bgp local-as 65252\nset protocols bgp group p2p export send-direct\nset protocols bgp group p2p neighbor 10.10.0.30 peer-as 65252\nset protocols bgp group p2p neighbor 10.10.0.25 peer-as 65252\nset protocols bgp group p2p neighbor 10.11.11.10 peer-as 65253\nset protocols lldp transmit-delay 5\nset protocols lldp port-id-subtype interface-name\nset protocols lldp interface all\nset protocols lldp interface fxp0\nset policy-options policy-statement send-direct term 1 from protocol direct\nset policy-options policy-statement send-direct term 1 then accept\nset routing-instances mgmt_junos description "Management VRF" 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -25,14 +25,20 @@\n set interfaces ge-0/0/5 unit 0 family inet\n\n set interfaces ge-0/0/6 unit 0 family inet\n\n set interfaces ge-0/0/7 unit 0 family inet\n\n-set interfaces fxp0 unit 0 description MANAGEMENT_INTEFACE__DO_NOT_CHANGE\n\n-set interfaces fxp0 unit 0 family inet address 10.0.0.15/24\n\n+set interfaces ge-0/0/8 unit 0 family inet\n\n+set interfaces ge-0/0/9 unit 0 family inet\n\n+set interfaces ge-0/0/10 unit 0 family inet\n\n+set interfaces ge-0/0/11 unit 0 family inet\n\n+set interfaces ge-0/0/12 unit 0 family inet\n\n+set interfaces ge-0/0/13 unit 0 family inet\n\n+set interfaces ge-0/0/14 unit 0 family inet\n\n+set interfaces ge-0/0/15 unit 0 family inet\n\n+set interfaces ge-0/0/16 unit 0 family inet\n\n+set interfaces ge-0/0/17 unit 0 family inet\n\n+set interfaces ge-0/0/18 unit 0 family inet\n\n+set interfaces ge-0/0/19 unit 0 family inet\n\n+set interfaces fxp0 unit 0 family inet\n\n set interfaces lo0 unit 0 family inet address 10.0.20.2/32\n\n-set snmp view system-include oid .1 include\n\n-set snmp community networktocode view system-include\n\n-set snmp community networktocode authorization read-only\n\n-set snmp community secure view system-include\n\n-set snmp community secure authorization read-write\n\n set protocols bgp local-as 65252\n\n set protocols bgp group p2p export send-direct\n\n set protocols bgp group p2p neighbor 10.10.0.30 peer-as 65252\n\n@@ -44,4 +50,4 @@\n set protocols lldp interface fxp0\n\n set policy-options policy-statement send-direct term 1 from protocol direct\n\n set policy-options policy-statement send-direct term 1 then accept\n\n-set routing-instances mgmt_junos description "Management VRF"\n\n+set routing-instances mgmt_junos description "Management VRF" 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 c8fef37f-699a-4f5a-b228-495cb5702a43 +187ea26b-5a8c-4f17-b985-910b91ae8451 2023-09-19 2023-09-19 08:11:02.597303+00 {} ! Command: show running-config\n! device: nyc-spine-01 (vEOS, EOS-4.22.4M)\n!\n! boot system flash:/vEOS-lab.swi\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-spine-01\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$pE5h.iNjTivxKHaV$TW7CKUWP5YLQANyqliRuumMVLi6lEP7a3kKGv8MWduRTRNoTWSe4jiHRvHxko0UbfiixGCkA.zFaKNfKBdeK./\n!\ninterface Ethernet1\n no switchport\n ip address 10.11.11.6/30\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.13/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.17/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.4/32\n!\ninterface Management1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15/24\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65253\n router-id 10.0.20.4\n neighbor 10.11.11.5 remote-as 65252\n neighbor 10.11.11.5 maximum-routes 12000\n neighbor 10.11.11.14 remote-as 65254\n neighbor 10.11.11.14 maximum-routes 12000\n neighbor 10.11.11.18 remote-as 65255\n neighbor 10.11.11.18 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 !\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\nlogging facility local6\nlogging source-interface Management1\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-spine-01\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n!\ninterface Ethernet1\n no switchport\n ip address 10.11.11.6/30\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.13/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.17/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.4/32\ninterface Management1\n no ip address\n\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65253\n router-id 10.0.20.4\n neighbor 10.11.11.5 remote-as 65252\n neighbor 10.11.11.5 maximum-routes 12000\n neighbor 10.11.11.14 remote-as 65254\n neighbor 10.11.11.14 maximum-routes 12000\n neighbor 10.11.11.18 remote-as 65255\n neighbor 10.11.11.18 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,12 +1,11 @@\n-! Command: show running-config\n\n-! device: nyc-spine-01 (vEOS, EOS-4.22.4M)\n\n-!\n\n-! boot system flash:/vEOS-lab.swi\n\n+!\n\n !\n\n transceiver qsfp default-mode 4x10G\n\n !\n\n logging host 10.125.1.171 7002\n\n logging format hostname fqdn\n\n+logging facility local6\n\n+logging source-interface Management1\n\n !\n\n logging level AAA informational\n\n logging level ACCOUNTING informational\n\n@@ -111,10 +110,10 @@\n ntp server 10.1.1.1\n\n ntp server 10.2.2.2 prefer\n\n !\n\n-snmp-server contact John Smith\n\n-snmp-server location Network to Code - NYC | NY\n\n snmp-server community networktocode ro\n\n snmp-server community secure rw\n\n+snmp-server location Network to Code - NYC | NY\n\n+snmp-server contact John Smith\n\n snmp-server host 10.1.1.1 version 2c networktocode\n\n !\n\n spanning-tree mode mstp\n\n@@ -123,7 +122,7 @@\n !\n\n no aaa root\n\n !\n\n-username ntc privilege 15 secret sha512 $6$pE5h.iNjTivxKHaV$TW7CKUWP5YLQANyqliRuumMVLi6lEP7a3kKGv8MWduRTRNoTWSe4jiHRvHxko0UbfiixGCkA.zFaKNfKBdeK./\n\n+username ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n\n !\n\n interface Ethernet1\n\n no switchport\n\n@@ -171,10 +170,9 @@\n !\n\n interface Loopback0\n\n ip address 10.0.20.4/32\n\n-!\n\n interface Management1\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n- ip address 10.0.0.15/24\n\n+ no ip address\n\n+\n\n !\n\n ip route 0.0.0.0/0 10.0.0.2\n\n !\n\n@@ -199,4 +197,4 @@\n transport grpc default\n\n port 830\n\n !\n\n-end\n\n+end 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 be8b5ac0-0df7-4eff-90f1-4c86f16c362e +434ae8f0-5e2a-4bab-a1e1-fb16b60bea2b 2023-09-19 2023-09-19 08:11:02.601215+00 {} ! Command: show running-config\n! device: nyc-spine-02 (vEOS, EOS-4.22.4M)\n!\n! boot system flash:/vEOS-lab.swi\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-spine-02\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server contact John Smith\nsnmp-server location Network to Code - NYC | NY\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$fP4nSv5mDAZuSc8m$IfxuiIwiJSLAkfR5NAKomL1DcPhie5kMwGoS7VvY/ILSG6b0LUQI2RqM1x5mXhBj14U1DqXppZXV2pV5JUG1J/\n!\ninterface Ethernet1\n no switchport\n ip address 10.11.11.10/30\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.21/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.25/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.5/32\n!\ninterface Management1\n description MANAGEMENT_DO_NOT_CHANGE\n ip address 10.0.0.15/24\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65253\n router-id 10.0.20.5\n neighbor 10.11.11.9 remote-as 65252\n neighbor 10.11.11.9 maximum-routes 12000\n neighbor 10.11.11.22 remote-as 65254\n neighbor 10.11.11.22 maximum-routes 12000\n neighbor 10.11.11.26 remote-as 65255\n neighbor 10.11.11.26 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend\n 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 !\n!\ntransceiver qsfp default-mode 4x10G\n!\nlogging host 10.125.1.171 7002\nlogging format hostname fqdn\nlogging facility local6\nlogging source-interface Management1\n!\nlogging level AAA informational\nlogging level ACCOUNTING informational\nlogging level ACL informational\nlogging level AGENT informational\nlogging level ALE informational\nlogging level ARP informational\nlogging level BFD informational\nlogging level BGP informational\nlogging level BMP informational\nlogging level CAPACITY informational\nlogging level CAPI informational\nlogging level CLEAR informational\nlogging level CVX informational\nlogging level DATAPLANE informational\nlogging level DHCP informational\nlogging level DOT1X informational\nlogging level DSCP informational\nlogging level ENVMON informational\nlogging level ETH informational\nlogging level EVENTMON informational\nlogging level EXTENSION informational\nlogging level FHRP informational\nlogging level FLOW informational\nlogging level FORWARDING informational\nlogging level FRU informational\nlogging level FWK informational\nlogging level GMP informational\nlogging level HARDWARE informational\nlogging level HEALTH informational\nlogging level HTTPSERVICE informational\nlogging level IGMP informational\nlogging level IGMPSNOOPING informational\nlogging level INT informational\nlogging level INTF informational\nlogging level IP6ROUTING informational\nlogging level IPRIB informational\nlogging level IRA informational\nlogging level ISIS informational\nlogging level KERNELFIB informational\nlogging level LACP informational\nlogging level LAG informational\nlogging level LAUNCHER informational\nlogging level LDP informational\nlogging level LICENSE informational\nlogging level LINEPROTO informational\nlogging level LLDP informational\nlogging level LOGMGR informational\nlogging level LOOPBACK informational\nlogging level LOOPPROTECT informational\nlogging level MAPREDUCEMONITOR informational\nlogging level MIRRORING informational\nlogging level MKA informational\nlogging level MLAG informational\nlogging level MMODE informational\nlogging level MROUTE informational\nlogging level MRP informational\nlogging level MSDP informational\nlogging level MSRP informational\nlogging level MSSPOLICYMONITOR informational\nlogging level MVRP informational\nlogging level NAT informational\nlogging level OPENCONFIG informational\nlogging level OPENFLOW informational\nlogging level OSPF informational\nlogging level OSPF3 informational\nlogging level PACKAGE informational\nlogging level PFC informational\nlogging level PIMBSR informational\nlogging level PORTSECURITY informational\nlogging level PTP informational\nlogging level PWRMGMT informational\nlogging level QOS informational\nlogging level QUEUEMONITOR informational\nlogging level REDUNDANCY informational\nlogging level RIB informational\nlogging level ROUTING informational\nlogging level SECURITY informational\nlogging level SERVERMONITOR informational\nlogging level SPANTREE informational\nlogging level SSO informational\nlogging level STAGEMGR informational\nlogging level SYS informational\nlogging level SYSDB informational\nlogging level TAPAGG informational\nlogging level TCP informational\nlogging level TRANSCEIVER informational\nlogging level TUNNEL informational\nlogging level TUNNELINTF informational\nlogging level VMTRACERSESS informational\nlogging level VMWAREVI informational\nlogging level VMWAREVS informational\nlogging level VRF informational\nlogging level VRRP informational\nlogging level VXLAN informational\nlogging level XMPP informational\nlogging level ZTP informational\n!\nhostname nyc-spine-02\nip domain-name infra.ntc.com\n!\nntp server 10.1.1.1\nntp server 10.2.2.2 prefer\n!\nsnmp-server community networktocode ro\nsnmp-server community secure rw\nsnmp-server location Network to Code - NYC | NY\nsnmp-server contact John Smith\nsnmp-server host 10.1.1.1 version 2c networktocode\n!\nspanning-tree mode mstp\n!\naaa authorization exec default local\n!\nno aaa root\n!\nusername ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n!\ninterface Ethernet1\n no switchport\n ip address 10.11.11.10/30\n!\ninterface Ethernet2\n no switchport\n ip address 10.11.11.21/30\n!\ninterface Ethernet3\n no switchport\n ip address 10.11.11.25/30\n!\ninterface Ethernet4\n!\ninterface Ethernet5\n!\ninterface Ethernet6\n!\ninterface Ethernet7\n!\ninterface Ethernet8\n!\ninterface Ethernet9\n!\ninterface Ethernet10\n!\ninterface Ethernet11\n!\ninterface Ethernet12\n!\ninterface Ethernet13\n!\ninterface Ethernet14\n!\ninterface Ethernet15\n!\ninterface Ethernet16\n!\ninterface Ethernet17\n!\ninterface Ethernet18\n!\ninterface Ethernet19\n!\ninterface Loopback0\n ip address 10.0.20.5/32\ninterface Management1\n no ip address\n\n!\nip route 0.0.0.0/0 10.0.0.2\n!\nip routing\n!\nrouter bgp 65253\n router-id 10.0.20.5\n neighbor 10.11.11.9 remote-as 65252\n neighbor 10.11.11.9 maximum-routes 12000\n neighbor 10.11.11.22 remote-as 65254\n neighbor 10.11.11.22 maximum-routes 12000\n neighbor 10.11.11.26 remote-as 65255\n neighbor 10.11.11.26 maximum-routes 12000\n redistribute connected\n!\nmanagement api http-commands\n protocol http\n protocol unix-socket\n no shutdown\n!\nmanagement api gnmi\n transport grpc default\n port 830\n!\nend 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 --- \n+++ \n@@ -1,12 +1,11 @@\n-! Command: show running-config\n\n-! device: nyc-spine-02 (vEOS, EOS-4.22.4M)\n\n-!\n\n-! boot system flash:/vEOS-lab.swi\n\n+!\n\n !\n\n transceiver qsfp default-mode 4x10G\n\n !\n\n logging host 10.125.1.171 7002\n\n logging format hostname fqdn\n\n+logging facility local6\n\n+logging source-interface Management1\n\n !\n\n logging level AAA informational\n\n logging level ACCOUNTING informational\n\n@@ -111,10 +110,10 @@\n ntp server 10.1.1.1\n\n ntp server 10.2.2.2 prefer\n\n !\n\n-snmp-server contact John Smith\n\n-snmp-server location Network to Code - NYC | NY\n\n snmp-server community networktocode ro\n\n snmp-server community secure rw\n\n+snmp-server location Network to Code - NYC | NY\n\n+snmp-server contact John Smith\n\n snmp-server host 10.1.1.1 version 2c networktocode\n\n !\n\n spanning-tree mode mstp\n\n@@ -123,7 +122,7 @@\n !\n\n no aaa root\n\n !\n\n-username ntc privilege 15 secret sha512 $6$fP4nSv5mDAZuSc8m$IfxuiIwiJSLAkfR5NAKomL1DcPhie5kMwGoS7VvY/ILSG6b0LUQI2RqM1x5mXhBj14U1DqXppZXV2pV5JUG1J/\n\n+username ntc privilege 15 secret sha512 $6$I96u7PN2rdf8y1xH$1Iq523MXOQlfsZDiFPmZiSOvpfFsCpH.EuSblMyQvokhVfCqreJLHbzFlG6SPHzbL1mIElnDIm8Px6Jw55IN1/\n\n !\n\n interface Ethernet1\n\n no switchport\n\n@@ -171,10 +170,9 @@\n !\n\n interface Loopback0\n\n ip address 10.0.20.5/32\n\n-!\n\n interface Management1\n\n- description MANAGEMENT_DO_NOT_CHANGE\n\n- ip address 10.0.0.15/24\n\n+ no ip address\n\n+\n\n !\n\n ip route 0.0.0.0/0 10.0.0.2\n\n !\n\n@@ -199,4 +197,4 @@\n transport grpc default\n\n port 830\n\n !\n\n-end\n\n+end 2023-09-19 08:10:56.994386+00 2023-09-19 08:10:56.994386+00 182b57af-ef9e-428d-916d-7f18e14357d1 +10905963-12d8-41db-87e1-055e07d454ef 2023-09-19 2023-09-19 08:11:02.604977+00 {} 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N a420d520-ef19-46a3-90a8-6f47be57b3d6 +16ba49e7-71d5-4ad7-8d22-b1860492a5d9 2023-09-19 2023-09-19 08:11:02.608599+00 {} 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N 4620c38c-b222-443c-9e31-98ef97b2e756 +36eded59-598b-4626-a308-bf57ece1e8bc 2023-09-19 2023-09-19 08:11:02.612317+00 {} 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N 2023-09-19 08:10:56.994386+00 \N cdece2fc-4010-45d0-9949-3de52bb707c5 +\. + + +-- +-- Data for Name: nautobot_golden_config_goldenconfigsetting; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_golden_config_goldenconfigsetting (id, created, last_updated, _custom_field_data, backup_path_template, intended_path_template, jinja_path_template, backup_test_connectivity, jinja_repository_id, description, name, slug, weight, backup_repository_id, intended_repository_id, sot_agg_query_id, dynamic_group_id) FROM stdin; +eaeafe92-5879-457d-ba29-590a78290949 2023-09-19 2023-09-19 08:11:01.489765+00 {} {{obj.site.slug}}/{{obj.name}}.cfg {{obj.site.slug}}/{{obj.name}}.cfg {{obj.platform.slug}}.j2 t 79252280-04a5-43e1-a472-9c6d193cace7 Default Settings default 1000 3222e431-ec39-4e67-9c59-86368d52be1b c764f880-fd8e-4b77-a1ed-568d45648629 7d94abcf-e5b8-44e0-ae9d-41f66fbc790e de8dd8c0-7c9a-4b12-872c-f37be374739f +\. + + +-- +-- Data for Name: nautobot_ssot_sync; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_ssot_sync (id, source, target, start_time, dry_run, diff, job_result_id, diff_memory_final, diff_memory_peak, diff_time, source_load_memory_final, source_load_memory_peak, source_load_time, sync_memory_final, sync_memory_peak, sync_time, target_load_memory_final, target_load_memory_peak, target_load_time, summary) FROM stdin; +\. + + +-- +-- Data for Name: nautobot_ssot_synclogentry; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.nautobot_ssot_synclogentry (id, "timestamp", action, status, diff, synced_object_id, object_repr, message, sync_id, synced_object_type_id) FROM stdin; +\. + + +-- +-- Data for Name: social_auth_association; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.social_auth_association (id, server_url, handle, secret, issued, lifetime, assoc_type) FROM stdin; +\. + + +-- +-- Data for Name: social_auth_code; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.social_auth_code (id, email, code, verified, "timestamp") FROM stdin; +\. + + +-- +-- Data for Name: social_auth_nonce; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.social_auth_nonce (id, server_url, "timestamp", salt) FROM stdin; +\. + + +-- +-- Data for Name: social_auth_partial; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.social_auth_partial (id, token, next_step, backend, data, "timestamp") FROM stdin; +\. + + +-- +-- Data for Name: social_auth_usersocialauth; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.social_auth_usersocialauth (id, provider, uid, extra_data, user_id, created, modified) FROM stdin; +\. + + +-- +-- Data for Name: taggit_tag; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.taggit_tag (id, name, slug) FROM stdin; +\. + + +-- +-- Data for Name: taggit_taggeditem; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.taggit_taggeditem (id, object_id, content_type_id, tag_id) FROM stdin; +\. + + +-- +-- Data for Name: tenancy_tenant; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.tenancy_tenant (id, created, last_updated, _custom_field_data, name, slug, description, comments, group_id) FROM stdin; +b22a2ff3-f440-4cb1-9b55-57e8531f53a7 2023-09-19 2023-09-19 08:09:41.176455+00 {} Nautobot Airports nautobot-airports atc.nautobot.com \N +6d31d164-645b-47af-91c2-8815ac6c077e 2023-09-19 2023-09-19 08:09:41.188424+00 {} Nautobot Baseball Stadiums nautobot-baseball-stadiums mlb.nautobot.com \N +422496ff-a2a1-46d7-b4df-71e43eff32cf 2023-09-19 2023-09-19 08:09:41.199136+00 {} Network to Code network-to-code networktocode.com \N +9ecf7cc2-101d-4c1c-afe2-2c5fb3e265c8 2023-09-19 2023-09-19 08:11:39.945907+00 {} ABC LLC abc-llc aa584b4f-47b6-46be-ab5b-de98a10f2ed0 +9913fa6c-14f1-4dc1-a821-7b251073648c 2023-09-19 2023-09-19 08:11:39.947339+00 {} XYZ LLC xyz-llc \N +\. + + +-- +-- Data for Name: tenancy_tenantgroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.tenancy_tenantgroup (id, created, last_updated, _custom_field_data, name, slug, description, lft, rght, tree_id, level, parent_id) FROM stdin; +aa584b4f-47b6-46be-ab5b-de98a10f2ed0 2023-09-19 2023-09-19 08:11:39.944722+00 {} ABC Holding Corp abc-holding-corp 1 2 1 0 \N +\. + + +-- +-- Data for Name: users_objectpermission; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.users_objectpermission (id, name, description, enabled, actions, constraints) FROM stdin; +8ce1de43-2d48-495b-8744-37a921e5e311 demo t ["view", "add", "change", "delete"] {} +08e9d339-e367-45fe-adf1-d32ff629d391 demo_read_only t ["view"] {} +4842f21d-ea8c-487d-8d39-8c05bd15614e demo_run_jobs t ["run"] {} +\. + + +-- +-- Data for Name: users_objectpermission_groups; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.users_objectpermission_groups (id, objectpermission_id, group_id) FROM stdin; +1 8ce1de43-2d48-495b-8744-37a921e5e311 3 +2 08e9d339-e367-45fe-adf1-d32ff629d391 3 +3 4842f21d-ea8c-487d-8d39-8c05bd15614e 3 +\. + + +-- +-- Data for Name: users_objectpermission_object_types; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.users_objectpermission_object_types (id, objectpermission_id, contenttype_id) FROM stdin; +1 8ce1de43-2d48-495b-8744-37a921e5e311 1 +2 8ce1de43-2d48-495b-8744-37a921e5e311 2 +3 8ce1de43-2d48-495b-8744-37a921e5e311 3 +4 8ce1de43-2d48-495b-8744-37a921e5e311 4 +5 8ce1de43-2d48-495b-8744-37a921e5e311 5 +6 8ce1de43-2d48-495b-8744-37a921e5e311 6 +7 8ce1de43-2d48-495b-8744-37a921e5e311 7 +8 8ce1de43-2d48-495b-8744-37a921e5e311 8 +9 8ce1de43-2d48-495b-8744-37a921e5e311 9 +10 8ce1de43-2d48-495b-8744-37a921e5e311 10 +11 8ce1de43-2d48-495b-8744-37a921e5e311 11 +12 8ce1de43-2d48-495b-8744-37a921e5e311 12 +13 8ce1de43-2d48-495b-8744-37a921e5e311 13 +14 8ce1de43-2d48-495b-8744-37a921e5e311 14 +15 8ce1de43-2d48-495b-8744-37a921e5e311 15 +16 8ce1de43-2d48-495b-8744-37a921e5e311 16 +17 8ce1de43-2d48-495b-8744-37a921e5e311 17 +18 8ce1de43-2d48-495b-8744-37a921e5e311 18 +19 8ce1de43-2d48-495b-8744-37a921e5e311 19 +20 8ce1de43-2d48-495b-8744-37a921e5e311 20 +21 8ce1de43-2d48-495b-8744-37a921e5e311 21 +22 8ce1de43-2d48-495b-8744-37a921e5e311 22 +23 8ce1de43-2d48-495b-8744-37a921e5e311 23 +24 8ce1de43-2d48-495b-8744-37a921e5e311 24 +25 8ce1de43-2d48-495b-8744-37a921e5e311 25 +26 8ce1de43-2d48-495b-8744-37a921e5e311 26 +27 8ce1de43-2d48-495b-8744-37a921e5e311 27 +28 8ce1de43-2d48-495b-8744-37a921e5e311 28 +29 8ce1de43-2d48-495b-8744-37a921e5e311 29 +30 8ce1de43-2d48-495b-8744-37a921e5e311 30 +31 8ce1de43-2d48-495b-8744-37a921e5e311 31 +32 8ce1de43-2d48-495b-8744-37a921e5e311 32 +33 8ce1de43-2d48-495b-8744-37a921e5e311 33 +34 8ce1de43-2d48-495b-8744-37a921e5e311 34 +35 8ce1de43-2d48-495b-8744-37a921e5e311 35 +36 8ce1de43-2d48-495b-8744-37a921e5e311 36 +37 8ce1de43-2d48-495b-8744-37a921e5e311 37 +38 8ce1de43-2d48-495b-8744-37a921e5e311 38 +39 8ce1de43-2d48-495b-8744-37a921e5e311 39 +40 8ce1de43-2d48-495b-8744-37a921e5e311 40 +41 8ce1de43-2d48-495b-8744-37a921e5e311 41 +42 8ce1de43-2d48-495b-8744-37a921e5e311 42 +43 8ce1de43-2d48-495b-8744-37a921e5e311 43 +44 8ce1de43-2d48-495b-8744-37a921e5e311 44 +45 8ce1de43-2d48-495b-8744-37a921e5e311 45 +46 8ce1de43-2d48-495b-8744-37a921e5e311 46 +47 8ce1de43-2d48-495b-8744-37a921e5e311 47 +48 8ce1de43-2d48-495b-8744-37a921e5e311 48 +49 8ce1de43-2d48-495b-8744-37a921e5e311 49 +50 8ce1de43-2d48-495b-8744-37a921e5e311 50 +51 8ce1de43-2d48-495b-8744-37a921e5e311 51 +52 8ce1de43-2d48-495b-8744-37a921e5e311 52 +53 8ce1de43-2d48-495b-8744-37a921e5e311 53 +54 8ce1de43-2d48-495b-8744-37a921e5e311 54 +55 8ce1de43-2d48-495b-8744-37a921e5e311 55 +56 8ce1de43-2d48-495b-8744-37a921e5e311 56 +57 8ce1de43-2d48-495b-8744-37a921e5e311 57 +58 8ce1de43-2d48-495b-8744-37a921e5e311 58 +59 8ce1de43-2d48-495b-8744-37a921e5e311 59 +60 8ce1de43-2d48-495b-8744-37a921e5e311 60 +61 8ce1de43-2d48-495b-8744-37a921e5e311 61 +62 8ce1de43-2d48-495b-8744-37a921e5e311 62 +63 8ce1de43-2d48-495b-8744-37a921e5e311 63 +64 8ce1de43-2d48-495b-8744-37a921e5e311 64 +65 8ce1de43-2d48-495b-8744-37a921e5e311 65 +66 8ce1de43-2d48-495b-8744-37a921e5e311 66 +67 8ce1de43-2d48-495b-8744-37a921e5e311 67 +68 8ce1de43-2d48-495b-8744-37a921e5e311 68 +69 8ce1de43-2d48-495b-8744-37a921e5e311 69 +70 8ce1de43-2d48-495b-8744-37a921e5e311 70 +71 8ce1de43-2d48-495b-8744-37a921e5e311 71 +72 8ce1de43-2d48-495b-8744-37a921e5e311 86 +73 8ce1de43-2d48-495b-8744-37a921e5e311 87 +74 8ce1de43-2d48-495b-8744-37a921e5e311 88 +75 8ce1de43-2d48-495b-8744-37a921e5e311 89 +76 8ce1de43-2d48-495b-8744-37a921e5e311 93 +77 8ce1de43-2d48-495b-8744-37a921e5e311 94 +78 8ce1de43-2d48-495b-8744-37a921e5e311 97 +79 8ce1de43-2d48-495b-8744-37a921e5e311 98 +80 8ce1de43-2d48-495b-8744-37a921e5e311 99 +81 8ce1de43-2d48-495b-8744-37a921e5e311 100 +82 8ce1de43-2d48-495b-8744-37a921e5e311 101 +83 8ce1de43-2d48-495b-8744-37a921e5e311 102 +84 8ce1de43-2d48-495b-8744-37a921e5e311 103 +85 8ce1de43-2d48-495b-8744-37a921e5e311 104 +86 8ce1de43-2d48-495b-8744-37a921e5e311 105 +87 8ce1de43-2d48-495b-8744-37a921e5e311 106 +88 8ce1de43-2d48-495b-8744-37a921e5e311 107 +89 8ce1de43-2d48-495b-8744-37a921e5e311 108 +90 8ce1de43-2d48-495b-8744-37a921e5e311 109 +91 8ce1de43-2d48-495b-8744-37a921e5e311 110 +92 8ce1de43-2d48-495b-8744-37a921e5e311 111 +93 8ce1de43-2d48-495b-8744-37a921e5e311 112 +94 8ce1de43-2d48-495b-8744-37a921e5e311 113 +95 8ce1de43-2d48-495b-8744-37a921e5e311 114 +96 8ce1de43-2d48-495b-8744-37a921e5e311 115 +97 8ce1de43-2d48-495b-8744-37a921e5e311 116 +98 8ce1de43-2d48-495b-8744-37a921e5e311 117 +99 8ce1de43-2d48-495b-8744-37a921e5e311 118 +100 8ce1de43-2d48-495b-8744-37a921e5e311 119 +101 8ce1de43-2d48-495b-8744-37a921e5e311 120 +102 8ce1de43-2d48-495b-8744-37a921e5e311 121 +103 8ce1de43-2d48-495b-8744-37a921e5e311 122 +104 8ce1de43-2d48-495b-8744-37a921e5e311 123 +105 8ce1de43-2d48-495b-8744-37a921e5e311 124 +106 8ce1de43-2d48-495b-8744-37a921e5e311 125 +107 8ce1de43-2d48-495b-8744-37a921e5e311 126 +108 8ce1de43-2d48-495b-8744-37a921e5e311 127 +109 8ce1de43-2d48-495b-8744-37a921e5e311 128 +110 8ce1de43-2d48-495b-8744-37a921e5e311 129 +111 8ce1de43-2d48-495b-8744-37a921e5e311 130 +112 8ce1de43-2d48-495b-8744-37a921e5e311 131 +113 8ce1de43-2d48-495b-8744-37a921e5e311 132 +114 8ce1de43-2d48-495b-8744-37a921e5e311 133 +115 8ce1de43-2d48-495b-8744-37a921e5e311 134 +116 8ce1de43-2d48-495b-8744-37a921e5e311 135 +117 8ce1de43-2d48-495b-8744-37a921e5e311 136 +118 8ce1de43-2d48-495b-8744-37a921e5e311 137 +119 8ce1de43-2d48-495b-8744-37a921e5e311 138 +120 8ce1de43-2d48-495b-8744-37a921e5e311 140 +121 8ce1de43-2d48-495b-8744-37a921e5e311 141 +122 8ce1de43-2d48-495b-8744-37a921e5e311 142 +123 8ce1de43-2d48-495b-8744-37a921e5e311 143 +124 8ce1de43-2d48-495b-8744-37a921e5e311 144 +125 8ce1de43-2d48-495b-8744-37a921e5e311 145 +126 8ce1de43-2d48-495b-8744-37a921e5e311 146 +127 8ce1de43-2d48-495b-8744-37a921e5e311 147 +128 8ce1de43-2d48-495b-8744-37a921e5e311 148 +129 8ce1de43-2d48-495b-8744-37a921e5e311 149 +130 8ce1de43-2d48-495b-8744-37a921e5e311 150 +131 8ce1de43-2d48-495b-8744-37a921e5e311 151 +132 8ce1de43-2d48-495b-8744-37a921e5e311 155 +133 8ce1de43-2d48-495b-8744-37a921e5e311 156 +134 8ce1de43-2d48-495b-8744-37a921e5e311 157 +135 8ce1de43-2d48-495b-8744-37a921e5e311 158 +136 8ce1de43-2d48-495b-8744-37a921e5e311 159 +137 8ce1de43-2d48-495b-8744-37a921e5e311 160 +138 8ce1de43-2d48-495b-8744-37a921e5e311 161 +139 8ce1de43-2d48-495b-8744-37a921e5e311 162 +140 8ce1de43-2d48-495b-8744-37a921e5e311 163 +141 8ce1de43-2d48-495b-8744-37a921e5e311 166 +142 8ce1de43-2d48-495b-8744-37a921e5e311 167 +143 8ce1de43-2d48-495b-8744-37a921e5e311 172 +144 8ce1de43-2d48-495b-8744-37a921e5e311 173 +145 8ce1de43-2d48-495b-8744-37a921e5e311 174 +146 8ce1de43-2d48-495b-8744-37a921e5e311 180 +147 8ce1de43-2d48-495b-8744-37a921e5e311 181 +148 8ce1de43-2d48-495b-8744-37a921e5e311 185 +149 8ce1de43-2d48-495b-8744-37a921e5e311 196 +150 8ce1de43-2d48-495b-8744-37a921e5e311 207 +151 8ce1de43-2d48-495b-8744-37a921e5e311 208 +152 8ce1de43-2d48-495b-8744-37a921e5e311 209 +153 8ce1de43-2d48-495b-8744-37a921e5e311 210 +154 8ce1de43-2d48-495b-8744-37a921e5e311 211 +155 8ce1de43-2d48-495b-8744-37a921e5e311 212 +156 8ce1de43-2d48-495b-8744-37a921e5e311 213 +157 8ce1de43-2d48-495b-8744-37a921e5e311 214 +158 08e9d339-e367-45fe-adf1-d32ff629d391 1 +159 08e9d339-e367-45fe-adf1-d32ff629d391 2 +160 08e9d339-e367-45fe-adf1-d32ff629d391 3 +161 08e9d339-e367-45fe-adf1-d32ff629d391 4 +162 08e9d339-e367-45fe-adf1-d32ff629d391 5 +163 08e9d339-e367-45fe-adf1-d32ff629d391 6 +164 08e9d339-e367-45fe-adf1-d32ff629d391 7 +165 08e9d339-e367-45fe-adf1-d32ff629d391 9 +166 08e9d339-e367-45fe-adf1-d32ff629d391 10 +167 08e9d339-e367-45fe-adf1-d32ff629d391 11 +168 08e9d339-e367-45fe-adf1-d32ff629d391 12 +169 08e9d339-e367-45fe-adf1-d32ff629d391 13 +170 08e9d339-e367-45fe-adf1-d32ff629d391 14 +171 08e9d339-e367-45fe-adf1-d32ff629d391 15 +172 08e9d339-e367-45fe-adf1-d32ff629d391 16 +173 08e9d339-e367-45fe-adf1-d32ff629d391 86 +174 08e9d339-e367-45fe-adf1-d32ff629d391 87 +175 08e9d339-e367-45fe-adf1-d32ff629d391 88 +176 08e9d339-e367-45fe-adf1-d32ff629d391 89 +177 08e9d339-e367-45fe-adf1-d32ff629d391 93 +178 08e9d339-e367-45fe-adf1-d32ff629d391 94 +179 08e9d339-e367-45fe-adf1-d32ff629d391 97 +180 08e9d339-e367-45fe-adf1-d32ff629d391 98 +181 08e9d339-e367-45fe-adf1-d32ff629d391 99 +182 08e9d339-e367-45fe-adf1-d32ff629d391 101 +183 08e9d339-e367-45fe-adf1-d32ff629d391 102 +184 08e9d339-e367-45fe-adf1-d32ff629d391 103 +185 08e9d339-e367-45fe-adf1-d32ff629d391 104 +186 08e9d339-e367-45fe-adf1-d32ff629d391 105 +187 08e9d339-e367-45fe-adf1-d32ff629d391 106 +188 08e9d339-e367-45fe-adf1-d32ff629d391 107 +189 08e9d339-e367-45fe-adf1-d32ff629d391 108 +190 08e9d339-e367-45fe-adf1-d32ff629d391 109 +191 08e9d339-e367-45fe-adf1-d32ff629d391 110 +192 08e9d339-e367-45fe-adf1-d32ff629d391 111 +193 08e9d339-e367-45fe-adf1-d32ff629d391 112 +194 08e9d339-e367-45fe-adf1-d32ff629d391 113 +195 08e9d339-e367-45fe-adf1-d32ff629d391 114 +196 08e9d339-e367-45fe-adf1-d32ff629d391 115 +197 08e9d339-e367-45fe-adf1-d32ff629d391 116 +198 08e9d339-e367-45fe-adf1-d32ff629d391 117 +199 08e9d339-e367-45fe-adf1-d32ff629d391 118 +200 08e9d339-e367-45fe-adf1-d32ff629d391 119 +201 08e9d339-e367-45fe-adf1-d32ff629d391 120 +202 08e9d339-e367-45fe-adf1-d32ff629d391 121 +203 08e9d339-e367-45fe-adf1-d32ff629d391 122 +204 08e9d339-e367-45fe-adf1-d32ff629d391 123 +205 08e9d339-e367-45fe-adf1-d32ff629d391 124 +206 08e9d339-e367-45fe-adf1-d32ff629d391 125 +207 08e9d339-e367-45fe-adf1-d32ff629d391 126 +208 08e9d339-e367-45fe-adf1-d32ff629d391 127 +209 08e9d339-e367-45fe-adf1-d32ff629d391 128 +210 08e9d339-e367-45fe-adf1-d32ff629d391 129 +211 08e9d339-e367-45fe-adf1-d32ff629d391 130 +212 08e9d339-e367-45fe-adf1-d32ff629d391 131 +213 08e9d339-e367-45fe-adf1-d32ff629d391 132 +214 08e9d339-e367-45fe-adf1-d32ff629d391 133 +215 08e9d339-e367-45fe-adf1-d32ff629d391 134 +216 08e9d339-e367-45fe-adf1-d32ff629d391 135 +217 08e9d339-e367-45fe-adf1-d32ff629d391 136 +218 08e9d339-e367-45fe-adf1-d32ff629d391 137 +219 08e9d339-e367-45fe-adf1-d32ff629d391 138 +220 08e9d339-e367-45fe-adf1-d32ff629d391 139 +221 08e9d339-e367-45fe-adf1-d32ff629d391 140 +222 08e9d339-e367-45fe-adf1-d32ff629d391 141 +223 08e9d339-e367-45fe-adf1-d32ff629d391 142 +224 08e9d339-e367-45fe-adf1-d32ff629d391 143 +225 08e9d339-e367-45fe-adf1-d32ff629d391 144 +226 08e9d339-e367-45fe-adf1-d32ff629d391 145 +227 08e9d339-e367-45fe-adf1-d32ff629d391 146 +228 08e9d339-e367-45fe-adf1-d32ff629d391 147 +229 08e9d339-e367-45fe-adf1-d32ff629d391 148 +230 08e9d339-e367-45fe-adf1-d32ff629d391 149 +231 08e9d339-e367-45fe-adf1-d32ff629d391 150 +232 08e9d339-e367-45fe-adf1-d32ff629d391 151 +233 08e9d339-e367-45fe-adf1-d32ff629d391 155 +234 08e9d339-e367-45fe-adf1-d32ff629d391 156 +235 08e9d339-e367-45fe-adf1-d32ff629d391 157 +236 08e9d339-e367-45fe-adf1-d32ff629d391 158 +237 08e9d339-e367-45fe-adf1-d32ff629d391 159 +238 08e9d339-e367-45fe-adf1-d32ff629d391 160 +239 08e9d339-e367-45fe-adf1-d32ff629d391 161 +240 08e9d339-e367-45fe-adf1-d32ff629d391 163 +241 08e9d339-e367-45fe-adf1-d32ff629d391 164 +242 08e9d339-e367-45fe-adf1-d32ff629d391 166 +243 08e9d339-e367-45fe-adf1-d32ff629d391 167 +244 08e9d339-e367-45fe-adf1-d32ff629d391 170 +245 08e9d339-e367-45fe-adf1-d32ff629d391 171 +246 08e9d339-e367-45fe-adf1-d32ff629d391 172 +247 08e9d339-e367-45fe-adf1-d32ff629d391 173 +248 08e9d339-e367-45fe-adf1-d32ff629d391 174 +249 08e9d339-e367-45fe-adf1-d32ff629d391 177 +250 08e9d339-e367-45fe-adf1-d32ff629d391 178 +251 08e9d339-e367-45fe-adf1-d32ff629d391 180 +252 08e9d339-e367-45fe-adf1-d32ff629d391 185 +253 08e9d339-e367-45fe-adf1-d32ff629d391 186 +254 08e9d339-e367-45fe-adf1-d32ff629d391 190 +255 08e9d339-e367-45fe-adf1-d32ff629d391 191 +256 08e9d339-e367-45fe-adf1-d32ff629d391 192 +257 08e9d339-e367-45fe-adf1-d32ff629d391 193 +258 08e9d339-e367-45fe-adf1-d32ff629d391 194 +259 08e9d339-e367-45fe-adf1-d32ff629d391 195 +260 08e9d339-e367-45fe-adf1-d32ff629d391 196 +261 08e9d339-e367-45fe-adf1-d32ff629d391 197 +262 08e9d339-e367-45fe-adf1-d32ff629d391 198 +263 08e9d339-e367-45fe-adf1-d32ff629d391 199 +264 08e9d339-e367-45fe-adf1-d32ff629d391 200 +265 08e9d339-e367-45fe-adf1-d32ff629d391 201 +266 08e9d339-e367-45fe-adf1-d32ff629d391 202 +267 08e9d339-e367-45fe-adf1-d32ff629d391 203 +268 08e9d339-e367-45fe-adf1-d32ff629d391 204 +269 08e9d339-e367-45fe-adf1-d32ff629d391 205 +270 08e9d339-e367-45fe-adf1-d32ff629d391 206 +271 08e9d339-e367-45fe-adf1-d32ff629d391 207 +272 08e9d339-e367-45fe-adf1-d32ff629d391 208 +273 08e9d339-e367-45fe-adf1-d32ff629d391 209 +274 08e9d339-e367-45fe-adf1-d32ff629d391 210 +275 08e9d339-e367-45fe-adf1-d32ff629d391 211 +276 08e9d339-e367-45fe-adf1-d32ff629d391 212 +277 08e9d339-e367-45fe-adf1-d32ff629d391 213 +278 4842f21d-ea8c-487d-8d39-8c05bd15614e 16 +\. + + +-- +-- Data for Name: users_objectpermission_users; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.users_objectpermission_users (id, objectpermission_id, user_id) FROM stdin; +1 08e9d339-e367-45fe-adf1-d32ff629d391 7c0ac3fc-6e6e-4991-8d89-9b69bf33a32a +\. + + +-- +-- Data for Name: users_token; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.users_token (id, created, expires, key, write_enabled, description, user_id) FROM stdin; +de09e097-ccc1-4f34-a2d3-82e5ac073947 2023-09-19 08:09:40.43265+00 \N 1111111111111111111111111111111111111111 t 7c0ac3fc-6e6e-4991-8d89-9b69bf33a32a +4845a362-7767-4755-b0dc-e0c0e5a57bfd 2023-09-19 08:09:40.689686+00 \N 2222222222222222222222222222222222222222 t b413e569-2560-423c-b5da-9aa9818d7429 +c11f6913-e81c-4f7e-b17c-23fd1617d7f8 2023-09-19 08:09:40.916902+00 \N aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa t 8e34712e-2fef-47a4-b207-532f655a71b5 +3041a154-4c5e-4bbc-a213-878e35eb69a0 2023-09-19 08:09:41.152702+00 \N nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn t f8a803e6-6a42-4b17-ae71-5968b0e4f4e3 +a976a50f-7f5f-4272-a29d-44c84092a931 2023-09-19 08:10:04.994802+00 \N 0123456789abcdef0123456789abcdef01234567 t ba9e3e28-d0eb-46f6-875c-2e6b96f0a122 +\. + + +-- +-- Data for Name: virtualization_cluster; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.virtualization_cluster (id, created, last_updated, _custom_field_data, name, comments, group_id, site_id, tenant_id, type_id, location_id) FROM stdin; +\. + + +-- +-- Data for Name: virtualization_clustergroup; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.virtualization_clustergroup (id, created, last_updated, _custom_field_data, name, slug, description) FROM stdin; +\. + + +-- +-- Data for Name: virtualization_clustertype; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.virtualization_clustertype (id, created, last_updated, _custom_field_data, name, slug, description) FROM stdin; +\. + + +-- +-- Data for Name: virtualization_virtualmachine; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.virtualization_virtualmachine (id, created, last_updated, _custom_field_data, local_context_data, local_context_data_owner_object_id, name, vcpus, memory, disk, comments, cluster_id, local_context_data_owner_content_type_id, platform_id, primary_ip4_id, primary_ip6_id, role_id, status_id, tenant_id, local_context_schema_id) FROM stdin; +\. + + +-- +-- Data for Name: virtualization_vminterface; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.virtualization_vminterface (id, _custom_field_data, enabled, mac_address, mtu, mode, name, _name, description, untagged_vlan_id, virtual_machine_id, status_id, parent_interface_id, bridge_id) FROM stdin; +\. + + +-- +-- Data for Name: virtualization_vminterface_tagged_vlans; Type: TABLE DATA; Schema: public; Owner: nautobot +-- + +COPY public.virtualization_vminterface_tagged_vlans (id, vminterface_id, vlan_id) FROM stdin; +\. + + +-- +-- Name: auth_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.auth_group_id_seq', 4, true); + + +-- +-- Name: auth_group_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.auth_group_permissions_id_seq', 1, false); + + +-- +-- Name: auth_permission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.auth_permission_id_seq', 851, true); + + +-- +-- Name: auth_user_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.auth_user_groups_id_seq', 3, true); + + +-- +-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.auth_user_user_permissions_id_seq', 1, false); + + +-- +-- Name: constance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.constance_config_id_seq', 2, true); + + +-- +-- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.dcim_interface_tagged_vlans_id_seq', 1, false); + + +-- +-- Name: dcim_locationtype_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.dcim_locationtype_content_types_id_seq', 1, false); + + +-- +-- Name: django_admin_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_admin_log_id_seq', 1, false); + + +-- +-- Name: django_celery_beat_clockedschedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_celery_beat_clockedschedule_id_seq', 1, false); + + +-- +-- Name: django_celery_beat_crontabschedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_celery_beat_crontabschedule_id_seq', 1, false); + + +-- +-- Name: django_celery_beat_intervalschedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_celery_beat_intervalschedule_id_seq', 1, false); + + +-- +-- Name: django_celery_beat_periodictask_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_celery_beat_periodictask_id_seq', 1, false); + + +-- +-- Name: django_celery_beat_solarschedule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_celery_beat_solarschedule_id_seq', 1, false); + + +-- +-- Name: django_content_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_content_type_id_seq', 214, true); + + +-- +-- Name: django_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.django_migrations_id_seq', 234, true); + + +-- +-- Name: extras_configcontext_cluster_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_cluster_groups_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_clusters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_clusters_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_device_redundancy_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_device_redundancy_groups_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_device_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_device_types_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_dynamic_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_dynamic_groups_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_locations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_locations_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_platforms_id_seq', 3, true); + + +-- +-- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_regions_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_roles_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_sites_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_tags_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_tenant_groups_id_seq', 1, false); + + +-- +-- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_configcontext_tenants_id_seq', 1, false); + + +-- +-- Name: extras_customfield_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_customfield_content_types_id_seq', 2, true); + + +-- +-- Name: extras_jobbutton_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_jobbutton_content_types_id_seq', 1, false); + + +-- +-- Name: extras_jobhook_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_jobhook_content_types_id_seq', 1, false); + + +-- +-- Name: extras_status_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_status_content_types_id_seq', 123, true); + + +-- +-- Name: extras_tag_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_tag_content_types_id_seq', 1, false); + + +-- +-- Name: extras_webhook_content_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.extras_webhook_content_types_id_seq', 1, false); + + +-- +-- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.ipam_service_ipaddresses_id_seq', 1, false); + + +-- +-- Name: ipam_vrf_export_targets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.ipam_vrf_export_targets_id_seq', 1, false); + + +-- +-- Name: ipam_vrf_import_targets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.ipam_vrf_import_targets_id_seq', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationr_id_seq', 26, true); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevali_id_seq', 6, true); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_t_id_seq', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventor_id_seq', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_t_id_seq', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq1', 2, true); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_dev_id_seq2', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devi_id_seq', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inve_id_seq', 1, false); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_obje_id_seq', 1, true); + + +-- +-- Name: social_auth_association_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.social_auth_association_id_seq', 1, false); + + +-- +-- Name: social_auth_code_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.social_auth_code_id_seq', 1, false); + + +-- +-- Name: social_auth_nonce_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.social_auth_nonce_id_seq', 1, false); + + +-- +-- Name: social_auth_partial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.social_auth_partial_id_seq', 1, false); + + +-- +-- Name: social_auth_usersocialauth_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.social_auth_usersocialauth_id_seq', 1, false); + + +-- +-- Name: taggit_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.taggit_tag_id_seq', 1, false); + + +-- +-- Name: taggit_taggeditem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.taggit_taggeditem_id_seq', 1, false); + + +-- +-- Name: users_objectpermission_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.users_objectpermission_groups_id_seq', 3, true); + + +-- +-- Name: users_objectpermission_object_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.users_objectpermission_object_types_id_seq', 278, true); + + +-- +-- Name: users_objectpermission_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.users_objectpermission_users_id_seq', 1, true); + + +-- +-- Name: virtualization_vminterface_tagged_vlans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: nautobot +-- + +SELECT pg_catalog.setval('public.virtualization_vminterface_tagged_vlans_id_seq', 1, false); + + +-- +-- Name: auth_group auth_group_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group + ADD CONSTRAINT auth_group_name_key UNIQUE (name); + + +-- +-- Name: auth_group_permissions auth_group_permissions_group_id_permission_id_0cd325b0_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_group_id_permission_id_0cd325b0_uniq UNIQUE (group_id, permission_id); + + +-- +-- Name: auth_group_permissions auth_group_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group auth_group_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group + ADD CONSTRAINT auth_group_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_permission auth_permission_content_type_id_codename_01ab375a_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_content_type_id_codename_01ab375a_uniq UNIQUE (content_type_id, codename); + + +-- +-- Name: auth_permission auth_permission_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_groups auth_user_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_groups auth_user_groups_user_id_group_id_94350c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_user_id_group_id_94350c0c_uniq UNIQUE (user_id, group_id); + + +-- +-- Name: auth_user auth_user_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user + ADD CONSTRAINT auth_user_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_permission_id_14a6b632_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_user_id_permission_id_14a6b632_uniq UNIQUE (user_id, permission_id); + + +-- +-- Name: auth_user auth_user_username_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user + ADD CONSTRAINT auth_user_username_key UNIQUE (username); + + +-- +-- Name: circuits_circuit circuits_circuit_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_pkey PRIMARY KEY (id); + + +-- +-- Name: circuits_circuit circuits_circuit_provider_id_cid_b6f29862_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_provider_id_cid_b6f29862_uniq UNIQUE (provider_id, cid); + + +-- +-- Name: circuits_circuittermination circuits_circuittermination_circuit_id_term_side_b13efd0e_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuittermination_circuit_id_term_side_b13efd0e_uniq UNIQUE (circuit_id, term_side); + + +-- +-- Name: circuits_circuittermination circuits_circuittermination_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuittermination_pkey PRIMARY KEY (id); + + +-- +-- Name: circuits_circuittype circuits_circuittype_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittype + ADD CONSTRAINT circuits_circuittype_name_key UNIQUE (name); + + +-- +-- Name: circuits_circuittype circuits_circuittype_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittype + ADD CONSTRAINT circuits_circuittype_pkey PRIMARY KEY (id); + + +-- +-- Name: circuits_circuittype circuits_circuittype_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittype + ADD CONSTRAINT circuits_circuittype_slug_key UNIQUE (slug); + + +-- +-- Name: circuits_provider circuits_provider_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_provider + ADD CONSTRAINT circuits_provider_name_key UNIQUE (name); + + +-- +-- Name: circuits_provider circuits_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_provider + ADD CONSTRAINT circuits_provider_pkey PRIMARY KEY (id); + + +-- +-- Name: circuits_provider circuits_provider_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_provider + ADD CONSTRAINT circuits_provider_slug_key UNIQUE (slug); + + +-- +-- Name: circuits_providernetwork circuits_providernetwork_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_providernetwork + ADD CONSTRAINT circuits_providernetwork_pkey PRIMARY KEY (id); + + +-- +-- Name: circuits_providernetwork circuits_providernetwork_provider_id_name_6f6610a0_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_providernetwork + ADD CONSTRAINT circuits_providernetwork_provider_id_name_6f6610a0_uniq UNIQUE (provider_id, name); + + +-- +-- Name: circuits_providernetwork circuits_providernetwork_provider_name; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_providernetwork + ADD CONSTRAINT circuits_providernetwork_provider_name UNIQUE (provider_id, name); + + +-- +-- Name: circuits_providernetwork circuits_providernetwork_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_providernetwork + ADD CONSTRAINT circuits_providernetwork_slug_key UNIQUE (slug); + + +-- +-- Name: constance_config constance_config_key_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.constance_config + ADD CONSTRAINT constance_config_key_key UNIQUE (key); + + +-- +-- Name: constance_config constance_config_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.constance_config + ADD CONSTRAINT constance_config_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_cable dcim_cable_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_cable dcim_cable_termination_a_type_id_termination_a_id_e9d24bad_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable_termination_a_type_id_termination_a_id_e9d24bad_uniq UNIQUE (termination_a_type_id, termination_a_id); + + +-- +-- Name: dcim_cable dcim_cable_termination_b_type_id_termination_b_id_057fc21f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable_termination_b_type_id_termination_b_id_057fc21f_uniq UNIQUE (termination_b_type_id, termination_b_id); + + +-- +-- Name: dcim_cablepath dcim_cablepath_origin_type_id_origin_id_41b6f814_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cablepath + ADD CONSTRAINT dcim_cablepath_origin_type_id_origin_id_41b6f814_uniq UNIQUE (origin_type_id, origin_id); + + +-- +-- Name: dcim_cablepath dcim_cablepath_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cablepath + ADD CONSTRAINT dcim_cablepath_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_consoleport dcim_consoleport_device_id_name_293786b6_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleport + ADD CONSTRAINT dcim_consoleport_device_id_name_293786b6_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_consoleport dcim_consoleport_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleport + ADD CONSTRAINT dcim_consoleport_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_consoleporttemplate dcim_consoleporttemplate_device_type_id_name_8208f9ca_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleporttemplate + ADD CONSTRAINT dcim_consoleporttemplate_device_type_id_name_8208f9ca_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_consoleporttemplate dcim_consoleporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleporttemplate + ADD CONSTRAINT dcim_consoleporttemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_consoleserverport dcim_consoleserverport_device_id_name_fb1c5999_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverport + ADD CONSTRAINT dcim_consoleserverport_device_id_name_fb1c5999_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_consoleserverport dcim_consoleserverport_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverport + ADD CONSTRAINT dcim_consoleserverport_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_consoleserverporttemplate dcim_consoleserverportte_device_type_id_name_a05c974d_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverporttemplate + ADD CONSTRAINT dcim_consoleserverportte_device_type_id_name_a05c974d_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_consoleserverporttemplate dcim_consoleserverporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverporttemplate + ADD CONSTRAINT dcim_consoleserverporttemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_device dcim_device_asset_tag_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_asset_tag_key UNIQUE (asset_tag); + + +-- +-- Name: dcim_device dcim_device_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_device dcim_device_primary_ip4_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_primary_ip4_id_key UNIQUE (primary_ip4_id); + + +-- +-- Name: dcim_device dcim_device_primary_ip6_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_primary_ip6_id_key UNIQUE (primary_ip6_id); + + +-- +-- Name: dcim_device dcim_device_rack_id_position_face_43208a79_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_rack_id_position_face_43208a79_uniq UNIQUE (rack_id, "position", face); + + +-- +-- Name: dcim_device dcim_device_site_id_tenant_id_name_93f4f962_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_site_id_tenant_id_name_93f4f962_uniq UNIQUE (site_id, tenant_id, name); + + +-- +-- Name: dcim_device dcim_device_virtual_chassis_id_vc_position_efea7133_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_virtual_chassis_id_vc_position_efea7133_uniq UNIQUE (virtual_chassis_id, vc_position); + + +-- +-- Name: dcim_devicebay dcim_devicebay_device_id_name_2475a67b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebay + ADD CONSTRAINT dcim_devicebay_device_id_name_2475a67b_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_devicebay dcim_devicebay_installed_device_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebay + ADD CONSTRAINT dcim_devicebay_installed_device_id_key UNIQUE (installed_device_id); + + +-- +-- Name: dcim_devicebay dcim_devicebay_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebay + ADD CONSTRAINT dcim_devicebay_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_devicebaytemplate dcim_devicebaytemplate_device_type_id_name_8f4899fe_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebaytemplate + ADD CONSTRAINT dcim_devicebaytemplate_device_type_id_name_8f4899fe_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_devicebaytemplate dcim_devicebaytemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebaytemplate + ADD CONSTRAINT dcim_devicebaytemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_deviceredundancygroup dcim_deviceredundancygroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_deviceredundancygroup + ADD CONSTRAINT dcim_deviceredundancygroup_name_key UNIQUE (name); + + +-- +-- Name: dcim_deviceredundancygroup dcim_deviceredundancygroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_deviceredundancygroup + ADD CONSTRAINT dcim_deviceredundancygroup_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_deviceredundancygroup dcim_deviceredundancygroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_deviceredundancygroup + ADD CONSTRAINT dcim_deviceredundancygroup_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_devicerole dcim_devicerole_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicerole + ADD CONSTRAINT dcim_devicerole_name_key UNIQUE (name); + + +-- +-- Name: dcim_devicerole dcim_devicerole_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicerole + ADD CONSTRAINT dcim_devicerole_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_devicerole dcim_devicerole_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicerole + ADD CONSTRAINT dcim_devicerole_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_devicetype dcim_devicetype_manufacturer_id_model_17948c0c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicetype + ADD CONSTRAINT dcim_devicetype_manufacturer_id_model_17948c0c_uniq UNIQUE (manufacturer_id, model); + + +-- +-- Name: dcim_devicetype dcim_devicetype_manufacturer_id_slug_a0b931cb_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicetype + ADD CONSTRAINT dcim_devicetype_manufacturer_id_slug_a0b931cb_uniq UNIQUE (manufacturer_id, slug); + + +-- +-- Name: dcim_devicetype dcim_devicetype_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicetype + ADD CONSTRAINT dcim_devicetype_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_frontport dcim_frontport_device_id_name_235b7af2_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport_device_id_name_235b7af2_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_frontport dcim_frontport_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_frontport dcim_frontport_rear_port_id_rear_port_position_8b0bf7ca_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport_rear_port_id_rear_port_position_8b0bf7ca_uniq UNIQUE (rear_port_id, rear_port_position); + + +-- +-- Name: dcim_frontporttemplate dcim_frontporttemplate_device_type_id_name_0a0a0e05_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontporttemplate + ADD CONSTRAINT dcim_frontporttemplate_device_type_id_name_0a0a0e05_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_frontporttemplate dcim_frontporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontporttemplate + ADD CONSTRAINT dcim_frontporttemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_frontporttemplate dcim_frontporttemplate_rear_port_id_rear_port_p_401fe927_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontporttemplate + ADD CONSTRAINT dcim_frontporttemplate_rear_port_id_rear_port_p_401fe927_uniq UNIQUE (rear_port_id, rear_port_position); + + +-- +-- Name: dcim_interface dcim_interface_device_id_name_bffc4ec4_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_device_id_name_bffc4ec4_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_interface dcim_interface_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_interface_tagged_vlans dcim_interface_tagged_vlans_interface_id_vlan_id_0d55c576_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface_tagged_vlans + ADD CONSTRAINT dcim_interface_tagged_vlans_interface_id_vlan_id_0d55c576_uniq UNIQUE (interface_id, vlan_id); + + +-- +-- Name: dcim_interface_tagged_vlans dcim_interface_tagged_vlans_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface_tagged_vlans + ADD CONSTRAINT dcim_interface_tagged_vlans_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_interfacetemplate dcim_interfacetemplate_device_type_id_name_3a847237_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interfacetemplate + ADD CONSTRAINT dcim_interfacetemplate_device_type_id_name_3a847237_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_interfacetemplate dcim_interfacetemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interfacetemplate + ADD CONSTRAINT dcim_interfacetemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_inventoryitem dcim_inventoryitem_asset_tag_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_inventoryitem + ADD CONSTRAINT dcim_inventoryitem_asset_tag_key UNIQUE (asset_tag); + + +-- +-- Name: dcim_inventoryitem dcim_inventoryitem_device_id_parent_id_name_bb84bd2b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_inventoryitem + ADD CONSTRAINT dcim_inventoryitem_device_id_parent_id_name_bb84bd2b_uniq UNIQUE (device_id, parent_id, name); + + +-- +-- Name: dcim_inventoryitem dcim_inventoryitem_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_inventoryitem + ADD CONSTRAINT dcim_inventoryitem_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_location dcim_location_parent_id_name_1e7c6218_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_parent_id_name_1e7c6218_uniq UNIQUE (parent_id, name); + + +-- +-- Name: dcim_location dcim_location_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_location dcim_location_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_locationtype_content_types dcim_locationtype_conten_locationtype_id_contentt_58938a25_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype_content_types + ADD CONSTRAINT dcim_locationtype_conten_locationtype_id_contentt_58938a25_uniq UNIQUE (locationtype_id, contenttype_id); + + +-- +-- Name: dcim_locationtype_content_types dcim_locationtype_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype_content_types + ADD CONSTRAINT dcim_locationtype_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_locationtype dcim_locationtype_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype + ADD CONSTRAINT dcim_locationtype_name_key UNIQUE (name); + + +-- +-- Name: dcim_locationtype dcim_locationtype_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype + ADD CONSTRAINT dcim_locationtype_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_locationtype dcim_locationtype_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype + ADD CONSTRAINT dcim_locationtype_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_manufacturer dcim_manufacturer_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_manufacturer + ADD CONSTRAINT dcim_manufacturer_name_key UNIQUE (name); + + +-- +-- Name: dcim_manufacturer dcim_manufacturer_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_manufacturer + ADD CONSTRAINT dcim_manufacturer_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_manufacturer dcim_manufacturer_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_manufacturer + ADD CONSTRAINT dcim_manufacturer_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_platform dcim_platform_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_platform + ADD CONSTRAINT dcim_platform_name_key UNIQUE (name); + + +-- +-- Name: dcim_platform dcim_platform_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_platform + ADD CONSTRAINT dcim_platform_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_platform dcim_platform_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_platform + ADD CONSTRAINT dcim_platform_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_powerfeed dcim_powerfeed_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_powerfeed dcim_powerfeed_power_panel_id_name_0fbaae9f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed_power_panel_id_name_0fbaae9f_uniq UNIQUE (power_panel_id, name); + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet_device_id_name_981b00c1_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet_device_id_name_981b00c1_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_poweroutlettemplate dcim_poweroutlettemplate_device_type_id_name_eafbb07d_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlettemplate + ADD CONSTRAINT dcim_poweroutlettemplate_device_type_id_name_eafbb07d_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_poweroutlettemplate dcim_poweroutlettemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlettemplate + ADD CONSTRAINT dcim_poweroutlettemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_powerpanel dcim_powerpanel_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerpanel + ADD CONSTRAINT dcim_powerpanel_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_powerpanel dcim_powerpanel_site_id_name_804df4c0_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerpanel + ADD CONSTRAINT dcim_powerpanel_site_id_name_804df4c0_uniq UNIQUE (site_id, name); + + +-- +-- Name: dcim_powerport dcim_powerport_device_id_name_948af82c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerport + ADD CONSTRAINT dcim_powerport_device_id_name_948af82c_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_powerport dcim_powerport_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerport + ADD CONSTRAINT dcim_powerport_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_powerporttemplate dcim_powerporttemplate_device_type_id_name_b4e9689f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerporttemplate + ADD CONSTRAINT dcim_powerporttemplate_device_type_id_name_b4e9689f_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_powerporttemplate dcim_powerporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerporttemplate + ADD CONSTRAINT dcim_powerporttemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_rack dcim_rack_asset_tag_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_asset_tag_key UNIQUE (asset_tag); + + +-- +-- Name: dcim_rack dcim_rack_group_id_facility_id_f16a53ae_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_group_id_facility_id_f16a53ae_uniq UNIQUE (group_id, facility_id); + + +-- +-- Name: dcim_rack dcim_rack_group_id_name_846f3826_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_group_id_name_846f3826_uniq UNIQUE (group_id, name); + + +-- +-- Name: dcim_rack dcim_rack_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_rackgroup dcim_rackgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackgroup + ADD CONSTRAINT dcim_rackgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_rackgroup dcim_rackgroup_site_id_name_c9bd921f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackgroup + ADD CONSTRAINT dcim_rackgroup_site_id_name_c9bd921f_uniq UNIQUE (site_id, name); + + +-- +-- Name: dcim_rackgroup dcim_rackgroup_site_id_slug_7fbfd118_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackgroup + ADD CONSTRAINT dcim_rackgroup_site_id_slug_7fbfd118_uniq UNIQUE (site_id, slug); + + +-- +-- Name: dcim_rackreservation dcim_rackreservation_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackreservation + ADD CONSTRAINT dcim_rackreservation_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_rackrole dcim_rackrole_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackrole + ADD CONSTRAINT dcim_rackrole_name_key UNIQUE (name); + + +-- +-- Name: dcim_rackrole dcim_rackrole_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackrole + ADD CONSTRAINT dcim_rackrole_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_rackrole dcim_rackrole_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackrole + ADD CONSTRAINT dcim_rackrole_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_rearport dcim_rearport_device_id_name_4b14dde6_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearport + ADD CONSTRAINT dcim_rearport_device_id_name_4b14dde6_uniq UNIQUE (device_id, name); + + +-- +-- Name: dcim_rearport dcim_rearport_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearport + ADD CONSTRAINT dcim_rearport_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_rearporttemplate dcim_rearporttemplate_device_type_id_name_9bdddb29_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearporttemplate + ADD CONSTRAINT dcim_rearporttemplate_device_type_id_name_9bdddb29_uniq UNIQUE (device_type_id, name); + + +-- +-- Name: dcim_rearporttemplate dcim_rearporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearporttemplate + ADD CONSTRAINT dcim_rearporttemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_region dcim_region_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_region + ADD CONSTRAINT dcim_region_name_key UNIQUE (name); + + +-- +-- Name: dcim_region dcim_region_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_region + ADD CONSTRAINT dcim_region_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_region dcim_region_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_region + ADD CONSTRAINT dcim_region_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_site dcim_site_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_site + ADD CONSTRAINT dcim_site_name_key UNIQUE (name); + + +-- +-- Name: dcim_site dcim_site_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_site + ADD CONSTRAINT dcim_site_pkey PRIMARY KEY (id); + + +-- +-- Name: dcim_site dcim_site_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_site + ADD CONSTRAINT dcim_site_slug_key UNIQUE (slug); + + +-- +-- Name: dcim_virtualchassis dcim_virtualchassis_master_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_virtualchassis + ADD CONSTRAINT dcim_virtualchassis_master_id_key UNIQUE (master_id); + + +-- +-- Name: dcim_virtualchassis dcim_virtualchassis_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_virtualchassis + ADD CONSTRAINT dcim_virtualchassis_pkey PRIMARY KEY (id); + + +-- +-- Name: django_admin_log django_admin_log_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_pkey PRIMARY KEY (id); + + +-- +-- Name: django_celery_beat_clockedschedule django_celery_beat_clockedschedule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_clockedschedule + ADD CONSTRAINT django_celery_beat_clockedschedule_pkey PRIMARY KEY (id); + + +-- +-- Name: django_celery_beat_crontabschedule django_celery_beat_crontabschedule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_crontabschedule + ADD CONSTRAINT django_celery_beat_crontabschedule_pkey PRIMARY KEY (id); + + +-- +-- Name: django_celery_beat_intervalschedule django_celery_beat_intervalschedule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_intervalschedule + ADD CONSTRAINT django_celery_beat_intervalschedule_pkey PRIMARY KEY (id); + + +-- +-- Name: django_celery_beat_periodictask django_celery_beat_periodictask_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask + ADD CONSTRAINT django_celery_beat_periodictask_name_key UNIQUE (name); + + +-- +-- Name: django_celery_beat_periodictask django_celery_beat_periodictask_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask + ADD CONSTRAINT django_celery_beat_periodictask_pkey PRIMARY KEY (id); + + +-- +-- Name: django_celery_beat_periodictasks django_celery_beat_periodictasks_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictasks + ADD CONSTRAINT django_celery_beat_periodictasks_pkey PRIMARY KEY (ident); + + +-- +-- Name: django_celery_beat_solarschedule django_celery_beat_solar_event_latitude_longitude_ba64999a_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_solarschedule + ADD CONSTRAINT django_celery_beat_solar_event_latitude_longitude_ba64999a_uniq UNIQUE (event, latitude, longitude); + + +-- +-- Name: django_celery_beat_solarschedule django_celery_beat_solarschedule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_solarschedule + ADD CONSTRAINT django_celery_beat_solarschedule_pkey PRIMARY KEY (id); + + +-- +-- Name: django_content_type django_content_type_app_label_model_76bd3d3b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_content_type + ADD CONSTRAINT django_content_type_app_label_model_76bd3d3b_uniq UNIQUE (app_label, model); + + +-- +-- Name: django_content_type django_content_type_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_content_type + ADD CONSTRAINT django_content_type_pkey PRIMARY KEY (id); + + +-- +-- Name: django_migrations django_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_migrations + ADD CONSTRAINT django_migrations_pkey PRIMARY KEY (id); + + +-- +-- Name: django_session django_session_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_session + ADD CONSTRAINT django_session_pkey PRIMARY KEY (session_key); + + +-- +-- Name: extras_computedfield extras_computedfield_content_type_id_label_021486c8_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_computedfield + ADD CONSTRAINT extras_computedfield_content_type_id_label_021486c8_uniq UNIQUE (content_type_id, label); + + +-- +-- Name: extras_computedfield extras_computedfield_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_computedfield + ADD CONSTRAINT extras_computedfield_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_computedfield extras_computedfield_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_computedfield + ADD CONSTRAINT extras_computedfield_slug_key UNIQUE (slug); + + +-- +-- Name: extras_configcontext_clusters extras_configcontext_clu_configcontext_id_cluster_0c7e5d20_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_clusters + ADD CONSTRAINT extras_configcontext_clu_configcontext_id_cluster_0c7e5d20_uniq UNIQUE (configcontext_id, cluster_id); + + +-- +-- Name: extras_configcontext_cluster_groups extras_configcontext_clu_configcontext_id_cluster_bc530192_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_cluster_groups + ADD CONSTRAINT extras_configcontext_clu_configcontext_id_cluster_bc530192_uniq UNIQUE (configcontext_id, clustergroup_id); + + +-- +-- Name: extras_configcontext_cluster_groups extras_configcontext_cluster_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_cluster_groups + ADD CONSTRAINT extras_configcontext_cluster_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_clusters extras_configcontext_clusters_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_clusters + ADD CONSTRAINT extras_configcontext_clusters_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_device_redundancy_groups extras_configcontext_dev_configcontext_id_devicer_80f1d0b0_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_redundancy_groups + ADD CONSTRAINT extras_configcontext_dev_configcontext_id_devicer_80f1d0b0_uniq UNIQUE (configcontext_id, deviceredundancygroup_id); + + +-- +-- Name: extras_configcontext_device_types extras_configcontext_dev_configcontext_id_devicet_a0aaba6f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_types + ADD CONSTRAINT extras_configcontext_dev_configcontext_id_devicet_a0aaba6f_uniq UNIQUE (configcontext_id, devicetype_id); + + +-- +-- Name: extras_configcontext_device_redundancy_groups extras_configcontext_device_redundancy_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_redundancy_groups + ADD CONSTRAINT extras_configcontext_device_redundancy_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_device_types extras_configcontext_device_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_types + ADD CONSTRAINT extras_configcontext_device_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_dynamic_groups extras_configcontext_dyn_configcontext_id_dynamic_2eea3817_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_dynamic_groups + ADD CONSTRAINT extras_configcontext_dyn_configcontext_id_dynamic_2eea3817_uniq UNIQUE (configcontext_id, dynamicgroup_id); + + +-- +-- Name: extras_configcontext_dynamic_groups extras_configcontext_dynamic_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_dynamic_groups + ADD CONSTRAINT extras_configcontext_dynamic_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_locations extras_configcontext_loc_configcontext_id_locatio_15d9b342_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_locations + ADD CONSTRAINT extras_configcontext_loc_configcontext_id_locatio_15d9b342_uniq UNIQUE (configcontext_id, location_id); + + +-- +-- Name: extras_configcontext_locations extras_configcontext_locations_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_locations + ADD CONSTRAINT extras_configcontext_locations_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext extras_configcontext_name_owner_content_type__c289e08f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext + ADD CONSTRAINT extras_configcontext_name_owner_content_type__c289e08f_uniq UNIQUE (name, owner_content_type_id, owner_object_id); + + +-- +-- Name: extras_configcontext extras_configcontext_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext + ADD CONSTRAINT extras_configcontext_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_platforms extras_configcontext_pla_configcontext_id_platfor_3c67c104_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_platforms + ADD CONSTRAINT extras_configcontext_pla_configcontext_id_platfor_3c67c104_uniq UNIQUE (configcontext_id, platform_id); + + +-- +-- Name: extras_configcontext_platforms extras_configcontext_platforms_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_platforms + ADD CONSTRAINT extras_configcontext_platforms_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_regions extras_configcontext_reg_configcontext_id_region__d4a1d77f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_regions + ADD CONSTRAINT extras_configcontext_reg_configcontext_id_region__d4a1d77f_uniq UNIQUE (configcontext_id, region_id); + + +-- +-- Name: extras_configcontext_regions extras_configcontext_regions_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_regions + ADD CONSTRAINT extras_configcontext_regions_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_roles extras_configcontext_rol_configcontext_id_devicer_4d8dbb50_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_roles + ADD CONSTRAINT extras_configcontext_rol_configcontext_id_devicer_4d8dbb50_uniq UNIQUE (configcontext_id, devicerole_id); + + +-- +-- Name: extras_configcontext_roles extras_configcontext_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_roles + ADD CONSTRAINT extras_configcontext_roles_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_sites extras_configcontext_sit_configcontext_id_site_id_a4fe5f4f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_sites + ADD CONSTRAINT extras_configcontext_sit_configcontext_id_site_id_a4fe5f4f_uniq UNIQUE (configcontext_id, site_id); + + +-- +-- Name: extras_configcontext_sites extras_configcontext_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_sites + ADD CONSTRAINT extras_configcontext_sites_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_tags extras_configcontext_tags_configcontext_id_tag_id_f6c53016_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tags + ADD CONSTRAINT extras_configcontext_tags_configcontext_id_tag_id_f6c53016_uniq UNIQUE (configcontext_id, tag_id); + + +-- +-- Name: extras_configcontext_tags extras_configcontext_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tags + ADD CONSTRAINT extras_configcontext_tags_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_tenants extras_configcontext_ten_configcontext_id_tenant__aefb257d_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenants + ADD CONSTRAINT extras_configcontext_ten_configcontext_id_tenant__aefb257d_uniq UNIQUE (configcontext_id, tenant_id); + + +-- +-- Name: extras_configcontext_tenant_groups extras_configcontext_ten_configcontext_id_tenantg_d6afc6f5_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenant_groups + ADD CONSTRAINT extras_configcontext_ten_configcontext_id_tenantg_d6afc6f5_uniq UNIQUE (configcontext_id, tenantgroup_id); + + +-- +-- Name: extras_configcontext_tenant_groups extras_configcontext_tenant_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenant_groups + ADD CONSTRAINT extras_configcontext_tenant_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontext_tenants extras_configcontext_tenants_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenants + ADD CONSTRAINT extras_configcontext_tenants_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_configcontextschema extras_configcontextschema_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontextschema + ADD CONSTRAINT extras_configcontextschema_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_customfield_content_types extras_customfield_conte_customfield_id_contentty_51136c2b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield_content_types + ADD CONSTRAINT extras_customfield_conte_customfield_id_contentty_51136c2b_uniq UNIQUE (customfield_id, contenttype_id); + + +-- +-- Name: extras_customfield_content_types extras_customfield_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield_content_types + ADD CONSTRAINT extras_customfield_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_customfield extras_customfield_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield + ADD CONSTRAINT extras_customfield_name_key UNIQUE (name); + + +-- +-- Name: extras_customfield extras_customfield_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield + ADD CONSTRAINT extras_customfield_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_customfield extras_customfield_slug_ed27c4fe_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield + ADD CONSTRAINT extras_customfield_slug_ed27c4fe_uniq UNIQUE (slug); + + +-- +-- Name: extras_customfieldchoice extras_customfieldchoice_field_id_value_f959a108_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfieldchoice + ADD CONSTRAINT extras_customfieldchoice_field_id_value_f959a108_uniq UNIQUE (field_id, value); + + +-- +-- Name: extras_customfieldchoice extras_customfieldchoice_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfieldchoice + ADD CONSTRAINT extras_customfieldchoice_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_customlink extras_customlink_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customlink + ADD CONSTRAINT extras_customlink_name_key UNIQUE (name); + + +-- +-- Name: extras_customlink extras_customlink_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customlink + ADD CONSTRAINT extras_customlink_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_dynamicgroup extras_dynamicgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroup + ADD CONSTRAINT extras_dynamicgroup_name_key UNIQUE (name); + + +-- +-- Name: extras_dynamicgroup extras_dynamicgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroup + ADD CONSTRAINT extras_dynamicgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_dynamicgroup extras_dynamicgroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroup + ADD CONSTRAINT extras_dynamicgroup_slug_key UNIQUE (slug); + + +-- +-- Name: extras_dynamicgroupmembership extras_dynamicgroupmembe_group_id_parent_group_id_0011d94d_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroupmembership + ADD CONSTRAINT extras_dynamicgroupmembe_group_id_parent_group_id_0011d94d_uniq UNIQUE (group_id, parent_group_id, operator, weight); + + +-- +-- Name: extras_dynamicgroupmembership extras_dynamicgroupmembership_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroupmembership + ADD CONSTRAINT extras_dynamicgroupmembership_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_exporttemplate extras_exporttemplate_content_type_id_name_own_3b6ea31b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_exporttemplate + ADD CONSTRAINT extras_exporttemplate_content_type_id_name_own_3b6ea31b_uniq UNIQUE (content_type_id, name, owner_content_type_id, owner_object_id); + + +-- +-- Name: extras_exporttemplate extras_exporttemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_exporttemplate + ADD CONSTRAINT extras_exporttemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_fileattachment extras_fileattachment_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_fileattachment + ADD CONSTRAINT extras_fileattachment_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_fileproxy extras_fileproxy_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_fileproxy + ADD CONSTRAINT extras_fileproxy_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_gitrepository extras_gitrepository_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_gitrepository + ADD CONSTRAINT extras_gitrepository_name_key UNIQUE (name); + + +-- +-- Name: extras_gitrepository extras_gitrepository_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_gitrepository + ADD CONSTRAINT extras_gitrepository_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_gitrepository extras_gitrepository_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_gitrepository + ADD CONSTRAINT extras_gitrepository_slug_key UNIQUE (slug); + + +-- +-- Name: extras_graphqlquery extras_graphqlquery_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_graphqlquery + ADD CONSTRAINT extras_graphqlquery_name_key UNIQUE (name); + + +-- +-- Name: extras_graphqlquery extras_graphqlquery_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_graphqlquery + ADD CONSTRAINT extras_graphqlquery_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_graphqlquery extras_graphqlquery_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_graphqlquery + ADD CONSTRAINT extras_graphqlquery_slug_key UNIQUE (slug); + + +-- +-- Name: extras_healthchecktestmodel extras_healthchecktestmodel_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_healthchecktestmodel + ADD CONSTRAINT extras_healthchecktestmodel_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_imageattachment extras_imageattachment_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_imageattachment + ADD CONSTRAINT extras_imageattachment_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_job extras_job_grouping_name_8cbc9328_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_job + ADD CONSTRAINT extras_job_grouping_name_8cbc9328_uniq UNIQUE ("grouping", name); + + +-- +-- Name: extras_job extras_job_source_git_repository_id_e6dfe58c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_job + ADD CONSTRAINT extras_job_source_git_repository_id_e6dfe58c_uniq UNIQUE (source, git_repository_id, module_name, job_class_name); + + +-- +-- Name: extras_jobbutton_content_types extras_jobbutton_content_jobbutton_id_contenttype_058baab2_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton_content_types + ADD CONSTRAINT extras_jobbutton_content_jobbutton_id_contenttype_058baab2_uniq UNIQUE (jobbutton_id, contenttype_id); + + +-- +-- Name: extras_jobbutton_content_types extras_jobbutton_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton_content_types + ADD CONSTRAINT extras_jobbutton_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_jobbutton extras_jobbutton_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton + ADD CONSTRAINT extras_jobbutton_name_key UNIQUE (name); + + +-- +-- Name: extras_jobbutton extras_jobbutton_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton + ADD CONSTRAINT extras_jobbutton_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_jobhook_content_types extras_jobhook_content_t_jobhook_id_contenttype_i_c21a50f9_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook_content_types + ADD CONSTRAINT extras_jobhook_content_t_jobhook_id_contenttype_i_c21a50f9_uniq UNIQUE (jobhook_id, contenttype_id); + + +-- +-- Name: extras_jobhook_content_types extras_jobhook_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook_content_types + ADD CONSTRAINT extras_jobhook_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_jobhook extras_jobhook_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook + ADD CONSTRAINT extras_jobhook_name_key UNIQUE (name); + + +-- +-- Name: extras_jobhook extras_jobhook_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook + ADD CONSTRAINT extras_jobhook_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_jobhook extras_jobhook_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook + ADD CONSTRAINT extras_jobhook_slug_key UNIQUE (slug); + + +-- +-- Name: extras_joblogentry extras_joblogentry_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_joblogentry + ADD CONSTRAINT extras_joblogentry_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_job extras_jobmodel_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_job + ADD CONSTRAINT extras_jobmodel_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_job extras_jobmodel_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_job + ADD CONSTRAINT extras_jobmodel_slug_key UNIQUE (slug); + + +-- +-- Name: extras_jobresult extras_jobresult_job_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobresult + ADD CONSTRAINT extras_jobresult_job_id_key UNIQUE (job_id); + + +-- +-- Name: extras_jobresult extras_jobresult_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobresult + ADD CONSTRAINT extras_jobresult_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_note extras_note_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_note + ADD CONSTRAINT extras_note_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_note extras_note_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_note + ADD CONSTRAINT extras_note_slug_key UNIQUE (slug); + + +-- +-- Name: extras_objectchange extras_objectchange_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_objectchange + ADD CONSTRAINT extras_objectchange_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_relationship extras_relationship_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationship + ADD CONSTRAINT extras_relationship_name_key UNIQUE (name); + + +-- +-- Name: extras_relationship extras_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationship + ADD CONSTRAINT extras_relationship_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_relationship extras_relationship_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationship + ADD CONSTRAINT extras_relationship_slug_key UNIQUE (slug); + + +-- +-- Name: extras_relationshipassociation extras_relationshipassoc_relationship_id_source_t_6826a98b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationshipassociation + ADD CONSTRAINT extras_relationshipassoc_relationship_id_source_t_6826a98b_uniq UNIQUE (relationship_id, source_type_id, source_id, destination_type_id, destination_id); + + +-- +-- Name: extras_relationshipassociation extras_relationshipassociation_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationshipassociation + ADD CONSTRAINT extras_relationshipassociation_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_scheduledjob extras_scheduledjob_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_scheduledjob + ADD CONSTRAINT extras_scheduledjob_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_scheduledjobs extras_scheduledjobs_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_scheduledjobs + ADD CONSTRAINT extras_scheduledjobs_pkey PRIMARY KEY (ident); + + +-- +-- Name: extras_secret extras_secret_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secret + ADD CONSTRAINT extras_secret_name_key UNIQUE (name); + + +-- +-- Name: extras_secret extras_secret_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secret + ADD CONSTRAINT extras_secret_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_secret extras_secret_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secret + ADD CONSTRAINT extras_secret_slug_key UNIQUE (slug); + + +-- +-- Name: extras_secretsgroup extras_secretsgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroup + ADD CONSTRAINT extras_secretsgroup_name_key UNIQUE (name); + + +-- +-- Name: extras_secretsgroup extras_secretsgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroup + ADD CONSTRAINT extras_secretsgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_secretsgroup extras_secretsgroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroup + ADD CONSTRAINT extras_secretsgroup_slug_key UNIQUE (slug); + + +-- +-- Name: extras_secretsgroupassociation extras_secretsgroupassoc_group_id_access_type_sec_1b1e944a_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroupassociation + ADD CONSTRAINT extras_secretsgroupassoc_group_id_access_type_sec_1b1e944a_uniq UNIQUE (group_id, access_type, secret_type); + + +-- +-- Name: extras_secretsgroupassociation extras_secretsgroupassociation_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroupassociation + ADD CONSTRAINT extras_secretsgroupassociation_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_status_content_types extras_status_content_ty_status_id_contenttype_id_423e142c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status_content_types + ADD CONSTRAINT extras_status_content_ty_status_id_contenttype_id_423e142c_uniq UNIQUE (status_id, contenttype_id); + + +-- +-- Name: extras_status_content_types extras_status_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status_content_types + ADD CONSTRAINT extras_status_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_status extras_status_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status + ADD CONSTRAINT extras_status_name_key UNIQUE (name); + + +-- +-- Name: extras_status extras_status_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status + ADD CONSTRAINT extras_status_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_status extras_status_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status + ADD CONSTRAINT extras_status_slug_key UNIQUE (slug); + + +-- +-- Name: extras_tag_content_types extras_tag_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag_content_types + ADD CONSTRAINT extras_tag_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_tag_content_types extras_tag_content_types_tag_id_contenttype_id_726a20d6_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag_content_types + ADD CONSTRAINT extras_tag_content_types_tag_id_contenttype_id_726a20d6_uniq UNIQUE (tag_id, contenttype_id); + + +-- +-- Name: extras_tag extras_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag + ADD CONSTRAINT extras_tag_name_key UNIQUE (name); + + +-- +-- Name: extras_tag extras_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag + ADD CONSTRAINT extras_tag_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_tag extras_tag_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag + ADD CONSTRAINT extras_tag_slug_key UNIQUE (slug); + + +-- +-- Name: extras_taggeditem extras_taggeditem_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_taggeditem + ADD CONSTRAINT extras_taggeditem_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_webhook_content_types extras_webhook_content_t_webhook_id_contenttype_i_485b9e93_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook_content_types + ADD CONSTRAINT extras_webhook_content_t_webhook_id_contenttype_i_485b9e93_uniq UNIQUE (webhook_id, contenttype_id); + + +-- +-- Name: extras_webhook_content_types extras_webhook_content_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook_content_types + ADD CONSTRAINT extras_webhook_content_types_pkey PRIMARY KEY (id); + + +-- +-- Name: extras_webhook extras_webhook_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook + ADD CONSTRAINT extras_webhook_name_key UNIQUE (name); + + +-- +-- Name: extras_webhook extras_webhook_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook + ADD CONSTRAINT extras_webhook_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_aggregate ipam_aggregate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_aggregate + ADD CONSTRAINT ipam_aggregate_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_ipaddress ipam_ipaddress_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_ipaddress + ADD CONSTRAINT ipam_ipaddress_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_prefix ipam_prefix_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_rir ipam_rir_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_rir + ADD CONSTRAINT ipam_rir_name_key UNIQUE (name); + + +-- +-- Name: ipam_rir ipam_rir_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_rir + ADD CONSTRAINT ipam_rir_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_rir ipam_rir_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_rir + ADD CONSTRAINT ipam_rir_slug_key UNIQUE (slug); + + +-- +-- Name: ipam_role ipam_role_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_role + ADD CONSTRAINT ipam_role_name_key UNIQUE (name); + + +-- +-- Name: ipam_role ipam_role_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_role + ADD CONSTRAINT ipam_role_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_role ipam_role_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_role + ADD CONSTRAINT ipam_role_slug_key UNIQUE (slug); + + +-- +-- Name: ipam_routetarget ipam_routetarget_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_routetarget + ADD CONSTRAINT ipam_routetarget_name_key UNIQUE (name); + + +-- +-- Name: ipam_routetarget ipam_routetarget_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_routetarget + ADD CONSTRAINT ipam_routetarget_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_service_ipaddresses ipam_service_ipaddresses_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service_ipaddresses + ADD CONSTRAINT ipam_service_ipaddresses_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_service_ipaddresses ipam_service_ipaddresses_service_id_ipaddress_id_d019a805_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service_ipaddresses + ADD CONSTRAINT ipam_service_ipaddresses_service_id_ipaddress_id_d019a805_uniq UNIQUE (service_id, ipaddress_id); + + +-- +-- Name: ipam_service ipam_service_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service + ADD CONSTRAINT ipam_service_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_vlan ipam_vlan_group_id_name_e53919df_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_group_id_name_e53919df_uniq UNIQUE (group_id, name); + + +-- +-- Name: ipam_vlan ipam_vlan_group_id_vid_5ca4cc47_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_group_id_vid_5ca4cc47_uniq UNIQUE (group_id, vid); + + +-- +-- Name: ipam_vlan ipam_vlan_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_vlangroup ipam_vlangroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlangroup + ADD CONSTRAINT ipam_vlangroup_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_vlangroup ipam_vlangroup_site_id_name_a38e981b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlangroup + ADD CONSTRAINT ipam_vlangroup_site_id_name_a38e981b_uniq UNIQUE (site_id, name); + + +-- +-- Name: ipam_vlangroup ipam_vlangroup_site_id_slug_6372a304_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlangroup + ADD CONSTRAINT ipam_vlangroup_site_id_slug_6372a304_uniq UNIQUE (site_id, slug); + + +-- +-- Name: ipam_vrf_export_targets ipam_vrf_export_targets_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_export_targets + ADD CONSTRAINT ipam_vrf_export_targets_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_vrf_export_targets ipam_vrf_export_targets_vrf_id_routetarget_id_63ba8c62_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_export_targets + ADD CONSTRAINT ipam_vrf_export_targets_vrf_id_routetarget_id_63ba8c62_uniq UNIQUE (vrf_id, routetarget_id); + + +-- +-- Name: ipam_vrf_import_targets ipam_vrf_import_targets_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_import_targets + ADD CONSTRAINT ipam_vrf_import_targets_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_vrf_import_targets ipam_vrf_import_targets_vrf_id_routetarget_id_399b155f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_import_targets + ADD CONSTRAINT ipam_vrf_import_targets_vrf_id_routetarget_id_399b155f_uniq UNIQUE (vrf_id, routetarget_id); + + +-- +-- Name: ipam_vrf ipam_vrf_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf + ADD CONSTRAINT ipam_vrf_pkey PRIMARY KEY (id); + + +-- +-- Name: ipam_vrf ipam_vrf_rd_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf + ADD CONSTRAINT ipam_vrf_rd_key UNIQUE (rd); + + +-- +-- Name: nautobot_bgp_models_addressfamily nautobot_bgp_models_addressfamily_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_addressfamily + ADD CONSTRAINT nautobot_bgp_models_addressfamily_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_autonomoussystem nautobot_bgp_models_autonomoussystem_asn_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_autonomoussystem + ADD CONSTRAINT nautobot_bgp_models_autonomoussystem_asn_key UNIQUE (asn); + + +-- +-- Name: nautobot_bgp_models_autonomoussystem nautobot_bgp_models_autonomoussystem_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_autonomoussystem + ADD CONSTRAINT nautobot_bgp_models_autonomoussystem_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance nautobot_bgp_models_bgpr_device_id_autonomous_sys_5ed4e90d_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_bgproutinginstance + ADD CONSTRAINT nautobot_bgp_models_bgpr_device_id_autonomous_sys_5ed4e90d_uniq UNIQUE (device_id, autonomous_system_id); + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance nautobot_bgp_models_bgproutinginstance_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_bgproutinginstance + ADD CONSTRAINT nautobot_bgp_models_bgproutinginstance_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models_peer_name_routing_instance_id_44cd9e5f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models_peer_name_routing_instance_id_44cd9e5f_uniq UNIQUE (name, routing_instance_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models_peerendpoint_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models_peerendpoint_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models_peergroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models_peergroup_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate nautobot_bgp_models_peergrouptemplate_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergrouptemplate + ADD CONSTRAINT nautobot_bgp_models_peergrouptemplate_name_key UNIQUE (name); + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate nautobot_bgp_models_peergrouptemplate_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergrouptemplate + ADD CONSTRAINT nautobot_bgp_models_peergrouptemplate_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_peering nautobot_bgp_models_peering_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peering + ADD CONSTRAINT nautobot_bgp_models_peering_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_peeringrole nautobot_bgp_models_peeringrole_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peeringrole + ADD CONSTRAINT nautobot_bgp_models_peeringrole_name_key UNIQUE (name); + + +-- +-- Name: nautobot_bgp_models_peeringrole nautobot_bgp_models_peeringrole_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peeringrole + ADD CONSTRAINT nautobot_bgp_models_peeringrole_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_bgp_models_peeringrole nautobot_bgp_models_peeringrole_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peeringrole + ADD CONSTRAINT nautobot_bgp_models_peeringrole_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_chatops_accessgrant nautobot_chatops_accessgrant_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_chatops_accessgrant + ADD CONSTRAINT nautobot_chatops_accessgrant_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_chatops_commandlog nautobot_chatops_commandlog_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_chatops_commandlog + ADD CONSTRAINT nautobot_chatops_commandlog_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_chatops_commandtoken nautobot_chatops_commandtoken_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_chatops_commandtoken + ADD CONSTRAINT nautobot_chatops_commandtoken_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_data_validation_engine_datacompliance nautobot_data_validation_compliance_class_name_co_175bd12f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_datacompliance + ADD CONSTRAINT nautobot_data_validation_compliance_class_name_co_175bd12f_uniq UNIQUE (compliance_class_name, content_type_id, object_id, validated_attribute); + + +-- +-- Name: nautobot_data_validation_engine_regularexpressionvalidationrule nautobot_data_validation_content_type_id_field_35add806_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_regularexpressionvalidationrule + ADD CONSTRAINT nautobot_data_validation_content_type_id_field_35add806_uniq UNIQUE (content_type_id, field); + + +-- +-- Name: nautobot_data_validation_engine_uniquevalidationrule nautobot_data_validation_content_type_id_field_bacfb976_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_uniquevalidationrule + ADD CONSTRAINT nautobot_data_validation_content_type_id_field_bacfb976_uniq UNIQUE (content_type_id, field); + + +-- +-- Name: nautobot_data_validation_engine_requiredvalidationrule nautobot_data_validation_content_type_id_field_c7aa1e2a_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_requiredvalidationrule + ADD CONSTRAINT nautobot_data_validation_content_type_id_field_c7aa1e2a_uniq UNIQUE (content_type_id, field); + + +-- +-- Name: nautobot_data_validation_engine_minmaxvalidationrule nautobot_data_validation_content_type_id_field_fc531b0c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_minmaxvalidationrule + ADD CONSTRAINT nautobot_data_validation_content_type_id_field_fc531b0c_uniq UNIQUE (content_type_id, field); + + +-- +-- Name: nautobot_data_validation_engine_datacompliance nautobot_data_validation_engine_datacompliance_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_datacompliance + ADD CONSTRAINT nautobot_data_validation_engine_datacompliance_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_data_validation_engine_minmaxvalidationrule nautobot_data_validation_engine_minmaxvalidationrule_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_minmaxvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_minmaxvalidationrule_name_key UNIQUE (name); + + +-- +-- Name: nautobot_data_validation_engine_minmaxvalidationrule nautobot_data_validation_engine_minmaxvalidationrule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_minmaxvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_minmaxvalidationrule_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_data_validation_engine_minmaxvalidationrule nautobot_data_validation_engine_minmaxvalidationrule_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_minmaxvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_minmaxvalidationrule_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_data_validation_engine_regularexpressionvalidationrule nautobot_data_validation_engine_regularexpressionvalid_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_regularexpressionvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_regularexpressionvalid_name_key UNIQUE (name); + + +-- +-- Name: nautobot_data_validation_engine_regularexpressionvalidationrule nautobot_data_validation_engine_regularexpressionvalid_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_regularexpressionvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_regularexpressionvalid_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_data_validation_engine_regularexpressionvalidationrule nautobot_data_validation_engine_regularexpressionvalidatio_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_regularexpressionvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_regularexpressionvalidatio_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_data_validation_engine_requiredvalidationrule nautobot_data_validation_engine_requiredvalidationrule_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_requiredvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_requiredvalidationrule_name_key UNIQUE (name); + + +-- +-- Name: nautobot_data_validation_engine_requiredvalidationrule nautobot_data_validation_engine_requiredvalidationrule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_requiredvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_requiredvalidationrule_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_data_validation_engine_requiredvalidationrule nautobot_data_validation_engine_requiredvalidationrule_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_requiredvalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_requiredvalidationrule_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_data_validation_engine_uniquevalidationrule nautobot_data_validation_engine_uniquevalidationrule_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_uniquevalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_uniquevalidationrule_name_key UNIQUE (name); + + +-- +-- Name: nautobot_data_validation_engine_uniquevalidationrule nautobot_data_validation_engine_uniquevalidationrule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_uniquevalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_uniquevalidationrule_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_data_validation_engine_uniquevalidationrule nautobot_data_validation_engine_uniquevalidationrule_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_uniquevalidationrule + ADD CONSTRAINT nautobot_data_validation_engine_uniquevalidationrule_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contactlcm nautobot_device_lifecycl_contract_id_name_aa67fcf3_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_contactlcm + ADD CONSTRAINT nautobot_device_lifecycl_contract_id_name_aa67fcf3_uniq UNIQUE (contract_id, name); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwarelcm nautobot_device_lifecycl_device_platform_id_versi_bd080a42_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwarelcm + ADD CONSTRAINT nautobot_device_lifecycl_device_platform_id_versi_bd080a42_uniq UNIQUE (device_platform_id, version); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace nautobot_device_lifecycl_devicesoftwarevalidation_5b8d1d0c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace + ADD CONSTRAINT nautobot_device_lifecycl_devicesoftwarevalidation_5b8d1d0c_uniq UNIQUE (devicesoftwarevalidationresult_id, validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm nautobot_device_lifecycl_image_file_name_software_e6d95cc8_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm + ADD CONSTRAINT nautobot_device_lifecycl_image_file_name_software_e6d95cc8_uniq UNIQUE (image_file_name, software_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 nautobot_device_lifecycl_inventoryitemsoftwareval_4ea6a825_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 + ADD CONSTRAINT nautobot_device_lifecycl_inventoryitemsoftwareval_4ea6a825_uniq UNIQUE (inventoryitemsoftwarevalidationresult_id, validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types nautobot_device_lifecycl_softwareimagelcm_id_devi_f0bb443d_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types + ADD CONSTRAINT nautobot_device_lifecycl_softwareimagelcm_id_devi_f0bb443d_uniq UNIQUE (softwareimagelcm_id, devicetype_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items nautobot_device_lifecycl_softwareimagelcm_id_inve_75bcb6a9_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items + ADD CONSTRAINT nautobot_device_lifecycl_softwareimagelcm_id_inve_75bcb6a9_uniq UNIQUE (softwareimagelcm_id, inventoryitem_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags nautobot_device_lifecycl_softwareimagelcm_id_tag__52210e37_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags + ADD CONSTRAINT nautobot_device_lifecycl_softwareimagelcm_id_tag__52210e37_uniq UNIQUE (softwareimagelcm_id, tag_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags nautobot_device_lifecycl_validatedsoftwarelcm_id__31141c07_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags + ADD CONSTRAINT nautobot_device_lifecycl_validatedsoftwarelcm_id__31141c07_uniq UNIQUE (validatedsoftwarelcm_id, tag_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices nautobot_device_lifecycl_validatedsoftwarelcm_id__37aecd77_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices + ADD CONSTRAINT nautobot_device_lifecycl_validatedsoftwarelcm_id__37aecd77_uniq UNIQUE (validatedsoftwarelcm_id, device_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc nautobot_device_lifecycl_validatedsoftwarelcm_id__7fc9d3d9_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc + ADD CONSTRAINT nautobot_device_lifecycl_validatedsoftwarelcm_id__7fc9d3d9_uniq UNIQUE (validatedsoftwarelcm_id, devicerole_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc nautobot_device_lifecycl_validatedsoftwarelcm_id__891d6dcd_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc + ADD CONSTRAINT nautobot_device_lifecycl_validatedsoftwarelcm_id__891d6dcd_uniq UNIQUE (validatedsoftwarelcm_id, devicetype_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b nautobot_device_lifecycl_validatedsoftwarelcm_id__f2795ad7_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b + ADD CONSTRAINT nautobot_device_lifecycl_validatedsoftwarelcm_id__f2795ad7_uniq UNIQUE (validatedsoftwarelcm_id, inventoryitem_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contactlcm nautobot_device_lifecycle_mgmt_contactlcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_contactlcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_contactlcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contractlcm nautobot_device_lifecycle_mgmt_contractlcm_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_contractlcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_contractlcm_name_key UNIQUE (name); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contractlcm nautobot_device_lifecycle_mgmt_contractlcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_contractlcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_contractlcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_cvelcm nautobot_device_lifecycle_mgmt_cvelcm_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_cvelcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_cvelcm_name_key UNIQUE (name); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_cvelcm nautobot_device_lifecycle_mgmt_cvelcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_cvelcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_cvelcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult nautobot_device_lifecycle_mgmt_devicesoftwarevali_device_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_devicesoftwarevali_device_id_key UNIQUE (device_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace nautobot_device_lifecycle_mgmt_devicesoftwarevalidationre_pkey1; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_devicesoftwarevalidationre_pkey1 PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult nautobot_device_lifecycle_mgmt_devicesoftwarevalidationres_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_devicesoftwarevalidationres_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_hardwarelcm nautobot_device_lifecycle_mgmt_hardwarelcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_hardwarelcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_hardwarelcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f nautobot_device_lifecycle_mgmt_inventoryi_inventory_item_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_inventoryi_inventory_item_id_key UNIQUE (inventory_item_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalid_pkey1; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalid_pkey1 PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalida_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalida_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_providerlcm nautobot_device_lifecycle_mgmt_providerlcm_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_providerlcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_providerlcm_name_key UNIQUE (name); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_providerlcm nautobot_device_lifecycle_mgmt_providerlcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_providerlcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_providerlcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types nautobot_device_lifecycle_mgmt_softwareimagelcm_device_typ_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_softwareimagelcm_device_typ_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory__pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory__pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tag_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm nautobot_device_lifecycle_mgmt_softwareimagelcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_softwareimagelcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwarelcm nautobot_device_lifecycle_mgmt_softwarelcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwarelcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_softwarelcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devic_pkey1; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devic_pkey1 PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devic_pkey2; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devic_pkey2 PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_invent_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_invent_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm nautobot_device_lifecycle_mgmt_vulnerabilitylcm_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm + ADD CONSTRAINT nautobot_device_lifecycle_mgmt_vulnerabilitylcm_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_onboarding_onboardingdevice nautobot_device_onboarding_onboardingdevice_device_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingdevice + ADD CONSTRAINT nautobot_device_onboarding_onboardingdevice_device_id_key UNIQUE (device_id); + + +-- +-- Name: nautobot_device_onboarding_onboardingdevice nautobot_device_onboarding_onboardingdevice_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingdevice + ADD CONSTRAINT nautobot_device_onboarding_onboardingdevice_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_device_onboarding_onboardingtask nautobot_device_onboarding_onboardingtask_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingtask + ADD CONSTRAINT nautobot_device_onboarding_onboardingtask_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_models_addressobject_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_models_addressobject_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_models_addressobject_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_models_addressobject_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_addressobjectgroup nautobot_firewall_models_addressobjectgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobjectgroup + ADD CONSTRAINT nautobot_firewall_models_addressobjectgroup_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_addressobjectgroup nautobot_firewall_models_addressobjectgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobjectgroup + ADD CONSTRAINT nautobot_firewall_models_addressobjectgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_addressobjectgroupm2m nautobot_firewall_models_addressobjectgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_models_addressobjectgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_applicationgroupm2m nautobot_firewall_models_applicationgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationgroupm2m + ADD CONSTRAINT nautobot_firewall_models_applicationgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_applicationm2m nautobot_firewall_models_applicationm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationm2m + ADD CONSTRAINT nautobot_firewall_models_applicationm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_applicationobject nautobot_firewall_models_applicationobject_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobject + ADD CONSTRAINT nautobot_firewall_models_applicationobject_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_applicationobject nautobot_firewall_models_applicationobject_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobject + ADD CONSTRAINT nautobot_firewall_models_applicationobject_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_applicationobjectgroup nautobot_firewall_models_applicationobjectgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobjectgroup + ADD CONSTRAINT nautobot_firewall_models_applicationobjectgroup_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_applicationobjectgroup nautobot_firewall_models_applicationobjectgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobjectgroup + ADD CONSTRAINT nautobot_firewall_models_applicationobjectgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_applicationobjectgroupm2m nautobot_firewall_models_applicationobjectgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_models_applicationobjectgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_capircapolicy nautobot_firewall_models_capircapolicy_device_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_capircapolicy + ADD CONSTRAINT nautobot_firewall_models_capircapolicy_device_id_key UNIQUE (device_id); + + +-- +-- Name: nautobot_firewall_models_capircapolicy nautobot_firewall_models_capircapolicy_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_capircapolicy + ADD CONSTRAINT nautobot_firewall_models_capircapolicy_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_destaddrgroupm2m nautobot_firewall_models_destaddrgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_models_destaddrgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_destaddrm2m nautobot_firewall_models_destaddrm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destaddrm2m + ADD CONSTRAINT nautobot_firewall_models_destaddrm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_fqdn nautobot_firewall_models_fqdn_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_fqdn + ADD CONSTRAINT nautobot_firewall_models_fqdn_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_fqdn nautobot_firewall_models_fqdn_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_fqdn + ADD CONSTRAINT nautobot_firewall_models_fqdn_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_fqdnipaddressm2m nautobot_firewall_models_fqdnipaddressm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_fqdnipaddressm2m + ADD CONSTRAINT nautobot_firewall_models_fqdnipaddressm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_iprange nautobot_firewall_models_iprange_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_iprange + ADD CONSTRAINT nautobot_firewall_models_iprange_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicydevicem2m nautobot_firewall_models_nat_policy_id_device_id_b12dc91f_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydevicem2m + ADD CONSTRAINT nautobot_firewall_models_nat_policy_id_device_id_b12dc91f_uniq UNIQUE (nat_policy_id, device_id); + + +-- +-- Name: nautobot_firewall_models_natpolicydynamicgroupm2m nautobot_firewall_models_nat_policy_id_dynamic_gr_7a4fb303_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_models_nat_policy_id_dynamic_gr_7a4fb303_uniq UNIQUE (nat_policy_id, dynamic_group_id); + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrgroupm2m nautobot_firewall_models_natorigdestaddrgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_models_natorigdestaddrgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrm2m nautobot_firewall_models_natorigdestaddrm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestaddrm2m + ADD CONSTRAINT nautobot_firewall_models_natorigdestaddrm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcgroupm2m nautobot_firewall_models_natorigdestsvcgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_models_natorigdestsvcgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcm2m nautobot_firewall_models_natorigdestsvcm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestsvcm2m + ADD CONSTRAINT nautobot_firewall_models_natorigdestsvcm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrgroupm2m nautobot_firewall_models_natorigsrcaddrgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_models_natorigsrcaddrgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrm2m nautobot_firewall_models_natorigsrcaddrm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcaddrm2m + ADD CONSTRAINT nautobot_firewall_models_natorigsrcaddrm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcgroupm2m nautobot_firewall_models_natorigsrcsvcgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_models_natorigsrcsvcgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcm2m nautobot_firewall_models_natorigsrcsvcm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcsvcm2m + ADD CONSTRAINT nautobot_firewall_models_natorigsrcsvcm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicy nautobot_firewall_models_natpolicy_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicy + ADD CONSTRAINT nautobot_firewall_models_natpolicy_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_natpolicy nautobot_firewall_models_natpolicy_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicy + ADD CONSTRAINT nautobot_firewall_models_natpolicy_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicydevicem2m nautobot_firewall_models_natpolicydevicem2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydevicem2m + ADD CONSTRAINT nautobot_firewall_models_natpolicydevicem2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicydynamicgroupm2m nautobot_firewall_models_natpolicydynamicgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_models_natpolicydynamicgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicynatrulem2m nautobot_firewall_models_natpolicynatrulem2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicynatrulem2m + ADD CONSTRAINT nautobot_firewall_models_natpolicynatrulem2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicyrule nautobot_firewall_models_natpolicyrule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrule + ADD CONSTRAINT nautobot_firewall_models_natpolicyrule_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natpolicyrulem2m nautobot_firewall_models_natpolicyrulem2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrulem2m + ADD CONSTRAINT nautobot_firewall_models_natpolicyrulem2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natsrcusergroupm2m nautobot_firewall_models_natsrcusergroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natsrcusergroupm2m + ADD CONSTRAINT nautobot_firewall_models_natsrcusergroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_natsrcuserm2m nautobot_firewall_models_natsrcuserm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natsrcuserm2m + ADD CONSTRAINT nautobot_firewall_models_natsrcuserm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrgroupm2m nautobot_firewall_models_nattransdestaddrgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_models_nattransdestaddrgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrm2m nautobot_firewall_models_nattransdestaddrm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestaddrm2m + ADD CONSTRAINT nautobot_firewall_models_nattransdestaddrm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcgroupm2m nautobot_firewall_models_nattransdestsvcgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_models_nattransdestsvcgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcm2m nautobot_firewall_models_nattransdestsvcm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestsvcm2m + ADD CONSTRAINT nautobot_firewall_models_nattransdestsvcm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrgroupm2m nautobot_firewall_models_nattranssrcaddrgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_models_nattranssrcaddrgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrm2m nautobot_firewall_models_nattranssrcaddrm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcaddrm2m + ADD CONSTRAINT nautobot_firewall_models_nattranssrcaddrm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcgroupm2m nautobot_firewall_models_nattranssrcsvcgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_models_nattranssrcsvcgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcm2m nautobot_firewall_models_nattranssrcsvcm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcsvcm2m + ADD CONSTRAINT nautobot_firewall_models_nattranssrcsvcm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_policydevicem2m nautobot_firewall_models_policy_id_device_id_9b260574_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydevicem2m + ADD CONSTRAINT nautobot_firewall_models_policy_id_device_id_9b260574_uniq UNIQUE (policy_id, device_id); + + +-- +-- Name: nautobot_firewall_models_policydynamicgroupm2m nautobot_firewall_models_policy_id_dynamic_group__4ff8341b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_models_policy_id_dynamic_group__4ff8341b_uniq UNIQUE (policy_id, dynamic_group_id); + + +-- +-- Name: nautobot_firewall_models_policy nautobot_firewall_models_policy_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policy + ADD CONSTRAINT nautobot_firewall_models_policy_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_policy nautobot_firewall_models_policy_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policy + ADD CONSTRAINT nautobot_firewall_models_policy_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_policydevicem2m nautobot_firewall_models_policydevicem2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydevicem2m + ADD CONSTRAINT nautobot_firewall_models_policydevicem2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_policydynamicgroupm2m nautobot_firewall_models_policydynamicgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_models_policydynamicgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_policyrule nautobot_firewall_models_policyrule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrule + ADD CONSTRAINT nautobot_firewall_models_policyrule_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_policyrulem2m nautobot_firewall_models_policyrulem2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrulem2m + ADD CONSTRAINT nautobot_firewall_models_policyrulem2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_serviceobject nautobot_firewall_models_serviceobject_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobject + ADD CONSTRAINT nautobot_firewall_models_serviceobject_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroup nautobot_firewall_models_serviceobjectgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobjectgroup + ADD CONSTRAINT nautobot_firewall_models_serviceobjectgroup_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroup nautobot_firewall_models_serviceobjectgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobjectgroup + ADD CONSTRAINT nautobot_firewall_models_serviceobjectgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroupm2m nautobot_firewall_models_serviceobjectgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_models_serviceobjectgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_srcaddrgroupm2m nautobot_firewall_models_srcaddrgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_models_srcaddrgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_srcaddrm2m nautobot_firewall_models_srcaddrm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcaddrm2m + ADD CONSTRAINT nautobot_firewall_models_srcaddrm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_srcsvcgroupm2m nautobot_firewall_models_srcsvcgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_models_srcsvcgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_srcsvcm2m nautobot_firewall_models_srcsvcm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcsvcm2m + ADD CONSTRAINT nautobot_firewall_models_srcsvcm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_srcusergroupm2m nautobot_firewall_models_srcusergroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcusergroupm2m + ADD CONSTRAINT nautobot_firewall_models_srcusergroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_srcuserm2m nautobot_firewall_models_srcuserm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcuserm2m + ADD CONSTRAINT nautobot_firewall_models_srcuserm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_destsvcgroupm2m nautobot_firewall_models_svcgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_models_svcgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_destsvcm2m nautobot_firewall_models_svcm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destsvcm2m + ADD CONSTRAINT nautobot_firewall_models_svcm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_userobject nautobot_firewall_models_userobject_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobject + ADD CONSTRAINT nautobot_firewall_models_userobject_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_userobject nautobot_firewall_models_userobject_username_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobject + ADD CONSTRAINT nautobot_firewall_models_userobject_username_key UNIQUE (username); + + +-- +-- Name: nautobot_firewall_models_userobjectgroup nautobot_firewall_models_userobjectgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobjectgroup + ADD CONSTRAINT nautobot_firewall_models_userobjectgroup_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_userobjectgroup nautobot_firewall_models_userobjectgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobjectgroup + ADD CONSTRAINT nautobot_firewall_models_userobjectgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_userobjectgroupm2m nautobot_firewall_models_userobjectgroupm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_models_userobjectgroupm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_zone nautobot_firewall_models_zone_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zone + ADD CONSTRAINT nautobot_firewall_models_zone_name_key UNIQUE (name); + + +-- +-- Name: nautobot_firewall_models_zone nautobot_firewall_models_zone_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zone + ADD CONSTRAINT nautobot_firewall_models_zone_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_zoneinterfacem2m nautobot_firewall_models_zoneinterfacem2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zoneinterfacem2m + ADD CONSTRAINT nautobot_firewall_models_zoneinterfacem2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_firewall_models_zonevrfm2m nautobot_firewall_models_zonevrfm2m_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zonevrfm2m + ADD CONSTRAINT nautobot_firewall_models_zonevrfm2m_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_configcompliance nautobot_golden_config_c_device_id_rule_id_bad42baf_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configcompliance + ADD CONSTRAINT nautobot_golden_config_c_device_id_rule_id_bad42baf_uniq UNIQUE (device_id, rule_id); + + +-- +-- Name: nautobot_golden_config_compliancerule nautobot_golden_config_c_feature_id_platform_id_d3bedb27_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancerule + ADD CONSTRAINT nautobot_golden_config_c_feature_id_platform_id_d3bedb27_uniq UNIQUE (feature_id, platform_id); + + +-- +-- Name: nautobot_golden_config_configremove nautobot_golden_config_c_name_platform_id_7172a3d6_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configremove + ADD CONSTRAINT nautobot_golden_config_c_name_platform_id_7172a3d6_uniq UNIQUE (name, platform_id); + + +-- +-- Name: nautobot_golden_config_configreplace nautobot_golden_config_c_name_platform_id_e164ee7b_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configreplace + ADD CONSTRAINT nautobot_golden_config_c_name_platform_id_e164ee7b_uniq UNIQUE (name, platform_id); + + +-- +-- Name: nautobot_golden_config_compliancefeature nautobot_golden_config_compliancefeature_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancefeature + ADD CONSTRAINT nautobot_golden_config_compliancefeature_name_key UNIQUE (name); + + +-- +-- Name: nautobot_golden_config_compliancefeature nautobot_golden_config_compliancefeature_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancefeature + ADD CONSTRAINT nautobot_golden_config_compliancefeature_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_compliancefeature nautobot_golden_config_compliancefeature_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancefeature + ADD CONSTRAINT nautobot_golden_config_compliancefeature_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_golden_config_compliancerule nautobot_golden_config_compliancerule_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancerule + ADD CONSTRAINT nautobot_golden_config_compliancerule_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_configcompliance nautobot_golden_config_configcompliance_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configcompliance + ADD CONSTRAINT nautobot_golden_config_configcompliance_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_configremove nautobot_golden_config_configremove_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configremove + ADD CONSTRAINT nautobot_golden_config_configremove_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_configreplace nautobot_golden_config_configreplace_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configreplace + ADD CONSTRAINT nautobot_golden_config_configreplace_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_goldenconfig nautobot_golden_config_goldenconfig_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfig + ADD CONSTRAINT nautobot_golden_config_goldenconfig_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_config_goldenconfigsetting_dynamic_group_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_config_goldenconfigsetting_dynamic_group_id_key UNIQUE (dynamic_group_id); + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_config_goldenconfigsetting_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_config_goldenconfigsetting_name_key UNIQUE (name); + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_config_goldenconfigsetting_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_config_goldenconfigsetting_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_config_goldenconfigsetting_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_config_goldenconfigsetting_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_ssot_sync nautobot_ssot_sync_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_ssot_sync + ADD CONSTRAINT nautobot_ssot_sync_pkey PRIMARY KEY (id); + + +-- +-- Name: nautobot_ssot_synclogentry nautobot_ssot_synclogentry_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_ssot_synclogentry + ADD CONSTRAINT nautobot_ssot_synclogentry_pkey PRIMARY KEY (id); + + +-- +-- Name: social_auth_association social_auth_association_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_association + ADD CONSTRAINT social_auth_association_pkey PRIMARY KEY (id); + + +-- +-- Name: social_auth_association social_auth_association_server_url_handle_078befa2_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_association + ADD CONSTRAINT social_auth_association_server_url_handle_078befa2_uniq UNIQUE (server_url, handle); + + +-- +-- Name: social_auth_code social_auth_code_email_code_801b2d02_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_code + ADD CONSTRAINT social_auth_code_email_code_801b2d02_uniq UNIQUE (email, code); + + +-- +-- Name: social_auth_code social_auth_code_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_code + ADD CONSTRAINT social_auth_code_pkey PRIMARY KEY (id); + + +-- +-- Name: social_auth_nonce social_auth_nonce_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_nonce + ADD CONSTRAINT social_auth_nonce_pkey PRIMARY KEY (id); + + +-- +-- Name: social_auth_nonce social_auth_nonce_server_url_timestamp_salt_f6284463_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_nonce + ADD CONSTRAINT social_auth_nonce_server_url_timestamp_salt_f6284463_uniq UNIQUE (server_url, "timestamp", salt); + + +-- +-- Name: social_auth_partial social_auth_partial_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_partial + ADD CONSTRAINT social_auth_partial_pkey PRIMARY KEY (id); + + +-- +-- Name: social_auth_usersocialauth social_auth_usersocialauth_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_usersocialauth + ADD CONSTRAINT social_auth_usersocialauth_pkey PRIMARY KEY (id); + + +-- +-- Name: social_auth_usersocialauth social_auth_usersocialauth_provider_uid_e6b5e668_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_usersocialauth + ADD CONSTRAINT social_auth_usersocialauth_provider_uid_e6b5e668_uniq UNIQUE (provider, uid); + + +-- +-- Name: taggit_tag taggit_tag_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_tag + ADD CONSTRAINT taggit_tag_name_key UNIQUE (name); + + +-- +-- Name: taggit_tag taggit_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_tag + ADD CONSTRAINT taggit_tag_pkey PRIMARY KEY (id); + + +-- +-- Name: taggit_tag taggit_tag_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_tag + ADD CONSTRAINT taggit_tag_slug_key UNIQUE (slug); + + +-- +-- Name: taggit_taggeditem taggit_taggeditem_content_type_id_object_i_4bb97a8e_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_taggeditem + ADD CONSTRAINT taggit_taggeditem_content_type_id_object_i_4bb97a8e_uniq UNIQUE (content_type_id, object_id, tag_id); + + +-- +-- Name: taggit_taggeditem taggit_taggeditem_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_taggeditem + ADD CONSTRAINT taggit_taggeditem_pkey PRIMARY KEY (id); + + +-- +-- Name: tenancy_tenant tenancy_tenant_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenant + ADD CONSTRAINT tenancy_tenant_name_key UNIQUE (name); + + +-- +-- Name: tenancy_tenant tenancy_tenant_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenant + ADD CONSTRAINT tenancy_tenant_pkey PRIMARY KEY (id); + + +-- +-- Name: tenancy_tenant tenancy_tenant_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenant + ADD CONSTRAINT tenancy_tenant_slug_key UNIQUE (slug); + + +-- +-- Name: tenancy_tenantgroup tenancy_tenantgroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenantgroup + ADD CONSTRAINT tenancy_tenantgroup_name_key UNIQUE (name); + + +-- +-- Name: tenancy_tenantgroup tenancy_tenantgroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenantgroup + ADD CONSTRAINT tenancy_tenantgroup_pkey PRIMARY KEY (id); + + +-- +-- Name: tenancy_tenantgroup tenancy_tenantgroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenantgroup + ADD CONSTRAINT tenancy_tenantgroup_slug_key UNIQUE (slug); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_hardwarelcm unique_device_type; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_hardwarelcm + ADD CONSTRAINT unique_device_type UNIQUE (device_type_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_hardwarelcm unique_inventory_item_part; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_hardwarelcm + ADD CONSTRAINT unique_inventory_item_part UNIQUE (inventory_item); + + +-- +-- Name: extras_configcontextschema unique_name_owner; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontextschema + ADD CONSTRAINT unique_name_owner UNIQUE (name, owner_content_type_id, owner_object_id); + + +-- +-- Name: nautobot_firewall_models_iprange unique_with_vrf; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_iprange + ADD CONSTRAINT unique_with_vrf UNIQUE (start_address, end_address, vrf_id); + + +-- +-- Name: users_objectpermission_groups users_objectpermission_g_objectpermission_id_grou_3b62a39c_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_groups + ADD CONSTRAINT users_objectpermission_g_objectpermission_id_grou_3b62a39c_uniq UNIQUE (objectpermission_id, group_id); + + +-- +-- Name: users_objectpermission_groups users_objectpermission_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_groups + ADD CONSTRAINT users_objectpermission_groups_pkey PRIMARY KEY (id); + + +-- +-- Name: users_objectpermission_object_types users_objectpermission_o_objectpermission_id_cont_7c40d31a_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_object_types + ADD CONSTRAINT users_objectpermission_o_objectpermission_id_cont_7c40d31a_uniq UNIQUE (objectpermission_id, contenttype_id); + + +-- +-- Name: users_objectpermission_object_types users_objectpermission_object_types_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_object_types + ADD CONSTRAINT users_objectpermission_object_types_pkey PRIMARY KEY (id); + + +-- +-- Name: users_objectpermission users_objectpermission_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission + ADD CONSTRAINT users_objectpermission_pkey PRIMARY KEY (id); + + +-- +-- Name: users_objectpermission_users users_objectpermission_u_objectpermission_id_user_3a7db108_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_users + ADD CONSTRAINT users_objectpermission_u_objectpermission_id_user_3a7db108_uniq UNIQUE (objectpermission_id, user_id); + + +-- +-- Name: users_objectpermission_users users_objectpermission_users_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_users + ADD CONSTRAINT users_objectpermission_users_pkey PRIMARY KEY (id); + + +-- +-- Name: users_token users_token_key_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_token + ADD CONSTRAINT users_token_key_key UNIQUE (key); + + +-- +-- Name: users_token users_token_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_token + ADD CONSTRAINT users_token_pkey PRIMARY KEY (id); + + +-- +-- Name: virtualization_cluster virtualization_cluster_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_cluster_name_key UNIQUE (name); + + +-- +-- Name: virtualization_cluster virtualization_cluster_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_cluster_pkey PRIMARY KEY (id); + + +-- +-- Name: virtualization_clustergroup virtualization_clustergroup_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_clustergroup + ADD CONSTRAINT virtualization_clustergroup_name_key UNIQUE (name); + + +-- +-- Name: virtualization_clustergroup virtualization_clustergroup_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_clustergroup + ADD CONSTRAINT virtualization_clustergroup_pkey PRIMARY KEY (id); + + +-- +-- Name: virtualization_clustergroup virtualization_clustergroup_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_clustergroup + ADD CONSTRAINT virtualization_clustergroup_slug_key UNIQUE (slug); + + +-- +-- Name: virtualization_clustertype virtualization_clustertype_name_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_clustertype + ADD CONSTRAINT virtualization_clustertype_name_key UNIQUE (name); + + +-- +-- Name: virtualization_clustertype virtualization_clustertype_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_clustertype + ADD CONSTRAINT virtualization_clustertype_pkey PRIMARY KEY (id); + + +-- +-- Name: virtualization_clustertype virtualization_clustertype_slug_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_clustertype + ADD CONSTRAINT virtualization_clustertype_slug_key UNIQUE (slug); + + +-- +-- Name: virtualization_virtualmachine virtualization_virtualma_cluster_id_tenant_id_nam_56c69afb_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtualma_cluster_id_tenant_id_nam_56c69afb_uniq UNIQUE (cluster_id, tenant_id, name); + + +-- +-- Name: virtualization_virtualmachine virtualization_virtualmachine_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtualmachine_pkey PRIMARY KEY (id); + + +-- +-- Name: virtualization_virtualmachine virtualization_virtualmachine_primary_ip4_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtualmachine_primary_ip4_id_key UNIQUE (primary_ip4_id); + + +-- +-- Name: virtualization_virtualmachine virtualization_virtualmachine_primary_ip6_id_key; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtualmachine_primary_ip6_id_key UNIQUE (primary_ip6_id); + + +-- +-- Name: virtualization_vminterface virtualization_vminterfa_virtual_machine_id_name_cfb9c423_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vminterfa_virtual_machine_id_name_cfb9c423_uniq UNIQUE (virtual_machine_id, name); + + +-- +-- Name: virtualization_vminterface_tagged_vlans virtualization_vminterfa_vminterface_id_vlan_id_27e907db_uniq; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface_tagged_vlans + ADD CONSTRAINT virtualization_vminterfa_vminterface_id_vlan_id_27e907db_uniq UNIQUE (vminterface_id, vlan_id); + + +-- +-- Name: virtualization_vminterface virtualization_vminterface_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vminterface_pkey PRIMARY KEY (id); + + +-- +-- Name: virtualization_vminterface_tagged_vlans virtualization_vminterface_tagged_vlans_pkey; Type: CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface_tagged_vlans + ADD CONSTRAINT virtualization_vminterface_tagged_vlans_pkey PRIMARY KEY (id); + + +-- +-- Name: auth_group_name_a6ea08ec_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_group_name_a6ea08ec_like ON public.auth_group USING btree (name varchar_pattern_ops); + + +-- +-- Name: auth_group_permissions_group_id_b120cbf9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_group_permissions_group_id_b120cbf9 ON public.auth_group_permissions USING btree (group_id); + + +-- +-- Name: auth_group_permissions_permission_id_84c5c92e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_group_permissions_permission_id_84c5c92e ON public.auth_group_permissions USING btree (permission_id); + + +-- +-- Name: auth_permission_content_type_id_2f476e4b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_permission_content_type_id_2f476e4b ON public.auth_permission USING btree (content_type_id); + + +-- +-- Name: auth_user_groups_group_id_97559544; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_user_groups_group_id_97559544 ON public.auth_user_groups USING btree (group_id); + + +-- +-- Name: auth_user_groups_user_id_6a12ed8b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_user_groups_user_id_6a12ed8b ON public.auth_user_groups USING btree (user_id); + + +-- +-- Name: auth_user_user_permissions_permission_id_1fbb5f2c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_user_user_permissions_permission_id_1fbb5f2c ON public.auth_user_user_permissions USING btree (permission_id); + + +-- +-- Name: auth_user_user_permissions_user_id_a95ead1b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_user_user_permissions_user_id_a95ead1b ON public.auth_user_user_permissions USING btree (user_id); + + +-- +-- Name: auth_user_username_6821ab7c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX auth_user_username_6821ab7c_like ON public.auth_user USING btree (username varchar_pattern_ops); + + +-- +-- Name: circuits_circuit_provider_id_d9195418; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuit_provider_id_d9195418 ON public.circuits_circuit USING btree (provider_id); + + +-- +-- Name: circuits_circuit_status_id_6433793f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuit_status_id_6433793f ON public.circuits_circuit USING btree (status_id); + + +-- +-- Name: circuits_circuit_tenant_id_812508a5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuit_tenant_id_812508a5 ON public.circuits_circuit USING btree (tenant_id); + + +-- +-- Name: circuits_circuit_termination_a_id_f891adac; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuit_termination_a_id_f891adac ON public.circuits_circuit USING btree (termination_a_id); + + +-- +-- Name: circuits_circuit_termination_z_id_377b8551; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuit_termination_z_id_377b8551 ON public.circuits_circuit USING btree (termination_z_id); + + +-- +-- Name: circuits_circuit_type_id_1b9f485a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuit_type_id_1b9f485a ON public.circuits_circuit USING btree (type_id); + + +-- +-- Name: circuits_circuittermination__cable_peer_type_id_bd122156; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination__cable_peer_type_id_bd122156 ON public.circuits_circuittermination USING btree (_cable_peer_type_id); + + +-- +-- Name: circuits_circuittermination__path_id_6dfd8db0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination__path_id_6dfd8db0 ON public.circuits_circuittermination USING btree (_path_id); + + +-- +-- Name: circuits_circuittermination_cable_id_35e9f703; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination_cable_id_35e9f703 ON public.circuits_circuittermination USING btree (cable_id); + + +-- +-- Name: circuits_circuittermination_circuit_id_257e87e7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination_circuit_id_257e87e7 ON public.circuits_circuittermination USING btree (circuit_id); + + +-- +-- Name: circuits_circuittermination_location_id_9896bd96; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination_location_id_9896bd96 ON public.circuits_circuittermination USING btree (location_id); + + +-- +-- Name: circuits_circuittermination_provider_network_id_b0c660f1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination_provider_network_id_b0c660f1 ON public.circuits_circuittermination USING btree (provider_network_id); + + +-- +-- Name: circuits_circuittermination_site_id_e6fe5652; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittermination_site_id_e6fe5652 ON public.circuits_circuittermination USING btree (site_id); + + +-- +-- Name: circuits_circuittype_name_8256ea9a_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittype_name_8256ea9a_like ON public.circuits_circuittype USING btree (name varchar_pattern_ops); + + +-- +-- Name: circuits_circuittype_slug_9b4b3cf9_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_circuittype_slug_9b4b3cf9_like ON public.circuits_circuittype USING btree (slug varchar_pattern_ops); + + +-- +-- Name: circuits_provider_name_8f2514f5_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_provider_name_8f2514f5_like ON public.circuits_provider USING btree (name varchar_pattern_ops); + + +-- +-- Name: circuits_provider_slug_c3c0aa10_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_provider_slug_c3c0aa10_like ON public.circuits_provider USING btree (slug varchar_pattern_ops); + + +-- +-- Name: circuits_providernetwork_name_9d69fb4d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_providernetwork_name_9d69fb4d ON public.circuits_providernetwork USING btree (name); + + +-- +-- Name: circuits_providernetwork_name_9d69fb4d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_providernetwork_name_9d69fb4d_like ON public.circuits_providernetwork USING btree (name varchar_pattern_ops); + + +-- +-- Name: circuits_providernetwork_provider_id_7992236c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_providernetwork_provider_id_7992236c ON public.circuits_providernetwork USING btree (provider_id); + + +-- +-- Name: circuits_providernetwork_slug_7a769c16_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX circuits_providernetwork_slug_7a769c16_like ON public.circuits_providernetwork USING btree (slug varchar_pattern_ops); + + +-- +-- Name: constance_config_key_baef3136_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX constance_config_key_baef3136_like ON public.constance_config USING btree (key varchar_pattern_ops); + + +-- +-- Name: dcim_cable__termination_a_device_id_e59cde1c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cable__termination_a_device_id_e59cde1c ON public.dcim_cable USING btree (_termination_a_device_id); + + +-- +-- Name: dcim_cable__termination_b_device_id_a9073762; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cable__termination_b_device_id_a9073762 ON public.dcim_cable USING btree (_termination_b_device_id); + + +-- +-- Name: dcim_cable_status_id_6a580869; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cable_status_id_6a580869 ON public.dcim_cable USING btree (status_id); + + +-- +-- Name: dcim_cable_termination_a_type_id_a614bab8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cable_termination_a_type_id_a614bab8 ON public.dcim_cable USING btree (termination_a_type_id); + + +-- +-- Name: dcim_cable_termination_b_type_id_a91595d0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cable_termination_b_type_id_a91595d0 ON public.dcim_cable USING btree (termination_b_type_id); + + +-- +-- Name: dcim_cablepath_destination_type_id_a8c1654b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cablepath_destination_type_id_a8c1654b ON public.dcim_cablepath USING btree (destination_type_id); + + +-- +-- Name: dcim_cablepath_origin_type_id_6de54f6d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_cablepath_origin_type_id_6de54f6d ON public.dcim_cablepath USING btree (origin_type_id); + + +-- +-- Name: dcim_consoleport__cable_peer_type_id_52adb1be; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport__cable_peer_type_id_52adb1be ON public.dcim_consoleport USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_consoleport__name_6ac60d99; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport__name_6ac60d99 ON public.dcim_consoleport USING btree (_name); + + +-- +-- Name: dcim_consoleport__name_6ac60d99_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport__name_6ac60d99_like ON public.dcim_consoleport USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_consoleport__path_id_e40a4436; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport__path_id_e40a4436 ON public.dcim_consoleport USING btree (_path_id); + + +-- +-- Name: dcim_consoleport_cable_id_a9ae5465; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport_cable_id_a9ae5465 ON public.dcim_consoleport USING btree (cable_id); + + +-- +-- Name: dcim_consoleport_device_id_f2d90d3c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport_device_id_f2d90d3c ON public.dcim_consoleport USING btree (device_id); + + +-- +-- Name: dcim_consoleport_name_ef94d0d1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport_name_ef94d0d1 ON public.dcim_consoleport USING btree (name); + + +-- +-- Name: dcim_consoleport_name_ef94d0d1_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleport_name_ef94d0d1_like ON public.dcim_consoleport USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_consoleporttemplate_device_type_id_075d4015; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleporttemplate_device_type_id_075d4015 ON public.dcim_consoleporttemplate USING btree (device_type_id); + + +-- +-- Name: dcim_consoleserverport__cable_peer_type_id_132b6744; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport__cable_peer_type_id_132b6744 ON public.dcim_consoleserverport USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_consoleserverport__name_70f9317c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport__name_70f9317c ON public.dcim_consoleserverport USING btree (_name); + + +-- +-- Name: dcim_consoleserverport__name_70f9317c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport__name_70f9317c_like ON public.dcim_consoleserverport USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_consoleserverport__path_id_dc5abe09; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport__path_id_dc5abe09 ON public.dcim_consoleserverport USING btree (_path_id); + + +-- +-- Name: dcim_consoleserverport_cable_id_f2940dfd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport_cable_id_f2940dfd ON public.dcim_consoleserverport USING btree (cable_id); + + +-- +-- Name: dcim_consoleserverport_device_id_d9866581; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport_device_id_d9866581 ON public.dcim_consoleserverport USING btree (device_id); + + +-- +-- Name: dcim_consoleserverport_name_2319aaf4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport_name_2319aaf4 ON public.dcim_consoleserverport USING btree (name); + + +-- +-- Name: dcim_consoleserverport_name_2319aaf4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverport_name_2319aaf4_like ON public.dcim_consoleserverport USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_consoleserverporttemplate_device_type_id_579bdc86; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_consoleserverporttemplate_device_type_id_579bdc86 ON public.dcim_consoleserverporttemplate USING btree (device_type_id); + + +-- +-- Name: dcim_device__name_a8ed2cdf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device__name_a8ed2cdf ON public.dcim_device USING btree (_name); + + +-- +-- Name: dcim_device__name_a8ed2cdf_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device__name_a8ed2cdf_like ON public.dcim_device USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_device_asset_tag_8dac1079_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_asset_tag_8dac1079_like ON public.dcim_device USING btree (asset_tag varchar_pattern_ops); + + +-- +-- Name: dcim_device_cluster_id_cf852f78; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_cluster_id_cf852f78 ON public.dcim_device USING btree (cluster_id); + + +-- +-- Name: dcim_device_device_redundancy_group_id_ca97f1fc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_device_redundancy_group_id_ca97f1fc ON public.dcim_device USING btree (device_redundancy_group_id); + + +-- +-- Name: dcim_device_device_role_id_682e8188; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_device_role_id_682e8188 ON public.dcim_device USING btree (device_role_id); + + +-- +-- Name: dcim_device_device_type_id_d61b4086; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_device_type_id_d61b4086 ON public.dcim_device USING btree (device_type_id); + + +-- +-- Name: dcim_device_local_context_data_owner_content_type_id_5d06013b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_local_context_data_owner_content_type_id_5d06013b ON public.dcim_device USING btree (local_context_data_owner_content_type_id); + + +-- +-- Name: dcim_device_local_context_schema_id_0ff8d657; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_local_context_schema_id_0ff8d657 ON public.dcim_device USING btree (local_context_schema_id); + + +-- +-- Name: dcim_device_location_id_11a7bedb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_location_id_11a7bedb ON public.dcim_device USING btree (location_id); + + +-- +-- Name: dcim_device_name_cfa61dd8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_name_cfa61dd8 ON public.dcim_device USING btree (name); + + +-- +-- Name: dcim_device_name_cfa61dd8_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_name_cfa61dd8_like ON public.dcim_device USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_device_platform_id_468138f1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_platform_id_468138f1 ON public.dcim_device USING btree (platform_id); + + +-- +-- Name: dcim_device_rack_id_23bde71f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_rack_id_23bde71f ON public.dcim_device USING btree (rack_id); + + +-- +-- Name: dcim_device_secrets_group_id_52d75f4a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_secrets_group_id_52d75f4a ON public.dcim_device USING btree (secrets_group_id); + + +-- +-- Name: dcim_device_serial_9170722b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_serial_9170722b ON public.dcim_device USING btree (serial); + + +-- +-- Name: dcim_device_serial_9170722b_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_serial_9170722b_like ON public.dcim_device USING btree (serial varchar_pattern_ops); + + +-- +-- Name: dcim_device_site_id_ff897cf6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_site_id_ff897cf6 ON public.dcim_device USING btree (site_id); + + +-- +-- Name: dcim_device_status_id_96d2fc6f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_status_id_96d2fc6f ON public.dcim_device USING btree (status_id); + + +-- +-- Name: dcim_device_tenant_id_dcea7969; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_tenant_id_dcea7969 ON public.dcim_device USING btree (tenant_id); + + +-- +-- Name: dcim_device_virtual_chassis_id_aed51693; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_device_virtual_chassis_id_aed51693 ON public.dcim_device USING btree (virtual_chassis_id); + + +-- +-- Name: dcim_devicebay__name_d9f2bdd3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicebay__name_d9f2bdd3 ON public.dcim_devicebay USING btree (_name); + + +-- +-- Name: dcim_devicebay__name_d9f2bdd3_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicebay__name_d9f2bdd3_like ON public.dcim_devicebay USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_devicebay_device_id_0c8a1218; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicebay_device_id_0c8a1218 ON public.dcim_devicebay USING btree (device_id); + + +-- +-- Name: dcim_devicebay_name_ee470978; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicebay_name_ee470978 ON public.dcim_devicebay USING btree (name); + + +-- +-- Name: dcim_devicebay_name_ee470978_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicebay_name_ee470978_like ON public.dcim_devicebay USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_devicebaytemplate_device_type_id_f4b24a29; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicebaytemplate_device_type_id_f4b24a29 ON public.dcim_devicebaytemplate USING btree (device_type_id); + + +-- +-- Name: dcim_deviceredundancygroup_name_54930246_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_deviceredundancygroup_name_54930246_like ON public.dcim_deviceredundancygroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_deviceredundancygroup_secrets_group_id_19061ee9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_deviceredundancygroup_secrets_group_id_19061ee9 ON public.dcim_deviceredundancygroup USING btree (secrets_group_id); + + +-- +-- Name: dcim_deviceredundancygroup_slug_a121420d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_deviceredundancygroup_slug_a121420d_like ON public.dcim_deviceredundancygroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_deviceredundancygroup_status_id_de1ca6f3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_deviceredundancygroup_status_id_de1ca6f3 ON public.dcim_deviceredundancygroup USING btree (status_id); + + +-- +-- Name: dcim_devicerole_name_1c813306_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicerole_name_1c813306_like ON public.dcim_devicerole USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_devicerole_slug_7952643b_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicerole_slug_7952643b_like ON public.dcim_devicerole USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_devicetype_manufacturer_id_a3e8029e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicetype_manufacturer_id_a3e8029e ON public.dcim_devicetype USING btree (manufacturer_id); + + +-- +-- Name: dcim_devicetype_slug_448745bd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicetype_slug_448745bd ON public.dcim_devicetype USING btree (slug); + + +-- +-- Name: dcim_devicetype_slug_448745bd_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_devicetype_slug_448745bd_like ON public.dcim_devicetype USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_frontport__cable_peer_type_id_c4690f56; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport__cable_peer_type_id_c4690f56 ON public.dcim_frontport USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_frontport__name_273b2ca3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport__name_273b2ca3 ON public.dcim_frontport USING btree (_name); + + +-- +-- Name: dcim_frontport__name_273b2ca3_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport__name_273b2ca3_like ON public.dcim_frontport USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_frontport_cable_id_04ff8aab; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport_cable_id_04ff8aab ON public.dcim_frontport USING btree (cable_id); + + +-- +-- Name: dcim_frontport_device_id_950557b5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport_device_id_950557b5 ON public.dcim_frontport USING btree (device_id); + + +-- +-- Name: dcim_frontport_name_8972111f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport_name_8972111f ON public.dcim_frontport USING btree (name); + + +-- +-- Name: dcim_frontport_name_8972111f_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport_name_8972111f_like ON public.dcim_frontport USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_frontport_rear_port_id_78df2532; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontport_rear_port_id_78df2532 ON public.dcim_frontport USING btree (rear_port_id); + + +-- +-- Name: dcim_frontporttemplate_device_type_id_f088b952; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontporttemplate_device_type_id_f088b952 ON public.dcim_frontporttemplate USING btree (device_type_id); + + +-- +-- Name: dcim_frontporttemplate_rear_port_id_9775411b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_frontporttemplate_rear_port_id_9775411b ON public.dcim_frontporttemplate USING btree (rear_port_id); + + +-- +-- Name: dcim_interface__cable_peer_type_id_ce52cb81; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface__cable_peer_type_id_ce52cb81 ON public.dcim_interface USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_interface__name_8796fa61; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface__name_8796fa61 ON public.dcim_interface USING btree (_name); + + +-- +-- Name: dcim_interface__name_8796fa61_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface__name_8796fa61_like ON public.dcim_interface USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_interface__path_id_f8f4f7f0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface__path_id_f8f4f7f0 ON public.dcim_interface USING btree (_path_id); + + +-- +-- Name: dcim_interface_bridge_id_f2a8df85; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_bridge_id_f2a8df85 ON public.dcim_interface USING btree (bridge_id); + + +-- +-- Name: dcim_interface_cable_id_1b264edb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_cable_id_1b264edb ON public.dcim_interface USING btree (cable_id); + + +-- +-- Name: dcim_interface_device_id_359c6115; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_device_id_359c6115 ON public.dcim_interface USING btree (device_id); + + +-- +-- Name: dcim_interface_lag_id_ea1a1d12; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_lag_id_ea1a1d12 ON public.dcim_interface USING btree (lag_id); + + +-- +-- Name: dcim_interface_name_bc4e48ab; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_name_bc4e48ab ON public.dcim_interface USING btree (name); + + +-- +-- Name: dcim_interface_name_bc4e48ab_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_name_bc4e48ab_like ON public.dcim_interface USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_interface_parent_interface_id_dc46b61a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_parent_interface_id_dc46b61a ON public.dcim_interface USING btree (parent_interface_id); + + +-- +-- Name: dcim_interface_status_id_5d68d3d6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_status_id_5d68d3d6 ON public.dcim_interface USING btree (status_id); + + +-- +-- Name: dcim_interface_tagged_vlans_interface_id_5870c9e9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_tagged_vlans_interface_id_5870c9e9 ON public.dcim_interface_tagged_vlans USING btree (interface_id); + + +-- +-- Name: dcim_interface_tagged_vlans_vlan_id_e027005c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_tagged_vlans_vlan_id_e027005c ON public.dcim_interface_tagged_vlans USING btree (vlan_id); + + +-- +-- Name: dcim_interface_untagged_vlan_id_838dc7be; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interface_untagged_vlan_id_838dc7be ON public.dcim_interface USING btree (untagged_vlan_id); + + +-- +-- Name: dcim_interfacetemplate_device_type_id_4bfcbfab; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_interfacetemplate_device_type_id_4bfcbfab ON public.dcim_interfacetemplate USING btree (device_type_id); + + +-- +-- Name: dcim_inventoryitem__name_959f73cc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem__name_959f73cc ON public.dcim_inventoryitem USING btree (_name); + + +-- +-- Name: dcim_inventoryitem__name_959f73cc_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem__name_959f73cc_like ON public.dcim_inventoryitem USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_inventoryitem_asset_tag_d3289273_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_asset_tag_d3289273_like ON public.dcim_inventoryitem USING btree (asset_tag varchar_pattern_ops); + + +-- +-- Name: dcim_inventoryitem_device_id_033d83f8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_device_id_033d83f8 ON public.dcim_inventoryitem USING btree (device_id); + + +-- +-- Name: dcim_inventoryitem_manufacturer_id_dcd1b78a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_manufacturer_id_dcd1b78a ON public.dcim_inventoryitem USING btree (manufacturer_id); + + +-- +-- Name: dcim_inventoryitem_name_3e415949; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_name_3e415949 ON public.dcim_inventoryitem USING btree (name); + + +-- +-- Name: dcim_inventoryitem_name_3e415949_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_name_3e415949_like ON public.dcim_inventoryitem USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_inventoryitem_parent_id_7ebcd457; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_parent_id_7ebcd457 ON public.dcim_inventoryitem USING btree (parent_id); + + +-- +-- Name: dcim_inventoryitem_serial_9f53019e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_serial_9f53019e ON public.dcim_inventoryitem USING btree (serial); + + +-- +-- Name: dcim_inventoryitem_serial_9f53019e_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_serial_9f53019e_like ON public.dcim_inventoryitem USING btree (serial varchar_pattern_ops); + + +-- +-- Name: dcim_inventoryitem_tree_id_4676ade2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_inventoryitem_tree_id_4676ade2 ON public.dcim_inventoryitem USING btree (tree_id); + + +-- +-- Name: dcim_location__name_09ea12a5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location__name_09ea12a5 ON public.dcim_location USING btree (_name); + + +-- +-- Name: dcim_location__name_09ea12a5_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location__name_09ea12a5_like ON public.dcim_location USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_location_location_type_id_511a9421; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_location_type_id_511a9421 ON public.dcim_location USING btree (location_type_id); + + +-- +-- Name: dcim_location_name_da208275; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_name_da208275 ON public.dcim_location USING btree (name); + + +-- +-- Name: dcim_location_name_da208275_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_name_da208275_like ON public.dcim_location USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_location_parent_id_d77f3318; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_parent_id_d77f3318 ON public.dcim_location USING btree (parent_id); + + +-- +-- Name: dcim_location_site_id_b55e975f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_site_id_b55e975f ON public.dcim_location USING btree (site_id); + + +-- +-- Name: dcim_location_slug_352c5472_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_slug_352c5472_like ON public.dcim_location USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_location_status_id_3d74f10a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_status_id_3d74f10a ON public.dcim_location USING btree (status_id); + + +-- +-- Name: dcim_location_tenant_id_2c4df974; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_location_tenant_id_2c4df974 ON public.dcim_location USING btree (tenant_id); + + +-- +-- Name: dcim_locationtype_content_types_contenttype_id_806c318e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_locationtype_content_types_contenttype_id_806c318e ON public.dcim_locationtype_content_types USING btree (contenttype_id); + + +-- +-- Name: dcim_locationtype_content_types_locationtype_id_daa2005b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_locationtype_content_types_locationtype_id_daa2005b ON public.dcim_locationtype_content_types USING btree (locationtype_id); + + +-- +-- Name: dcim_locationtype_name_1eab0ffa_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_locationtype_name_1eab0ffa_like ON public.dcim_locationtype USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_locationtype_parent_id_023ca1c8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_locationtype_parent_id_023ca1c8 ON public.dcim_locationtype USING btree (parent_id); + + +-- +-- Name: dcim_locationtype_slug_f15ea070_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_locationtype_slug_f15ea070_like ON public.dcim_locationtype USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_manufacturer_name_841fcd92_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_manufacturer_name_841fcd92_like ON public.dcim_manufacturer USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_manufacturer_slug_00430749_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_manufacturer_slug_00430749_like ON public.dcim_manufacturer USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_platform_manufacturer_id_83f72d3d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_platform_manufacturer_id_83f72d3d ON public.dcim_platform USING btree (manufacturer_id); + + +-- +-- Name: dcim_platform_name_c2f04255_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_platform_name_c2f04255_like ON public.dcim_platform USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_platform_slug_b0908ae4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_platform_slug_b0908ae4_like ON public.dcim_platform USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_powerfeed__cable_peer_type_id_9f930589; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerfeed__cable_peer_type_id_9f930589 ON public.dcim_powerfeed USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_powerfeed__path_id_a1ea1f28; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerfeed__path_id_a1ea1f28 ON public.dcim_powerfeed USING btree (_path_id); + + +-- +-- Name: dcim_powerfeed_cable_id_ec44c4f8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerfeed_cable_id_ec44c4f8 ON public.dcim_powerfeed USING btree (cable_id); + + +-- +-- Name: dcim_powerfeed_power_panel_id_32bde3be; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerfeed_power_panel_id_32bde3be ON public.dcim_powerfeed USING btree (power_panel_id); + + +-- +-- Name: dcim_powerfeed_rack_id_7abba090; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerfeed_rack_id_7abba090 ON public.dcim_powerfeed USING btree (rack_id); + + +-- +-- Name: dcim_powerfeed_status_id_8c424cc3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerfeed_status_id_8c424cc3 ON public.dcim_powerfeed USING btree (status_id); + + +-- +-- Name: dcim_poweroutlet__cable_peer_type_id_bbff28d0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet__cable_peer_type_id_bbff28d0 ON public.dcim_poweroutlet USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_poweroutlet__name_0ecdd374; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet__name_0ecdd374 ON public.dcim_poweroutlet USING btree (_name); + + +-- +-- Name: dcim_poweroutlet__name_0ecdd374_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet__name_0ecdd374_like ON public.dcim_poweroutlet USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_poweroutlet__path_id_cbb47bb9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet__path_id_cbb47bb9 ON public.dcim_poweroutlet USING btree (_path_id); + + +-- +-- Name: dcim_poweroutlet_cable_id_8dbea1ec; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet_cable_id_8dbea1ec ON public.dcim_poweroutlet USING btree (cable_id); + + +-- +-- Name: dcim_poweroutlet_device_id_286351d7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet_device_id_286351d7 ON public.dcim_poweroutlet USING btree (device_id); + + +-- +-- Name: dcim_poweroutlet_name_98c8e7a2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet_name_98c8e7a2 ON public.dcim_poweroutlet USING btree (name); + + +-- +-- Name: dcim_poweroutlet_name_98c8e7a2_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet_name_98c8e7a2_like ON public.dcim_poweroutlet USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_poweroutlet_power_port_id_9bdf4163; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlet_power_port_id_9bdf4163 ON public.dcim_poweroutlet USING btree (power_port_id); + + +-- +-- Name: dcim_poweroutlettemplate_device_type_id_26b2316c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlettemplate_device_type_id_26b2316c ON public.dcim_poweroutlettemplate USING btree (device_type_id); + + +-- +-- Name: dcim_poweroutlettemplate_power_port_id_c0fb0c42; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_poweroutlettemplate_power_port_id_c0fb0c42 ON public.dcim_poweroutlettemplate USING btree (power_port_id); + + +-- +-- Name: dcim_powerpanel_location_id_474b60f8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerpanel_location_id_474b60f8 ON public.dcim_powerpanel USING btree (location_id); + + +-- +-- Name: dcim_powerpanel_name_09946067; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerpanel_name_09946067 ON public.dcim_powerpanel USING btree (name); + + +-- +-- Name: dcim_powerpanel_name_09946067_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerpanel_name_09946067_like ON public.dcim_powerpanel USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_powerpanel_rack_group_id_76467cc9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerpanel_rack_group_id_76467cc9 ON public.dcim_powerpanel USING btree (rack_group_id); + + +-- +-- Name: dcim_powerpanel_site_id_c430bc89; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerpanel_site_id_c430bc89 ON public.dcim_powerpanel USING btree (site_id); + + +-- +-- Name: dcim_powerport__cable_peer_type_id_9df2a278; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport__cable_peer_type_id_9df2a278 ON public.dcim_powerport USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_powerport__name_cd2ccdac; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport__name_cd2ccdac ON public.dcim_powerport USING btree (_name); + + +-- +-- Name: dcim_powerport__name_cd2ccdac_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport__name_cd2ccdac_like ON public.dcim_powerport USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_powerport__path_id_9fe4af8f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport__path_id_9fe4af8f ON public.dcim_powerport USING btree (_path_id); + + +-- +-- Name: dcim_powerport_cable_id_c9682ba2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport_cable_id_c9682ba2 ON public.dcim_powerport USING btree (cable_id); + + +-- +-- Name: dcim_powerport_device_id_ef7185ae; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport_device_id_ef7185ae ON public.dcim_powerport USING btree (device_id); + + +-- +-- Name: dcim_powerport_name_8b95aa68; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport_name_8b95aa68 ON public.dcim_powerport USING btree (name); + + +-- +-- Name: dcim_powerport_name_8b95aa68_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerport_name_8b95aa68_like ON public.dcim_powerport USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_powerporttemplate_device_type_id_1ddfbfcc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_powerporttemplate_device_type_id_1ddfbfcc ON public.dcim_powerporttemplate USING btree (device_type_id); + + +-- +-- Name: dcim_rack__name_e3323581; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack__name_e3323581 ON public.dcim_rack USING btree (_name); + + +-- +-- Name: dcim_rack__name_e3323581_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack__name_e3323581_like ON public.dcim_rack USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_rack_asset_tag_f88408e5_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_asset_tag_f88408e5_like ON public.dcim_rack USING btree (asset_tag varchar_pattern_ops); + + +-- +-- Name: dcim_rack_group_id_44e90ea9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_group_id_44e90ea9 ON public.dcim_rack USING btree (group_id); + + +-- +-- Name: dcim_rack_location_id_5f63ec31; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_location_id_5f63ec31 ON public.dcim_rack USING btree (location_id); + + +-- +-- Name: dcim_rack_name_b74aa0b4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_name_b74aa0b4 ON public.dcim_rack USING btree (name); + + +-- +-- Name: dcim_rack_name_b74aa0b4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_name_b74aa0b4_like ON public.dcim_rack USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_rack_role_id_62d6919e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_role_id_62d6919e ON public.dcim_rack USING btree (role_id); + + +-- +-- Name: dcim_rack_serial_d9cd7ac4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_serial_d9cd7ac4 ON public.dcim_rack USING btree (serial); + + +-- +-- Name: dcim_rack_serial_d9cd7ac4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_serial_d9cd7ac4_like ON public.dcim_rack USING btree (serial varchar_pattern_ops); + + +-- +-- Name: dcim_rack_site_id_403c7b3a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_site_id_403c7b3a ON public.dcim_rack USING btree (site_id); + + +-- +-- Name: dcim_rack_status_id_ee3dee3e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_status_id_ee3dee3e ON public.dcim_rack USING btree (status_id); + + +-- +-- Name: dcim_rack_tenant_id_7cdf3725; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rack_tenant_id_7cdf3725 ON public.dcim_rack USING btree (tenant_id); + + +-- +-- Name: dcim_rackgroup_location_id_5a6fdeac; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_location_id_5a6fdeac ON public.dcim_rackgroup USING btree (location_id); + + +-- +-- Name: dcim_rackgroup_name_6a84593a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_name_6a84593a ON public.dcim_rackgroup USING btree (name); + + +-- +-- Name: dcim_rackgroup_name_6a84593a_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_name_6a84593a_like ON public.dcim_rackgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_rackgroup_parent_id_cc315105; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_parent_id_cc315105 ON public.dcim_rackgroup USING btree (parent_id); + + +-- +-- Name: dcim_rackgroup_site_id_13520e89; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_site_id_13520e89 ON public.dcim_rackgroup USING btree (site_id); + + +-- +-- Name: dcim_rackgroup_slug_3f4582a7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_slug_3f4582a7 ON public.dcim_rackgroup USING btree (slug); + + +-- +-- Name: dcim_rackgroup_slug_3f4582a7_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_slug_3f4582a7_like ON public.dcim_rackgroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_rackgroup_tree_id_9c2ad6f4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackgroup_tree_id_9c2ad6f4 ON public.dcim_rackgroup USING btree (tree_id); + + +-- +-- Name: dcim_rackreservation_rack_id_1ebbaa9b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackreservation_rack_id_1ebbaa9b ON public.dcim_rackreservation USING btree (rack_id); + + +-- +-- Name: dcim_rackreservation_tenant_id_eb5e045f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackreservation_tenant_id_eb5e045f ON public.dcim_rackreservation USING btree (tenant_id); + + +-- +-- Name: dcim_rackreservation_user_id_0785a527; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackreservation_user_id_0785a527 ON public.dcim_rackreservation USING btree (user_id); + + +-- +-- Name: dcim_rackrole_name_9077cfcc_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackrole_name_9077cfcc_like ON public.dcim_rackrole USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_rackrole_slug_40bbcd3a_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rackrole_slug_40bbcd3a_like ON public.dcim_rackrole USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_rearport__cable_peer_type_id_cecf241c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport__cable_peer_type_id_cecf241c ON public.dcim_rearport USING btree (_cable_peer_type_id); + + +-- +-- Name: dcim_rearport__name_50f20c9e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport__name_50f20c9e ON public.dcim_rearport USING btree (_name); + + +-- +-- Name: dcim_rearport__name_50f20c9e_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport__name_50f20c9e_like ON public.dcim_rearport USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_rearport_cable_id_42c0e4e7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport_cable_id_42c0e4e7 ON public.dcim_rearport USING btree (cable_id); + + +-- +-- Name: dcim_rearport_device_id_0bdfe9c0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport_device_id_0bdfe9c0 ON public.dcim_rearport USING btree (device_id); + + +-- +-- Name: dcim_rearport_name_2300a129; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport_name_2300a129 ON public.dcim_rearport USING btree (name); + + +-- +-- Name: dcim_rearport_name_2300a129_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearport_name_2300a129_like ON public.dcim_rearport USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_rearporttemplate_device_type_id_6a02fd01; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_rearporttemplate_device_type_id_6a02fd01 ON public.dcim_rearporttemplate USING btree (device_type_id); + + +-- +-- Name: dcim_region_name_ba5a7082_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_region_name_ba5a7082_like ON public.dcim_region USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_region_parent_id_2486f5d4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_region_parent_id_2486f5d4 ON public.dcim_region USING btree (parent_id); + + +-- +-- Name: dcim_region_slug_ff078a66_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_region_slug_ff078a66_like ON public.dcim_region USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_region_tree_id_a09ea9a7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_region_tree_id_a09ea9a7 ON public.dcim_region USING btree (tree_id); + + +-- +-- Name: dcim_site__name_6144ca75; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site__name_6144ca75 ON public.dcim_site USING btree (_name); + + +-- +-- Name: dcim_site__name_6144ca75_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site__name_6144ca75_like ON public.dcim_site USING btree (_name varchar_pattern_ops); + + +-- +-- Name: dcim_site_name_8fe66c76_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site_name_8fe66c76_like ON public.dcim_site USING btree (name varchar_pattern_ops); + + +-- +-- Name: dcim_site_region_id_45210932; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site_region_id_45210932 ON public.dcim_site USING btree (region_id); + + +-- +-- Name: dcim_site_slug_4412c762_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site_slug_4412c762_like ON public.dcim_site USING btree (slug varchar_pattern_ops); + + +-- +-- Name: dcim_site_status_id_e6a50f56; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site_status_id_e6a50f56 ON public.dcim_site USING btree (status_id); + + +-- +-- Name: dcim_site_tenant_id_15e7df63; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_site_tenant_id_15e7df63 ON public.dcim_site USING btree (tenant_id); + + +-- +-- Name: dcim_virtualchassis_name_7dcc237d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_virtualchassis_name_7dcc237d ON public.dcim_virtualchassis USING btree (name); + + +-- +-- Name: dcim_virtualchassis_name_7dcc237d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX dcim_virtualchassis_name_7dcc237d_like ON public.dcim_virtualchassis USING btree (name varchar_pattern_ops); + + +-- +-- Name: django_admin_log_content_type_id_c4bce8eb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_admin_log_content_type_id_c4bce8eb ON public.django_admin_log USING btree (content_type_id); + + +-- +-- Name: django_admin_log_user_id_c564eba6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_admin_log_user_id_c564eba6 ON public.django_admin_log USING btree (user_id); + + +-- +-- Name: django_celery_beat_periodictask_clocked_id_47a69f82; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_celery_beat_periodictask_clocked_id_47a69f82 ON public.django_celery_beat_periodictask USING btree (clocked_id); + + +-- +-- Name: django_celery_beat_periodictask_crontab_id_d3cba168; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_celery_beat_periodictask_crontab_id_d3cba168 ON public.django_celery_beat_periodictask USING btree (crontab_id); + + +-- +-- Name: django_celery_beat_periodictask_interval_id_a8ca27da; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_celery_beat_periodictask_interval_id_a8ca27da ON public.django_celery_beat_periodictask USING btree (interval_id); + + +-- +-- Name: django_celery_beat_periodictask_name_265a36b7_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_celery_beat_periodictask_name_265a36b7_like ON public.django_celery_beat_periodictask USING btree (name varchar_pattern_ops); + + +-- +-- Name: django_celery_beat_periodictask_solar_id_a87ce72c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_celery_beat_periodictask_solar_id_a87ce72c ON public.django_celery_beat_periodictask USING btree (solar_id); + + +-- +-- Name: django_session_expire_date_a5c62663; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_session_expire_date_a5c62663 ON public.django_session USING btree (expire_date); + + +-- +-- Name: django_session_session_key_c0390e0f_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX django_session_session_key_c0390e0f_like ON public.django_session USING btree (session_key varchar_pattern_ops); + + +-- +-- Name: extras_computedfield_content_type_id_def6603f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_computedfield_content_type_id_def6603f ON public.extras_computedfield USING btree (content_type_id); + + +-- +-- Name: extras_computedfield_slug_3c4b9636_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_computedfield_slug_3c4b9636_like ON public.extras_computedfield USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_configcontext_cluster_groups_clustergroup_id_f4322ce8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_cluster_groups_clustergroup_id_f4322ce8 ON public.extras_configcontext_cluster_groups USING btree (clustergroup_id); + + +-- +-- Name: extras_configcontext_cluster_groups_configcontext_id_8f50b794; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_cluster_groups_configcontext_id_8f50b794 ON public.extras_configcontext_cluster_groups USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_clusters_cluster_id_6abd47a1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_clusters_cluster_id_6abd47a1 ON public.extras_configcontext_clusters USING btree (cluster_id); + + +-- +-- Name: extras_configcontext_clusters_configcontext_id_ed579a40; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_clusters_configcontext_id_ed579a40 ON public.extras_configcontext_clusters USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_devic_configcontext_id_72bfff9d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_devic_configcontext_id_72bfff9d ON public.extras_configcontext_device_redundancy_groups USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_devic_deviceredundancygroup_id_d30c185c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_devic_deviceredundancygroup_id_d30c185c ON public.extras_configcontext_device_redundancy_groups USING btree (deviceredundancygroup_id); + + +-- +-- Name: extras_configcontext_device_types_configcontext_id_55632923; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_device_types_configcontext_id_55632923 ON public.extras_configcontext_device_types USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_device_types_devicetype_id_b8788c2d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_device_types_devicetype_id_b8788c2d ON public.extras_configcontext_device_types USING btree (devicetype_id); + + +-- +-- Name: extras_configcontext_dynamic_groups_configcontext_id_3cdbc95f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_dynamic_groups_configcontext_id_3cdbc95f ON public.extras_configcontext_dynamic_groups USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_dynamic_groups_dynamicgroup_id_05854998; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_dynamic_groups_dynamicgroup_id_05854998 ON public.extras_configcontext_dynamic_groups USING btree (dynamicgroup_id); + + +-- +-- Name: extras_configcontext_locations_configcontext_id_cc629ec1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_locations_configcontext_id_cc629ec1 ON public.extras_configcontext_locations USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_locations_location_id_9e19eac9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_locations_location_id_9e19eac9 ON public.extras_configcontext_locations USING btree (location_id); + + +-- +-- Name: extras_configcontext_name_4bbfe25d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_name_4bbfe25d ON public.extras_configcontext USING btree (name); + + +-- +-- Name: extras_configcontext_name_4bbfe25d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_name_4bbfe25d_like ON public.extras_configcontext USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_configcontext_owner_content_type_id_af30e837; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_owner_content_type_id_af30e837 ON public.extras_configcontext USING btree (owner_content_type_id); + + +-- +-- Name: extras_configcontext_platforms_configcontext_id_2a516699; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_platforms_configcontext_id_2a516699 ON public.extras_configcontext_platforms USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_platforms_platform_id_3fdfedc0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_platforms_platform_id_3fdfedc0 ON public.extras_configcontext_platforms USING btree (platform_id); + + +-- +-- Name: extras_configcontext_regions_configcontext_id_73003dbc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_regions_configcontext_id_73003dbc ON public.extras_configcontext_regions USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_regions_region_id_35c6ba9d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_regions_region_id_35c6ba9d ON public.extras_configcontext_regions USING btree (region_id); + + +-- +-- Name: extras_configcontext_roles_configcontext_id_59b67386; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_roles_configcontext_id_59b67386 ON public.extras_configcontext_roles USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_roles_devicerole_id_d3a84813; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_roles_devicerole_id_d3a84813 ON public.extras_configcontext_roles USING btree (devicerole_id); + + +-- +-- Name: extras_configcontext_schema_id_1a9d39fe; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_schema_id_1a9d39fe ON public.extras_configcontext USING btree (schema_id); + + +-- +-- Name: extras_configcontext_sites_configcontext_id_8c54feb9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_sites_configcontext_id_8c54feb9 ON public.extras_configcontext_sites USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_sites_site_id_cbb76c96; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_sites_site_id_cbb76c96 ON public.extras_configcontext_sites USING btree (site_id); + + +-- +-- Name: extras_configcontext_tags_configcontext_id_64a392b1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_tags_configcontext_id_64a392b1 ON public.extras_configcontext_tags USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_tags_tag_id_129a5d87; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_tags_tag_id_129a5d87 ON public.extras_configcontext_tags USING btree (tag_id); + + +-- +-- Name: extras_configcontext_tenant_groups_configcontext_id_92f68345; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_tenant_groups_configcontext_id_92f68345 ON public.extras_configcontext_tenant_groups USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_tenant_groups_tenantgroup_id_0909688d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_tenant_groups_tenantgroup_id_0909688d ON public.extras_configcontext_tenant_groups USING btree (tenantgroup_id); + + +-- +-- Name: extras_configcontext_tenants_configcontext_id_b53552a6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_tenants_configcontext_id_b53552a6 ON public.extras_configcontext_tenants USING btree (configcontext_id); + + +-- +-- Name: extras_configcontext_tenants_tenant_id_8d0aa28e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontext_tenants_tenant_id_8d0aa28e ON public.extras_configcontext_tenants USING btree (tenant_id); + + +-- +-- Name: extras_configcontextschema_owner_content_type_id_0a0756bc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontextschema_owner_content_type_id_0a0756bc ON public.extras_configcontextschema USING btree (owner_content_type_id); + + +-- +-- Name: extras_configcontextschema_slug_80083c21; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontextschema_slug_80083c21 ON public.extras_configcontextschema USING btree (slug); + + +-- +-- Name: extras_configcontextschema_slug_80083c21_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_configcontextschema_slug_80083c21_like ON public.extras_configcontextschema USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_customfield_content_types_contenttype_id_2997ba90; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customfield_content_types_contenttype_id_2997ba90 ON public.extras_customfield_content_types USING btree (contenttype_id); + + +-- +-- Name: extras_customfield_content_types_customfield_id_3842aaf3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customfield_content_types_customfield_id_3842aaf3 ON public.extras_customfield_content_types USING btree (customfield_id); + + +-- +-- Name: extras_customfield_name_2fe72707_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customfield_name_2fe72707_like ON public.extras_customfield USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_customfield_slug_ed27c4fe_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customfield_slug_ed27c4fe_like ON public.extras_customfield USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_customfieldchoice_field_id_35006739; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customfieldchoice_field_id_35006739 ON public.extras_customfieldchoice USING btree (field_id); + + +-- +-- Name: extras_customlink_content_type_id_4d35b063; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customlink_content_type_id_4d35b063 ON public.extras_customlink USING btree (content_type_id); + + +-- +-- Name: extras_customlink_name_daed2d18_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_customlink_name_daed2d18_like ON public.extras_customlink USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_dynamicgroup_content_type_id_1bed5de5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_dynamicgroup_content_type_id_1bed5de5 ON public.extras_dynamicgroup USING btree (content_type_id); + + +-- +-- Name: extras_dynamicgroup_name_46a8d891_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_dynamicgroup_name_46a8d891_like ON public.extras_dynamicgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_dynamicgroup_slug_628154a6_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_dynamicgroup_slug_628154a6_like ON public.extras_dynamicgroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_dynamicgroupmembership_group_id_1616d7d6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_dynamicgroupmembership_group_id_1616d7d6 ON public.extras_dynamicgroupmembership USING btree (group_id); + + +-- +-- Name: extras_dynamicgroupmembership_parent_group_id_f09f9b01; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_dynamicgroupmembership_parent_group_id_f09f9b01 ON public.extras_dynamicgroupmembership USING btree (parent_group_id); + + +-- +-- Name: extras_exporttemplate_content_type_id_59737e21; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_exporttemplate_content_type_id_59737e21 ON public.extras_exporttemplate USING btree (content_type_id); + + +-- +-- Name: extras_exporttemplate_owner_content_type_id_6bb67821; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_exporttemplate_owner_content_type_id_6bb67821 ON public.extras_exporttemplate USING btree (owner_content_type_id); + + +-- +-- Name: extras_gitrepository_name_b85445c9_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_gitrepository_name_b85445c9_like ON public.extras_gitrepository USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_gitrepository_secrets_group_id_fd1fdceb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_gitrepository_secrets_group_id_fd1fdceb ON public.extras_gitrepository USING btree (secrets_group_id); + + +-- +-- Name: extras_gitrepository_slug_a71da0ac_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_gitrepository_slug_a71da0ac_like ON public.extras_gitrepository USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_graphqlquery_name_53899a98_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_graphqlquery_name_53899a98_like ON public.extras_graphqlquery USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_graphqlquery_slug_cbac99ad_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_graphqlquery_slug_cbac99ad_like ON public.extras_graphqlquery USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_imageattachment_content_type_id_90e0643d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_imageattachment_content_type_id_90e0643d ON public.extras_imageattachment USING btree (content_type_id); + + +-- +-- Name: extras_imageattachment_name_04f9d9dd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_imageattachment_name_04f9d9dd ON public.extras_imageattachment USING btree (name); + + +-- +-- Name: extras_imageattachment_name_04f9d9dd_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_imageattachment_name_04f9d9dd_like ON public.extras_imageattachment USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_imageattachment_object_id_f5308bf7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_imageattachment_object_id_f5308bf7 ON public.extras_imageattachment USING btree (object_id); + + +-- +-- Name: extras_job_git_repository_id_9ee97baf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_git_repository_id_9ee97baf ON public.extras_job USING btree (git_repository_id); + + +-- +-- Name: extras_job_grouping_692d2dc2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_grouping_692d2dc2 ON public.extras_job USING btree ("grouping"); + + +-- +-- Name: extras_job_grouping_692d2dc2_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_grouping_692d2dc2_like ON public.extras_job USING btree ("grouping" varchar_pattern_ops); + + +-- +-- Name: extras_job_hidden_f4b1d9d5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_hidden_f4b1d9d5 ON public.extras_job USING btree (hidden); + + +-- +-- Name: extras_job_installed_9b043061; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_installed_9b043061 ON public.extras_job USING btree (installed); + + +-- +-- Name: extras_job_job_class_name_d9c82b93; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_job_class_name_d9c82b93 ON public.extras_job USING btree (job_class_name); + + +-- +-- Name: extras_job_job_class_name_d9c82b93_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_job_class_name_d9c82b93_like ON public.extras_job USING btree (job_class_name varchar_pattern_ops); + + +-- +-- Name: extras_job_module_name_912a3dda; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_module_name_912a3dda ON public.extras_job USING btree (module_name); + + +-- +-- Name: extras_job_module_name_912a3dda_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_module_name_912a3dda_like ON public.extras_job USING btree (module_name varchar_pattern_ops); + + +-- +-- Name: extras_job_name_34d98c40; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_name_34d98c40 ON public.extras_job USING btree (name); + + +-- +-- Name: extras_job_name_34d98c40_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_name_34d98c40_like ON public.extras_job USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_job_slug_a6e32b86_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_slug_a6e32b86_like ON public.extras_job USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_job_source_2dddec01; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_source_2dddec01 ON public.extras_job USING btree (source); + + +-- +-- Name: extras_job_source_2dddec01_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_job_source_2dddec01_like ON public.extras_job USING btree (source varchar_pattern_ops); + + +-- +-- Name: extras_jobbutton_content_types_contenttype_id_b0c6bbc4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobbutton_content_types_contenttype_id_b0c6bbc4 ON public.extras_jobbutton_content_types USING btree (contenttype_id); + + +-- +-- Name: extras_jobbutton_content_types_jobbutton_id_72bd14bf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobbutton_content_types_jobbutton_id_72bd14bf ON public.extras_jobbutton_content_types USING btree (jobbutton_id); + + +-- +-- Name: extras_jobbutton_job_id_710e013a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobbutton_job_id_710e013a ON public.extras_jobbutton USING btree (job_id); + + +-- +-- Name: extras_jobbutton_name_c1a7d587_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobbutton_name_c1a7d587_like ON public.extras_jobbutton USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_jobhook_content_types_contenttype_id_42d2bda1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobhook_content_types_contenttype_id_42d2bda1 ON public.extras_jobhook_content_types USING btree (contenttype_id); + + +-- +-- Name: extras_jobhook_content_types_jobhook_id_d994e51b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobhook_content_types_jobhook_id_d994e51b ON public.extras_jobhook_content_types USING btree (jobhook_id); + + +-- +-- Name: extras_jobhook_job_id_cfcdb972; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobhook_job_id_cfcdb972 ON public.extras_jobhook USING btree (job_id); + + +-- +-- Name: extras_jobhook_name_1d539c95_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobhook_name_1d539c95_like ON public.extras_jobhook USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_jobhook_slug_08db0eec_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobhook_slug_08db0eec_like ON public.extras_jobhook USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_joblogentry_job_result_id_91e10d1a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_joblogentry_job_result_id_91e10d1a ON public.extras_joblogentry USING btree (job_result_id); + + +-- +-- Name: extras_joblogentry_log_level_f8cfe898; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_joblogentry_log_level_f8cfe898 ON public.extras_joblogentry USING btree (log_level); + + +-- +-- Name: extras_joblogentry_log_level_f8cfe898_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_joblogentry_log_level_f8cfe898_like ON public.extras_joblogentry USING btree (log_level varchar_pattern_ops); + + +-- +-- Name: extras_jobresult_completed_41ca396b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_completed_41ca396b ON public.extras_jobresult USING btree (completed); + + +-- +-- Name: extras_jobresult_created_bf3a3954; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_created_bf3a3954 ON public.extras_jobresult USING btree (created); + + +-- +-- Name: extras_jobresult_job_model_id_d581ec7e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_job_model_id_d581ec7e ON public.extras_jobresult USING btree (job_model_id); + + +-- +-- Name: extras_jobresult_name_3f143125; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_name_3f143125 ON public.extras_jobresult USING btree (name); + + +-- +-- Name: extras_jobresult_name_3f143125_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_name_3f143125_like ON public.extras_jobresult USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_jobresult_obj_type_id_475e80aa; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_obj_type_id_475e80aa ON public.extras_jobresult USING btree (obj_type_id); + + +-- +-- Name: extras_jobresult_rcreated_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_rcreated_idx ON public.extras_jobresult USING btree (created DESC); + + +-- +-- Name: extras_jobresult_schedule_id_24ce985a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_schedule_id_24ce985a ON public.extras_jobresult USING btree (schedule_id); + + +-- +-- Name: extras_jobresult_user_id_d35285ab; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jobresult_user_id_d35285ab ON public.extras_jobresult USING btree (user_id); + + +-- +-- Name: extras_jr_rcompleted_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jr_rcompleted_idx ON public.extras_jobresult USING btree (completed DESC); + + +-- +-- Name: extras_jr_statrcompl_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jr_statrcompl_idx ON public.extras_jobresult USING btree (status, completed DESC); + + +-- +-- Name: extras_jr_statrcreate_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_jr_statrcreate_idx ON public.extras_jobresult USING btree (status, created DESC); + + +-- +-- Name: extras_note_assigned_object_id_af6ced75; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_note_assigned_object_id_af6ced75 ON public.extras_note USING btree (assigned_object_id); + + +-- +-- Name: extras_note_assigned_object_type_id_e15d3cda; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_note_assigned_object_type_id_e15d3cda ON public.extras_note USING btree (assigned_object_type_id); + + +-- +-- Name: extras_note_slug_ef005da2_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_note_slug_ef005da2_like ON public.extras_note USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_note_user_id_f11ab655; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_note_user_id_f11ab655 ON public.extras_note USING btree (user_id); + + +-- +-- Name: extras_objectchange_change_context_8e03ae30; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_change_context_8e03ae30 ON public.extras_objectchange USING btree (change_context); + + +-- +-- Name: extras_objectchange_change_context_8e03ae30_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_change_context_8e03ae30_like ON public.extras_objectchange USING btree (change_context varchar_pattern_ops); + + +-- +-- Name: extras_objectchange_changed_object_id_efb1a943; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_changed_object_id_efb1a943 ON public.extras_objectchange USING btree (changed_object_id); + + +-- +-- Name: extras_objectchange_changed_object_type_id_b755bb60; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_changed_object_type_id_b755bb60 ON public.extras_objectchange USING btree (changed_object_type_id); + + +-- +-- Name: extras_objectchange_double_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_double_idx ON public.extras_objectchange USING btree (request_id, changed_object_type_id); + + +-- +-- Name: extras_objectchange_related_object_type_id_fe6e521f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_related_object_type_id_fe6e521f ON public.extras_objectchange USING btree (related_object_type_id); + + +-- +-- Name: extras_objectchange_request_id_4ae21e90; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_request_id_4ae21e90 ON public.extras_objectchange USING btree (request_id); + + +-- +-- Name: extras_objectchange_rtime_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_rtime_idx ON public.extras_objectchange USING btree ("time" DESC); + + +-- +-- Name: extras_objectchange_time_224380ea; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_time_224380ea ON public.extras_objectchange USING btree ("time"); + + +-- +-- Name: extras_objectchange_triple_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_triple_idx ON public.extras_objectchange USING btree (request_id, changed_object_type_id, changed_object_id); + + +-- +-- Name: extras_objectchange_user_id_7fdf8186; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_objectchange_user_id_7fdf8186 ON public.extras_objectchange USING btree (user_id); + + +-- +-- Name: extras_relationship_destination_type_id_fb7387c3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationship_destination_type_id_fb7387c3 ON public.extras_relationship USING btree (destination_type_id); + + +-- +-- Name: extras_relationship_name_5f6f8ea2_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationship_name_5f6f8ea2_like ON public.extras_relationship USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_relationship_slug_e09b40f4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationship_slug_e09b40f4_like ON public.extras_relationship USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_relationship_source_type_id_21183ad6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationship_source_type_id_21183ad6 ON public.extras_relationship USING btree (source_type_id); + + +-- +-- Name: extras_relationshipassociation_destination_id_83f811cb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationshipassociation_destination_id_83f811cb ON public.extras_relationshipassociation USING btree (destination_id); + + +-- +-- Name: extras_relationshipassociation_destination_type_id_5ccb6728; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationshipassociation_destination_type_id_5ccb6728 ON public.extras_relationshipassociation USING btree (destination_type_id); + + +-- +-- Name: extras_relationshipassociation_relationship_id_9a65ccc8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationshipassociation_relationship_id_9a65ccc8 ON public.extras_relationshipassociation USING btree (relationship_id); + + +-- +-- Name: extras_relationshipassociation_source_id_cb8931c1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationshipassociation_source_id_cb8931c1 ON public.extras_relationshipassociation USING btree (source_id); + + +-- +-- Name: extras_relationshipassociation_source_type_id_28c8df60; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_relationshipassociation_source_type_id_28c8df60 ON public.extras_relationshipassociation USING btree (source_type_id); + + +-- +-- Name: extras_scheduledjob_approved_by_user_id_06b8fb0a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_approved_by_user_id_06b8fb0a ON public.extras_scheduledjob USING btree (approved_by_user_id); + + +-- +-- Name: extras_scheduledjob_job_class_c1c4178e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_job_class_c1c4178e ON public.extras_scheduledjob USING btree (job_class); + + +-- +-- Name: extras_scheduledjob_job_class_c1c4178e_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_job_class_c1c4178e_like ON public.extras_scheduledjob USING btree (job_class varchar_pattern_ops); + + +-- +-- Name: extras_scheduledjob_job_model_id_d4c0711e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_job_model_id_d4c0711e ON public.extras_scheduledjob USING btree (job_model_id); + + +-- +-- Name: extras_scheduledjob_name_fcea52d7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_name_fcea52d7 ON public.extras_scheduledjob USING btree (name); + + +-- +-- Name: extras_scheduledjob_name_fcea52d7_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_name_fcea52d7_like ON public.extras_scheduledjob USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_scheduledjob_queue_681f2627; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_queue_681f2627 ON public.extras_scheduledjob USING btree (queue); + + +-- +-- Name: extras_scheduledjob_queue_681f2627_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_queue_681f2627_like ON public.extras_scheduledjob USING btree (queue varchar_pattern_ops); + + +-- +-- Name: extras_scheduledjob_task_7eaf2d6d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_task_7eaf2d6d ON public.extras_scheduledjob USING btree (task); + + +-- +-- Name: extras_scheduledjob_task_7eaf2d6d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_task_7eaf2d6d_like ON public.extras_scheduledjob USING btree (task varchar_pattern_ops); + + +-- +-- Name: extras_scheduledjob_user_id_4d8034ff; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_scheduledjob_user_id_4d8034ff ON public.extras_scheduledjob USING btree (user_id); + + +-- +-- Name: extras_secret_name_5e2de97e_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_secret_name_5e2de97e_like ON public.extras_secret USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_secret_slug_cf3c7c3c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_secret_slug_cf3c7c3c_like ON public.extras_secret USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_secretsgroup_name_626cec38_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_secretsgroup_name_626cec38_like ON public.extras_secretsgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_secretsgroup_slug_a523052e_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_secretsgroup_slug_a523052e_like ON public.extras_secretsgroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_secretsgroupassociation_group_id_68ca43f6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_secretsgroupassociation_group_id_68ca43f6 ON public.extras_secretsgroupassociation USING btree (group_id); + + +-- +-- Name: extras_secretsgroupassociation_secret_id_14d43d7e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_secretsgroupassociation_secret_id_14d43d7e ON public.extras_secretsgroupassociation USING btree (secret_id); + + +-- +-- Name: extras_status_content_types_contenttype_id_38503e74; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_status_content_types_contenttype_id_38503e74 ON public.extras_status_content_types USING btree (contenttype_id); + + +-- +-- Name: extras_status_content_types_status_id_27c665c7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_status_content_types_status_id_27c665c7 ON public.extras_status_content_types USING btree (status_id); + + +-- +-- Name: extras_status_name_d8897514_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_status_name_d8897514_like ON public.extras_status USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_status_slug_6f38c09c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_status_slug_6f38c09c_like ON public.extras_status USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_tag_content_types_contenttype_id_5baa3bb5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_tag_content_types_contenttype_id_5baa3bb5 ON public.extras_tag_content_types USING btree (contenttype_id); + + +-- +-- Name: extras_tag_content_types_tag_id_34a8ca46; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_tag_content_types_tag_id_34a8ca46 ON public.extras_tag_content_types USING btree (tag_id); + + +-- +-- Name: extras_tag_name_9550b3d9_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_tag_name_9550b3d9_like ON public.extras_tag USING btree (name varchar_pattern_ops); + + +-- +-- Name: extras_tag_slug_aaa5b7e9_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_tag_slug_aaa5b7e9_like ON public.extras_tag USING btree (slug varchar_pattern_ops); + + +-- +-- Name: extras_taggeditem_content_type_id_ba5562ed; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_taggeditem_content_type_id_ba5562ed ON public.extras_taggeditem USING btree (content_type_id); + + +-- +-- Name: extras_taggeditem_content_type_id_object_id_80e28e23_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_taggeditem_content_type_id_object_id_80e28e23_idx ON public.extras_taggeditem USING btree (content_type_id, object_id); + + +-- +-- Name: extras_taggeditem_tag_id_d48af7c7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_taggeditem_tag_id_d48af7c7 ON public.extras_taggeditem USING btree (tag_id); + + +-- +-- Name: extras_webhook_content_types_contenttype_id_3fc2c4d3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_webhook_content_types_contenttype_id_3fc2c4d3 ON public.extras_webhook_content_types USING btree (contenttype_id); + + +-- +-- Name: extras_webhook_content_types_webhook_id_0c169800; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_webhook_content_types_webhook_id_0c169800 ON public.extras_webhook_content_types USING btree (webhook_id); + + +-- +-- Name: extras_webhook_name_82cf60b5_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX extras_webhook_name_82cf60b5_like ON public.extras_webhook USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_aggregate_broadcast_cff7c80e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_aggregate_broadcast_cff7c80e ON public.ipam_aggregate USING btree (broadcast); + + +-- +-- Name: ipam_aggregate_network_e8d5e036; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_aggregate_network_e8d5e036 ON public.ipam_aggregate USING btree (network); + + +-- +-- Name: ipam_aggregate_prefix_length_da6bd002; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_aggregate_prefix_length_da6bd002 ON public.ipam_aggregate USING btree (prefix_length); + + +-- +-- Name: ipam_aggregate_rir_id_ef7a27bd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_aggregate_rir_id_ef7a27bd ON public.ipam_aggregate USING btree (rir_id); + + +-- +-- Name: ipam_aggregate_tenant_id_637dd1a1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_aggregate_tenant_id_637dd1a1 ON public.ipam_aggregate USING btree (tenant_id); + + +-- +-- Name: ipam_ipaddress_assigned_object_id_cff64474; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_assigned_object_id_cff64474 ON public.ipam_ipaddress USING btree (assigned_object_id); + + +-- +-- Name: ipam_ipaddress_assigned_object_type_id_02354370; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_assigned_object_type_id_02354370 ON public.ipam_ipaddress USING btree (assigned_object_type_id); + + +-- +-- Name: ipam_ipaddress_broadcast_f3d0b760; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_broadcast_f3d0b760 ON public.ipam_ipaddress USING btree (broadcast); + + +-- +-- Name: ipam_ipaddress_dns_name_d5c4f5d8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_dns_name_d5c4f5d8 ON public.ipam_ipaddress USING btree (dns_name); + + +-- +-- Name: ipam_ipaddress_dns_name_d5c4f5d8_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_dns_name_d5c4f5d8_like ON public.ipam_ipaddress USING btree (dns_name varchar_pattern_ops); + + +-- +-- Name: ipam_ipaddress_host_c1f8ad3e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_host_c1f8ad3e ON public.ipam_ipaddress USING btree (host); + + +-- +-- Name: ipam_ipaddress_nat_inside_id_a45fb7c5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_nat_inside_id_a45fb7c5 ON public.ipam_ipaddress USING btree (nat_inside_id); + + +-- +-- Name: ipam_ipaddress_prefix_length_f80d3663; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_prefix_length_f80d3663 ON public.ipam_ipaddress USING btree (prefix_length); + + +-- +-- Name: ipam_ipaddress_role_ff25f462; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_role_ff25f462 ON public.ipam_ipaddress USING btree (role); + + +-- +-- Name: ipam_ipaddress_role_ff25f462_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_role_ff25f462_like ON public.ipam_ipaddress USING btree (role varchar_pattern_ops); + + +-- +-- Name: ipam_ipaddress_status_id_942778b7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_status_id_942778b7 ON public.ipam_ipaddress USING btree (status_id); + + +-- +-- Name: ipam_ipaddress_tenant_id_ac55acfd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_tenant_id_ac55acfd ON public.ipam_ipaddress USING btree (tenant_id); + + +-- +-- Name: ipam_ipaddress_vrf_id_51fcc59b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_ipaddress_vrf_id_51fcc59b ON public.ipam_ipaddress USING btree (vrf_id); + + +-- +-- Name: ipam_prefix_broadcast_8e623832; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_broadcast_8e623832 ON public.ipam_prefix USING btree (broadcast); + + +-- +-- Name: ipam_prefix_location_id_9a5c5f60; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_location_id_9a5c5f60 ON public.ipam_prefix USING btree (location_id); + + +-- +-- Name: ipam_prefix_network_f7bac882; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_network_f7bac882 ON public.ipam_prefix USING btree (network); + + +-- +-- Name: ipam_prefix_prefix_length_84660485; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_prefix_length_84660485 ON public.ipam_prefix USING btree (prefix_length); + + +-- +-- Name: ipam_prefix_role_id_0a98d415; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_role_id_0a98d415 ON public.ipam_prefix USING btree (role_id); + + +-- +-- Name: ipam_prefix_site_id_0b20df05; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_site_id_0b20df05 ON public.ipam_prefix USING btree (site_id); + + +-- +-- Name: ipam_prefix_status_id_cffa56c0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_status_id_cffa56c0 ON public.ipam_prefix USING btree (status_id); + + +-- +-- Name: ipam_prefix_tenant_id_7ba1fcc4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_tenant_id_7ba1fcc4 ON public.ipam_prefix USING btree (tenant_id); + + +-- +-- Name: ipam_prefix_vlan_id_1db91bff; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_vlan_id_1db91bff ON public.ipam_prefix USING btree (vlan_id); + + +-- +-- Name: ipam_prefix_vrf_id_34f78ed0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_prefix_vrf_id_34f78ed0 ON public.ipam_prefix USING btree (vrf_id); + + +-- +-- Name: ipam_rir_name_64a71982_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_rir_name_64a71982_like ON public.ipam_rir USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_rir_slug_ff1a369a_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_rir_slug_ff1a369a_like ON public.ipam_rir USING btree (slug varchar_pattern_ops); + + +-- +-- Name: ipam_role_name_13784849_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_role_name_13784849_like ON public.ipam_role USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_role_slug_309ca14c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_role_slug_309ca14c_like ON public.ipam_role USING btree (slug varchar_pattern_ops); + + +-- +-- Name: ipam_routetarget_name_212be79f_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_routetarget_name_212be79f_like ON public.ipam_routetarget USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_routetarget_tenant_id_5a0b35e8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_routetarget_tenant_id_5a0b35e8 ON public.ipam_routetarget USING btree (tenant_id); + + +-- +-- Name: ipam_service_device_id_b4d2bb9c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_service_device_id_b4d2bb9c ON public.ipam_service USING btree (device_id); + + +-- +-- Name: ipam_service_ipaddresses_ipaddress_id_b4138c6d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_service_ipaddresses_ipaddress_id_b4138c6d ON public.ipam_service_ipaddresses USING btree (ipaddress_id); + + +-- +-- Name: ipam_service_ipaddresses_service_id_ae26b9ab; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_service_ipaddresses_service_id_ae26b9ab ON public.ipam_service_ipaddresses USING btree (service_id); + + +-- +-- Name: ipam_service_name_7e839153; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_service_name_7e839153 ON public.ipam_service USING btree (name); + + +-- +-- Name: ipam_service_name_7e839153_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_service_name_7e839153_like ON public.ipam_service USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_service_virtual_machine_id_e8b53562; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_service_virtual_machine_id_e8b53562 ON public.ipam_service USING btree (virtual_machine_id); + + +-- +-- Name: ipam_vlan_group_id_88cbfa62; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_group_id_88cbfa62 ON public.ipam_vlan USING btree (group_id); + + +-- +-- Name: ipam_vlan_location_id_07dd65e4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_location_id_07dd65e4 ON public.ipam_vlan USING btree (location_id); + + +-- +-- Name: ipam_vlan_name_a7671201; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_name_a7671201 ON public.ipam_vlan USING btree (name); + + +-- +-- Name: ipam_vlan_name_a7671201_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_name_a7671201_like ON public.ipam_vlan USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_vlan_role_id_f5015962; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_role_id_f5015962 ON public.ipam_vlan USING btree (role_id); + + +-- +-- Name: ipam_vlan_site_id_a59334e3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_site_id_a59334e3 ON public.ipam_vlan USING btree (site_id); + + +-- +-- Name: ipam_vlan_status_id_898aa317; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_status_id_898aa317 ON public.ipam_vlan USING btree (status_id); + + +-- +-- Name: ipam_vlan_tenant_id_71a8290d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlan_tenant_id_71a8290d ON public.ipam_vlan USING btree (tenant_id); + + +-- +-- Name: ipam_vlangroup_location_id_f239af79; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlangroup_location_id_f239af79 ON public.ipam_vlangroup USING btree (location_id); + + +-- +-- Name: ipam_vlangroup_name_46bf02a4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlangroup_name_46bf02a4 ON public.ipam_vlangroup USING btree (name); + + +-- +-- Name: ipam_vlangroup_name_46bf02a4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlangroup_name_46bf02a4_like ON public.ipam_vlangroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_vlangroup_site_id_264f36f6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlangroup_site_id_264f36f6 ON public.ipam_vlangroup USING btree (site_id); + + +-- +-- Name: ipam_vlangroup_slug_40abcf6b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlangroup_slug_40abcf6b ON public.ipam_vlangroup USING btree (slug); + + +-- +-- Name: ipam_vlangroup_slug_40abcf6b_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vlangroup_slug_40abcf6b_like ON public.ipam_vlangroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: ipam_vrf_export_targets_routetarget_id_8d9319f7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_export_targets_routetarget_id_8d9319f7 ON public.ipam_vrf_export_targets USING btree (routetarget_id); + + +-- +-- Name: ipam_vrf_export_targets_vrf_id_6f4875c4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_export_targets_vrf_id_6f4875c4 ON public.ipam_vrf_export_targets USING btree (vrf_id); + + +-- +-- Name: ipam_vrf_import_targets_routetarget_id_0e05b144; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_import_targets_routetarget_id_0e05b144 ON public.ipam_vrf_import_targets USING btree (routetarget_id); + + +-- +-- Name: ipam_vrf_import_targets_vrf_id_ed491b19; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_import_targets_vrf_id_ed491b19 ON public.ipam_vrf_import_targets USING btree (vrf_id); + + +-- +-- Name: ipam_vrf_name_bf7146b0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_name_bf7146b0 ON public.ipam_vrf USING btree (name); + + +-- +-- Name: ipam_vrf_name_bf7146b0_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_name_bf7146b0_like ON public.ipam_vrf USING btree (name varchar_pattern_ops); + + +-- +-- Name: ipam_vrf_rd_0ac1bde1_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_rd_0ac1bde1_like ON public.ipam_vrf USING btree (rd varchar_pattern_ops); + + +-- +-- Name: ipam_vrf_tenant_id_498b0051; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX ipam_vrf_tenant_id_498b0051 ON public.ipam_vrf USING btree (tenant_id); + + +-- +-- Name: nautobot_bgp_models_addressfamily_routing_instance_id_be92a9bf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_addressfamily_routing_instance_id_be92a9bf ON public.nautobot_bgp_models_addressfamily USING btree (routing_instance_id); + + +-- +-- Name: nautobot_bgp_models_addressfamily_vrf_id_606c463d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_addressfamily_vrf_id_606c463d ON public.nautobot_bgp_models_addressfamily USING btree (vrf_id); + + +-- +-- Name: nautobot_bgp_models_autonomoussystem_provider_id_662aacd8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_autonomoussystem_provider_id_662aacd8 ON public.nautobot_bgp_models_autonomoussystem USING btree (provider_id); + + +-- +-- Name: nautobot_bgp_models_autonomoussystem_status_id_84227c80; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_autonomoussystem_status_id_84227c80 ON public.nautobot_bgp_models_autonomoussystem USING btree (status_id); + + +-- +-- Name: nautobot_bgp_models_bgprou_autonomous_system_id_f10695a2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_bgprou_autonomous_system_id_f10695a2 ON public.nautobot_bgp_models_bgproutinginstance USING btree (autonomous_system_id); + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance_device_id_9c098423; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_bgproutinginstance_device_id_9c098423 ON public.nautobot_bgp_models_bgproutinginstance USING btree (device_id); + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance_router_id_id_36577c44; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_bgproutinginstance_router_id_id_36577c44 ON public.nautobot_bgp_models_bgproutinginstance USING btree (router_id_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_autonomous_system_id_ac5bb68c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_autonomous_system_id_ac5bb68c ON public.nautobot_bgp_models_peerendpoint USING btree (autonomous_system_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_peer_group_id_1631d9a2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_peer_group_id_1631d9a2 ON public.nautobot_bgp_models_peerendpoint USING btree (peer_group_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_peer_id_9bbea63c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_peer_id_9bbea63c ON public.nautobot_bgp_models_peerendpoint USING btree (peer_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_peering_id_bef7d0d2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_peering_id_bef7d0d2 ON public.nautobot_bgp_models_peerendpoint USING btree (peering_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_role_id_186426c2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_role_id_186426c2 ON public.nautobot_bgp_models_peerendpoint USING btree (role_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_routing_instance_id_ca1abe8a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_routing_instance_id_ca1abe8a ON public.nautobot_bgp_models_peerendpoint USING btree (routing_instance_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_secret_id_52094b3b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_secret_id_52094b3b ON public.nautobot_bgp_models_peerendpoint USING btree (secret_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_source_interface_id_5220c8b4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_source_interface_id_5220c8b4 ON public.nautobot_bgp_models_peerendpoint USING btree (source_interface_id); + + +-- +-- Name: nautobot_bgp_models_peerendpoint_source_ip_id_d0869ac6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peerendpoint_source_ip_id_d0869ac6 ON public.nautobot_bgp_models_peerendpoint USING btree (source_ip_id); + + +-- +-- Name: nautobot_bgp_models_peergr_autonomous_system_id_c3727574; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergr_autonomous_system_id_c3727574 ON public.nautobot_bgp_models_peergrouptemplate USING btree (autonomous_system_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_autonomous_system_id_caf60267; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_autonomous_system_id_caf60267 ON public.nautobot_bgp_models_peergroup USING btree (autonomous_system_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_role_id_07505a1d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_role_id_07505a1d ON public.nautobot_bgp_models_peergroup USING btree (role_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_routing_instance_id_a319163b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_routing_instance_id_a319163b ON public.nautobot_bgp_models_peergroup USING btree (routing_instance_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_secret_id_78e0289e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_secret_id_78e0289e ON public.nautobot_bgp_models_peergroup USING btree (secret_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_source_interface_id_d36377f5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_source_interface_id_d36377f5 ON public.nautobot_bgp_models_peergroup USING btree (source_interface_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_source_ip_id_f9f24d18; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_source_ip_id_f9f24d18 ON public.nautobot_bgp_models_peergroup USING btree (source_ip_id); + + +-- +-- Name: nautobot_bgp_models_peergroup_template_id_6846de7a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergroup_template_id_6846de7a ON public.nautobot_bgp_models_peergroup USING btree (template_id); + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate_name_7f468d96_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergrouptemplate_name_7f468d96_like ON public.nautobot_bgp_models_peergrouptemplate USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate_role_id_c855c5d1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergrouptemplate_role_id_c855c5d1 ON public.nautobot_bgp_models_peergrouptemplate USING btree (role_id); + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate_secret_id_6103628b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peergrouptemplate_secret_id_6103628b ON public.nautobot_bgp_models_peergrouptemplate USING btree (secret_id); + + +-- +-- Name: nautobot_bgp_models_peering_status_id_8c654839; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peering_status_id_8c654839 ON public.nautobot_bgp_models_peering USING btree (status_id); + + +-- +-- Name: nautobot_bgp_models_peeringrole_name_714eb7f9_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peeringrole_name_714eb7f9_like ON public.nautobot_bgp_models_peeringrole USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_bgp_models_peeringrole_slug_e449358c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_bgp_models_peeringrole_slug_e449358c_like ON public.nautobot_bgp_models_peeringrole USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_e_content_type_id_1a017307; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_e_content_type_id_1a017307 ON public.nautobot_data_validation_engine_requiredvalidationrule USING btree (content_type_id); + + +-- +-- Name: nautobot_data_validation_e_content_type_id_3c749b83; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_e_content_type_id_3c749b83 ON public.nautobot_data_validation_engine_minmaxvalidationrule USING btree (content_type_id); + + +-- +-- Name: nautobot_data_validation_e_content_type_id_b0211d8e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_e_content_type_id_b0211d8e ON public.nautobot_data_validation_engine_datacompliance USING btree (content_type_id); + + +-- +-- Name: nautobot_data_validation_e_content_type_id_b863523b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_e_content_type_id_b863523b ON public.nautobot_data_validation_engine_regularexpressionvalidationrule USING btree (content_type_id); + + +-- +-- Name: nautobot_data_validation_e_content_type_id_d195eaeb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_e_content_type_id_d195eaeb ON public.nautobot_data_validation_engine_uniquevalidationrule USING btree (content_type_id); + + +-- +-- Name: nautobot_data_validation_name_00695cbd_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_name_00695cbd_like ON public.nautobot_data_validation_engine_regularexpressionvalidationrule USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_name_56d1f0d5_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_name_56d1f0d5_like ON public.nautobot_data_validation_engine_requiredvalidationrule USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_name_7b9cbefe_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_name_7b9cbefe_like ON public.nautobot_data_validation_engine_uniquevalidationrule USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_name_845eed44_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_name_845eed44_like ON public.nautobot_data_validation_engine_minmaxvalidationrule USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_slug_055dfd1d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_slug_055dfd1d_like ON public.nautobot_data_validation_engine_requiredvalidationrule USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_slug_5ff950d6_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_slug_5ff950d6_like ON public.nautobot_data_validation_engine_regularexpressionvalidationrule USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_slug_69d7bcae_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_slug_69d7bcae_like ON public.nautobot_data_validation_engine_minmaxvalidationrule USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_data_validation_slug_7c85e768_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_data_validation_slug_7c85e768_like ON public.nautobot_data_validation_engine_uniquevalidationrule USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_device_lifecycle__device_id_0a4868ea; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__device_id_0a4868ea ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices USING btree (device_id); + + +-- +-- Name: nautobot_device_lifecycle__device_id_eae74d6e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__device_id_eae74d6e ON public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm USING btree (device_id); + + +-- +-- Name: nautobot_device_lifecycle__device_platform_id_8a997353; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__device_platform_id_8a997353 ON public.nautobot_device_lifecycle_mgmt_softwarelcm USING btree (device_platform_id); + + +-- +-- Name: nautobot_device_lifecycle__device_type_id_c15e8265; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__device_type_id_c15e8265 ON public.nautobot_device_lifecycle_mgmt_hardwarelcm USING btree (device_type_id); + + +-- +-- Name: nautobot_device_lifecycle__devicerole_id_cb7aece5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__devicerole_id_cb7aece5 ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc USING btree (devicerole_id); + + +-- +-- Name: nautobot_device_lifecycle__devicesoftwarevalidationre_a20528cc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__devicesoftwarevalidationre_a20528cc ON public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace USING btree (devicesoftwarevalidationresult_id); + + +-- +-- Name: nautobot_device_lifecycle__devicetype_id_e9b4fd0c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__devicetype_id_e9b4fd0c ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc USING btree (devicetype_id); + + +-- +-- Name: nautobot_device_lifecycle__devicetype_id_f1dde51b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__devicetype_id_f1dde51b ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types USING btree (devicetype_id); + + +-- +-- Name: nautobot_device_lifecycle__inventory_item_id_0db66f1b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__inventory_item_id_0db66f1b ON public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm USING btree (inventory_item_id); + + +-- +-- Name: nautobot_device_lifecycle__inventoryitem_id_5b5a19f5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__inventoryitem_id_5b5a19f5 ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items USING btree (inventoryitem_id); + + +-- +-- Name: nautobot_device_lifecycle__inventoryitem_id_85030553; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__inventoryitem_id_85030553 ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b USING btree (inventoryitem_id); + + +-- +-- Name: nautobot_device_lifecycle__inventoryitemsoftwarevalid_6008f475; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__inventoryitemsoftwarevalid_6008f475 ON public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 USING btree (inventoryitemsoftwarevalidationresult_id); + + +-- +-- Name: nautobot_device_lifecycle__software_id_127def37; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__software_id_127def37 ON public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f USING btree (software_id); + + +-- +-- Name: nautobot_device_lifecycle__software_id_4b15f249; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__software_id_4b15f249 ON public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm USING btree (software_id); + + +-- +-- Name: nautobot_device_lifecycle__software_id_92121936; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__software_id_92121936 ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm USING btree (software_id); + + +-- +-- Name: nautobot_device_lifecycle__software_id_c5afea37; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__software_id_c5afea37 ON public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult USING btree (software_id); + + +-- +-- Name: nautobot_device_lifecycle__software_id_ecbd1e5d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__software_id_ecbd1e5d ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm USING btree (software_id); + + +-- +-- Name: nautobot_device_lifecycle__softwareimagelcm_id_bb8c26b2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__softwareimagelcm_id_bb8c26b2 ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags USING btree (softwareimagelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__softwareimagelcm_id_bc13369f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__softwareimagelcm_id_bc13369f ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types USING btree (softwareimagelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__softwareimagelcm_id_c994dff5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__softwareimagelcm_id_c994dff5 ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items USING btree (softwareimagelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__status_id_d0f514c9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__status_id_d0f514c9 ON public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm USING btree (status_id); + + +-- +-- Name: nautobot_device_lifecycle__tag_id_15260df6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__tag_id_15260df6 ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags USING btree (tag_id); + + +-- +-- Name: nautobot_device_lifecycle__tag_id_ec56ae94; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__tag_id_ec56ae94 ON public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags USING btree (tag_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_0bc9688a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_0bc9688a ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_219d01de; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_219d01de ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_726b5d9a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_726b5d9a ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_8ec805eb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_8ec805eb ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_a8ac7813; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_a8ac7813 ON public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_e7169a7b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_e7169a7b ON public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle__validatedsoftwarelcm_id_ff30268c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle__validatedsoftwarelcm_id_ff30268c ON public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace USING btree (validatedsoftwarelcm_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contactlcm_contract_id_bc2cb084; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_contactlcm_contract_id_bc2cb084 ON public.nautobot_device_lifecycle_mgmt_contactlcm USING btree (contract_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contractlcm_name_be1a2e6d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_contractlcm_name_be1a2e6d_like ON public.nautobot_device_lifecycle_mgmt_contractlcm USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contractlcm_provider_id_6728ca78; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_contractlcm_provider_id_6728ca78 ON public.nautobot_device_lifecycle_mgmt_contractlcm USING btree (provider_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_cvelcm_name_bdb34969_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_cvelcm_name_bdb34969_like ON public.nautobot_device_lifecycle_mgmt_cvelcm USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_cvelcm_status_id_fe6cdfe8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_cvelcm_status_id_fe6cdfe8 ON public.nautobot_device_lifecycle_mgmt_cvelcm USING btree (status_id); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_providerlcm_name_5d4c024c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_providerlcm_name_5d4c024c_like ON public.nautobot_device_lifecycle_mgmt_providerlcm USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm_cve_id_ab5e9c3a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_lifecycle_mgmt_vulnerabilitylcm_cve_id_ab5e9c3a ON public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm USING btree (cve_id); + + +-- +-- Name: nautobot_device_onboarding_created_device_id_3b7527bb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_onboarding_created_device_id_3b7527bb ON public.nautobot_device_onboarding_onboardingtask USING btree (created_device_id); + + +-- +-- Name: nautobot_device_onboarding_onboardingtask_platform_id_29f56ca5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_onboarding_onboardingtask_platform_id_29f56ca5 ON public.nautobot_device_onboarding_onboardingtask USING btree (platform_id); + + +-- +-- Name: nautobot_device_onboarding_onboardingtask_role_id_c4405036; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_onboarding_onboardingtask_role_id_c4405036 ON public.nautobot_device_onboarding_onboardingtask USING btree (role_id); + + +-- +-- Name: nautobot_device_onboarding_onboardingtask_site_id_5089f3c0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_device_onboarding_onboardingtask_site_id_5089f3c0 ON public.nautobot_device_onboarding_onboardingtask USING btree (site_id); + + +-- +-- Name: nautobot_firewall_models_a_address_group_id_54048514; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_address_group_id_54048514 ON public.nautobot_firewall_models_addressobjectgroupm2m USING btree (address_group_id); + + +-- +-- Name: nautobot_firewall_models_a_address_id_51414ea3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_address_id_51414ea3 ON public.nautobot_firewall_models_addressobjectgroupm2m USING btree (address_id); + + +-- +-- Name: nautobot_firewall_models_a_app_group_id_76c11d36; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_app_group_id_76c11d36 ON public.nautobot_firewall_models_applicationgroupm2m USING btree (app_group_id); + + +-- +-- Name: nautobot_firewall_models_a_application_group_id_ae8eff89; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_application_group_id_ae8eff89 ON public.nautobot_firewall_models_applicationobjectgroupm2m USING btree (application_group_id); + + +-- +-- Name: nautobot_firewall_models_a_application_id_e0bc97f6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_application_id_e0bc97f6 ON public.nautobot_firewall_models_applicationobjectgroupm2m USING btree (application_id); + + +-- +-- Name: nautobot_firewall_models_a_pol_rule_id_acf25529; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_pol_rule_id_acf25529 ON public.nautobot_firewall_models_applicationgroupm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_a_status_id_7d67775d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_a_status_id_7d67775d ON public.nautobot_firewall_models_applicationobjectgroup USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_addressobject_fqdn_id_9484a77c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobject_fqdn_id_9484a77c ON public.nautobot_firewall_models_addressobject USING btree (fqdn_id); + + +-- +-- Name: nautobot_firewall_models_addressobject_ip_address_id_b4b3cea8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobject_ip_address_id_b4b3cea8 ON public.nautobot_firewall_models_addressobject USING btree (ip_address_id); + + +-- +-- Name: nautobot_firewall_models_addressobject_ip_range_id_91f0c0b7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobject_ip_range_id_91f0c0b7 ON public.nautobot_firewall_models_addressobject USING btree (ip_range_id); + + +-- +-- Name: nautobot_firewall_models_addressobject_name_8b1486fb_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobject_name_8b1486fb_like ON public.nautobot_firewall_models_addressobject USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_addressobject_prefix_id_070de85a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobject_prefix_id_070de85a ON public.nautobot_firewall_models_addressobject USING btree (prefix_id); + + +-- +-- Name: nautobot_firewall_models_addressobject_status_id_0aa64850; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobject_status_id_0aa64850 ON public.nautobot_firewall_models_addressobject USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_addressobjectgroup_name_cb064541_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobjectgroup_name_cb064541_like ON public.nautobot_firewall_models_addressobjectgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_addressobjectgroup_status_id_4c14e5b0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_addressobjectgroup_status_id_4c14e5b0 ON public.nautobot_firewall_models_addressobjectgroup USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_applicationm2m_app_id_e1f733a8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_applicationm2m_app_id_e1f733a8 ON public.nautobot_firewall_models_applicationm2m USING btree (app_id); + + +-- +-- Name: nautobot_firewall_models_applicationm2m_pol_rule_id_007c73c6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_applicationm2m_pol_rule_id_007c73c6 ON public.nautobot_firewall_models_applicationm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_applicationobject_name_db09deff_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_applicationobject_name_db09deff_like ON public.nautobot_firewall_models_applicationobject USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_applicationobject_status_id_f49657f8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_applicationobject_status_id_f49657f8 ON public.nautobot_firewall_models_applicationobject USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_d_addr_group_id_3a706afd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_d_addr_group_id_3a706afd ON public.nautobot_firewall_models_destaddrgroupm2m USING btree (addr_group_id); + + +-- +-- Name: nautobot_firewall_models_destaddrgroupm2m_pol_rule_id_2a3ebb3c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_destaddrgroupm2m_pol_rule_id_2a3ebb3c ON public.nautobot_firewall_models_destaddrgroupm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_destaddrm2m_pol_rule_id_25728b88; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_destaddrm2m_pol_rule_id_25728b88 ON public.nautobot_firewall_models_destaddrm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_destaddrm2m_user_id_ed1ebc00; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_destaddrm2m_user_id_ed1ebc00 ON public.nautobot_firewall_models_destaddrm2m USING btree (user_id); + + +-- +-- Name: nautobot_firewall_models_f_ip_address_id_a6b1d436; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_f_ip_address_id_a6b1d436 ON public.nautobot_firewall_models_fqdnipaddressm2m USING btree (ip_address_id); + + +-- +-- Name: nautobot_firewall_models_fqdn_name_4fb1c5a1_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_fqdn_name_4fb1c5a1_like ON public.nautobot_firewall_models_fqdn USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_fqdn_status_id_f4edd525; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_fqdn_status_id_f4edd525 ON public.nautobot_firewall_models_fqdn USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_fqdnipaddressm2m_fqdn_id_ce7b2209; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_fqdnipaddressm2m_fqdn_id_ce7b2209 ON public.nautobot_firewall_models_fqdnipaddressm2m USING btree (fqdn_id); + + +-- +-- Name: nautobot_firewall_models_iprange_end_address_b66cacbf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_iprange_end_address_b66cacbf ON public.nautobot_firewall_models_iprange USING btree (end_address); + + +-- +-- Name: nautobot_firewall_models_iprange_start_address_6787d4b0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_iprange_start_address_6787d4b0 ON public.nautobot_firewall_models_iprange USING btree (start_address); + + +-- +-- Name: nautobot_firewall_models_iprange_status_id_8c516031; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_iprange_status_id_8c516031 ON public.nautobot_firewall_models_iprange USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_iprange_vrf_id_7b40fa73; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_iprange_vrf_id_7b40fa73 ON public.nautobot_firewall_models_iprange USING btree (vrf_id); + + +-- +-- Name: nautobot_firewall_models_n_addr_group_id_13277b47; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_addr_group_id_13277b47 ON public.nautobot_firewall_models_natorigdestaddrgroupm2m USING btree (addr_group_id); + + +-- +-- Name: nautobot_firewall_models_n_addr_group_id_2a93e239; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_addr_group_id_2a93e239 ON public.nautobot_firewall_models_nattranssrcaddrgroupm2m USING btree (addr_group_id); + + +-- +-- Name: nautobot_firewall_models_n_addr_group_id_c453742d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_addr_group_id_c453742d ON public.nautobot_firewall_models_nattransdestaddrgroupm2m USING btree (addr_group_id); + + +-- +-- Name: nautobot_firewall_models_n_addr_group_id_d2be36a1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_addr_group_id_d2be36a1 ON public.nautobot_firewall_models_natorigsrcaddrgroupm2m USING btree (addr_group_id); + + +-- +-- Name: nautobot_firewall_models_n_destination_zone_id_834a6323; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_destination_zone_id_834a6323 ON public.nautobot_firewall_models_natpolicyrule USING btree (destination_zone_id); + + +-- +-- Name: nautobot_firewall_models_n_dynamic_group_id_a3bba65b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_dynamic_group_id_a3bba65b ON public.nautobot_firewall_models_natpolicydynamicgroupm2m USING btree (dynamic_group_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_09f63d9c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_09f63d9c ON public.nautobot_firewall_models_natsrcusergroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_0a8b8cad; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_0a8b8cad ON public.nautobot_firewall_models_natorigdestaddrm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_235a85bf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_235a85bf ON public.nautobot_firewall_models_natorigsrcsvcm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_72abf760; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_72abf760 ON public.nautobot_firewall_models_nattranssrcsvcgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_7f65d43b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_7f65d43b ON public.nautobot_firewall_models_natorigsrcaddrm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_863140b9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_863140b9 ON public.nautobot_firewall_models_nattransdestaddrgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_9054c4c9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_9054c4c9 ON public.nautobot_firewall_models_nattransdestsvcm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_973f6c65; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_973f6c65 ON public.nautobot_firewall_models_natorigdestsvcm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_9a0d7b63; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_9a0d7b63 ON public.nautobot_firewall_models_nattranssrcaddrm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_a171b1f4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_a171b1f4 ON public.nautobot_firewall_models_natorigsrcaddrgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_c45d2afd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_c45d2afd ON public.nautobot_firewall_models_natorigdestsvcgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_db2ea282; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_db2ea282 ON public.nautobot_firewall_models_natorigsrcsvcgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_ea061a16; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_ea061a16 ON public.nautobot_firewall_models_natorigdestaddrgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_ea8e27a4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_ea8e27a4 ON public.nautobot_firewall_models_nattranssrcsvcm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_ef3b03c9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_ef3b03c9 ON public.nautobot_firewall_models_nattransdestaddrm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_f0fc5581; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_f0fc5581 ON public.nautobot_firewall_models_nattransdestsvcgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_pol_rule_id_f5e1729e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_pol_rule_id_f5e1729e ON public.nautobot_firewall_models_nattranssrcaddrgroupm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_policy_id_33dbc26a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_policy_id_33dbc26a ON public.nautobot_firewall_models_natpolicyrulem2m USING btree (nat_policy_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_policy_id_691fba70; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_policy_id_691fba70 ON public.nautobot_firewall_models_natpolicydevicem2m USING btree (nat_policy_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_policy_id_e1bccf74; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_policy_id_e1bccf74 ON public.nautobot_firewall_models_natpolicynatrulem2m USING btree (nat_policy_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_policy_id_e7a24ffc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_policy_id_e7a24ffc ON public.nautobot_firewall_models_natpolicydynamicgroupm2m USING btree (nat_policy_id); + + +-- +-- Name: nautobot_firewall_models_n_nat_rule_id_d3fc234d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_nat_rule_id_d3fc234d ON public.nautobot_firewall_models_natpolicynatrulem2m USING btree (nat_rule_id); + + +-- +-- Name: nautobot_firewall_models_n_svc_group_id_0cb9955a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_svc_group_id_0cb9955a ON public.nautobot_firewall_models_nattranssrcsvcgroupm2m USING btree (svc_group_id); + + +-- +-- Name: nautobot_firewall_models_n_svc_group_id_25a9378f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_svc_group_id_25a9378f ON public.nautobot_firewall_models_nattransdestsvcgroupm2m USING btree (svc_group_id); + + +-- +-- Name: nautobot_firewall_models_n_svc_group_id_53d720ec; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_svc_group_id_53d720ec ON public.nautobot_firewall_models_natorigsrcsvcgroupm2m USING btree (svc_group_id); + + +-- +-- Name: nautobot_firewall_models_n_svc_group_id_8c333360; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_svc_group_id_8c333360 ON public.nautobot_firewall_models_natorigdestsvcgroupm2m USING btree (svc_group_id); + + +-- +-- Name: nautobot_firewall_models_n_user_group_id_d00ade1a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_n_user_group_id_d00ade1a ON public.nautobot_firewall_models_natsrcusergroupm2m USING btree (user_group_id); + + +-- +-- Name: nautobot_firewall_models_name_5e43f7a0_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_name_5e43f7a0_like ON public.nautobot_firewall_models_applicationobjectgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrm2m_user_id_81bf6edb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natorigdestaddrm2m_user_id_81bf6edb ON public.nautobot_firewall_models_natorigdestaddrm2m USING btree (user_id); + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcm2m_svc_id_3ff120c3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natorigdestsvcm2m_svc_id_3ff120c3 ON public.nautobot_firewall_models_natorigdestsvcm2m USING btree (svc_id); + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrm2m_addr_id_7712e5b7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natorigsrcaddrm2m_addr_id_7712e5b7 ON public.nautobot_firewall_models_natorigsrcaddrm2m USING btree (addr_id); + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcm2m_svc_id_bbf10f83; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natorigsrcsvcm2m_svc_id_bbf10f83 ON public.nautobot_firewall_models_natorigsrcsvcm2m USING btree (svc_id); + + +-- +-- Name: nautobot_firewall_models_natpolicy_name_d8514699_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicy_name_d8514699_like ON public.nautobot_firewall_models_natpolicy USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_natpolicy_status_id_3d790486; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicy_status_id_3d790486 ON public.nautobot_firewall_models_natpolicy USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_natpolicy_tenant_id_1f06ffbd; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicy_tenant_id_1f06ffbd ON public.nautobot_firewall_models_natpolicy USING btree (tenant_id); + + +-- +-- Name: nautobot_firewall_models_natpolicydevicem2m_device_id_c92e8b30; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicydevicem2m_device_id_c92e8b30 ON public.nautobot_firewall_models_natpolicydevicem2m USING btree (device_id); + + +-- +-- Name: nautobot_firewall_models_natpolicyrule_source_zone_id_bfb35f1e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicyrule_source_zone_id_bfb35f1e ON public.nautobot_firewall_models_natpolicyrule USING btree (source_zone_id); + + +-- +-- Name: nautobot_firewall_models_natpolicyrule_status_id_3facb5c9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicyrule_status_id_3facb5c9 ON public.nautobot_firewall_models_natpolicyrule USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_natpolicyrulem2m_nat_rule_id_a56cdf88; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natpolicyrulem2m_nat_rule_id_a56cdf88 ON public.nautobot_firewall_models_natpolicyrulem2m USING btree (nat_rule_id); + + +-- +-- Name: nautobot_firewall_models_natsrcuserm2m_nat_pol_rule_id_1998796a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natsrcuserm2m_nat_pol_rule_id_1998796a ON public.nautobot_firewall_models_natsrcuserm2m USING btree (nat_pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_natsrcuserm2m_user_id_6f41e00f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_natsrcuserm2m_user_id_6f41e00f ON public.nautobot_firewall_models_natsrcuserm2m USING btree (user_id); + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrm2m_user_id_a5b0cef3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_nattransdestaddrm2m_user_id_a5b0cef3 ON public.nautobot_firewall_models_nattransdestaddrm2m USING btree (user_id); + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcm2m_svc_id_e343f07b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_nattransdestsvcm2m_svc_id_e343f07b ON public.nautobot_firewall_models_nattransdestsvcm2m USING btree (svc_id); + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrm2m_addr_id_c2a49a97; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_nattranssrcaddrm2m_addr_id_c2a49a97 ON public.nautobot_firewall_models_nattranssrcaddrm2m USING btree (addr_id); + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcm2m_svc_id_ec5e37f1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_nattranssrcsvcm2m_svc_id_ec5e37f1 ON public.nautobot_firewall_models_nattranssrcsvcm2m USING btree (svc_id); + + +-- +-- Name: nautobot_firewall_models_p_destination_zone_id_3ab37089; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_p_destination_zone_id_3ab37089 ON public.nautobot_firewall_models_policyrule USING btree (destination_zone_id); + + +-- +-- Name: nautobot_firewall_models_p_dynamic_group_id_e4f79598; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_p_dynamic_group_id_e4f79598 ON public.nautobot_firewall_models_policydynamicgroupm2m USING btree (dynamic_group_id); + + +-- +-- Name: nautobot_firewall_models_p_policy_id_c8a709e7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_p_policy_id_c8a709e7 ON public.nautobot_firewall_models_policydynamicgroupm2m USING btree (policy_id); + + +-- +-- Name: nautobot_firewall_models_policy_name_aad63c91_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policy_name_aad63c91_like ON public.nautobot_firewall_models_policy USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_policy_status_id_80676cd2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policy_status_id_80676cd2 ON public.nautobot_firewall_models_policy USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_policy_tenant_id_62e13dca; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policy_tenant_id_62e13dca ON public.nautobot_firewall_models_policy USING btree (tenant_id); + + +-- +-- Name: nautobot_firewall_models_policydevicem2m_device_id_51b6b6e2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policydevicem2m_device_id_51b6b6e2 ON public.nautobot_firewall_models_policydevicem2m USING btree (device_id); + + +-- +-- Name: nautobot_firewall_models_policydevicem2m_policy_id_c2ab232b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policydevicem2m_policy_id_c2ab232b ON public.nautobot_firewall_models_policydevicem2m USING btree (policy_id); + + +-- +-- Name: nautobot_firewall_models_policyrule_source_zone_id_511cbf88; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policyrule_source_zone_id_511cbf88 ON public.nautobot_firewall_models_policyrule USING btree (source_zone_id); + + +-- +-- Name: nautobot_firewall_models_policyrule_status_id_ac1bca0c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policyrule_status_id_ac1bca0c ON public.nautobot_firewall_models_policyrule USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_policyrulem2m_policy_id_9591fe9b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policyrulem2m_policy_id_9591fe9b ON public.nautobot_firewall_models_policyrulem2m USING btree (policy_id); + + +-- +-- Name: nautobot_firewall_models_policyrulem2m_rule_id_4fdd7827; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_policyrulem2m_rule_id_4fdd7827 ON public.nautobot_firewall_models_policyrulem2m USING btree (rule_id); + + +-- +-- Name: nautobot_firewall_models_s_service_group_id_ee213329; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_s_service_group_id_ee213329 ON public.nautobot_firewall_models_serviceobjectgroupm2m USING btree (service_group_id); + + +-- +-- Name: nautobot_firewall_models_s_service_id_333fa681; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_s_service_id_333fa681 ON public.nautobot_firewall_models_serviceobjectgroupm2m USING btree (service_id); + + +-- +-- Name: nautobot_firewall_models_serviceobject_status_id_b113969d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_serviceobject_status_id_b113969d ON public.nautobot_firewall_models_serviceobject USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroup_name_f860746a_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_serviceobjectgroup_name_f860746a_like ON public.nautobot_firewall_models_serviceobjectgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroup_status_id_e84efc09; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_serviceobjectgroup_status_id_e84efc09 ON public.nautobot_firewall_models_serviceobjectgroup USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_srcaddrgroupm2m_addr_group_id_356600f1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcaddrgroupm2m_addr_group_id_356600f1 ON public.nautobot_firewall_models_srcaddrgroupm2m USING btree (addr_group_id); + + +-- +-- Name: nautobot_firewall_models_srcaddrgroupm2m_pol_rule_id_09333c9c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcaddrgroupm2m_pol_rule_id_09333c9c ON public.nautobot_firewall_models_srcaddrgroupm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_srcaddrm2m_addr_id_ca3daa48; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcaddrm2m_addr_id_ca3daa48 ON public.nautobot_firewall_models_srcaddrm2m USING btree (addr_id); + + +-- +-- Name: nautobot_firewall_models_srcaddrm2m_pol_rule_id_d4864125; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcaddrm2m_pol_rule_id_d4864125 ON public.nautobot_firewall_models_srcaddrm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_srcsvcgroupm2m_pol_rule_id_5f4a9a18; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcsvcgroupm2m_pol_rule_id_5f4a9a18 ON public.nautobot_firewall_models_srcsvcgroupm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_srcsvcgroupm2m_svc_group_id_cb367ca7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcsvcgroupm2m_svc_group_id_cb367ca7 ON public.nautobot_firewall_models_srcsvcgroupm2m USING btree (svc_group_id); + + +-- +-- Name: nautobot_firewall_models_srcsvcm2m_pol_rule_id_02c0f2ac; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcsvcm2m_pol_rule_id_02c0f2ac ON public.nautobot_firewall_models_srcsvcm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_srcsvcm2m_svc_id_5f1b4d6f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcsvcm2m_svc_id_5f1b4d6f ON public.nautobot_firewall_models_srcsvcm2m USING btree (svc_id); + + +-- +-- Name: nautobot_firewall_models_srcusergroupm2m_pol_rule_id_0e673f44; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcusergroupm2m_pol_rule_id_0e673f44 ON public.nautobot_firewall_models_srcusergroupm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_srcusergroupm2m_user_group_id_a2718e63; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcusergroupm2m_user_group_id_a2718e63 ON public.nautobot_firewall_models_srcusergroupm2m USING btree (user_group_id); + + +-- +-- Name: nautobot_firewall_models_srcuserm2m_pol_rule_id_64c82f6f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcuserm2m_pol_rule_id_64c82f6f ON public.nautobot_firewall_models_srcuserm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_srcuserm2m_user_id_984f785c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_srcuserm2m_user_id_984f785c ON public.nautobot_firewall_models_srcuserm2m USING btree (user_id); + + +-- +-- Name: nautobot_firewall_models_svcgroupm2m_pol_rule_id_517444b1; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_svcgroupm2m_pol_rule_id_517444b1 ON public.nautobot_firewall_models_destsvcgroupm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_svcgroupm2m_svc_group_id_5274f2cc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_svcgroupm2m_svc_group_id_5274f2cc ON public.nautobot_firewall_models_destsvcgroupm2m USING btree (svc_group_id); + + +-- +-- Name: nautobot_firewall_models_svcm2m_pol_rule_id_a7be5774; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_svcm2m_pol_rule_id_a7be5774 ON public.nautobot_firewall_models_destsvcm2m USING btree (pol_rule_id); + + +-- +-- Name: nautobot_firewall_models_svcm2m_svc_id_0eb50559; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_svcm2m_svc_id_0eb50559 ON public.nautobot_firewall_models_destsvcm2m USING btree (svc_id); + + +-- +-- Name: nautobot_firewall_models_u_user_group_id_26f3cea7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_u_user_group_id_26f3cea7 ON public.nautobot_firewall_models_userobjectgroupm2m USING btree (user_group_id); + + +-- +-- Name: nautobot_firewall_models_userobject_status_id_054cc10e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_userobject_status_id_054cc10e ON public.nautobot_firewall_models_userobject USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_userobject_username_01fe4488_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_userobject_username_01fe4488_like ON public.nautobot_firewall_models_userobject USING btree (username varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_userobjectgroup_name_112afdd8_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_userobjectgroup_name_112afdd8_like ON public.nautobot_firewall_models_userobjectgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_userobjectgroup_status_id_dc761379; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_userobjectgroup_status_id_dc761379 ON public.nautobot_firewall_models_userobjectgroup USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_userobjectgroupm2m_user_id_3fd88382; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_userobjectgroupm2m_user_id_3fd88382 ON public.nautobot_firewall_models_userobjectgroupm2m USING btree (user_id); + + +-- +-- Name: nautobot_firewall_models_zone_name_fc3bdbbf_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_zone_name_fc3bdbbf_like ON public.nautobot_firewall_models_zone USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_firewall_models_zone_status_id_8ecd47b8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_zone_status_id_8ecd47b8 ON public.nautobot_firewall_models_zone USING btree (status_id); + + +-- +-- Name: nautobot_firewall_models_zoneinterfacem2m_interface_id_b7a75389; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_zoneinterfacem2m_interface_id_b7a75389 ON public.nautobot_firewall_models_zoneinterfacem2m USING btree (interface_id); + + +-- +-- Name: nautobot_firewall_models_zoneinterfacem2m_zone_id_492f8bfb; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_zoneinterfacem2m_zone_id_492f8bfb ON public.nautobot_firewall_models_zoneinterfacem2m USING btree (zone_id); + + +-- +-- Name: nautobot_firewall_models_zonevrfm2m_vrf_id_ebdeca0d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_zonevrfm2m_vrf_id_ebdeca0d ON public.nautobot_firewall_models_zonevrfm2m USING btree (vrf_id); + + +-- +-- Name: nautobot_firewall_models_zonevrfm2m_zone_id_e0be8445; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_firewall_models_zonevrfm2m_zone_id_e0be8445 ON public.nautobot_firewall_models_zonevrfm2m USING btree (zone_id); + + +-- +-- Name: nautobot_golden_config_compliancefeature_name_a03602be_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_compliancefeature_name_a03602be_like ON public.nautobot_golden_config_compliancefeature USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_golden_config_compliancefeature_slug_52ee58b1_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_compliancefeature_slug_52ee58b1_like ON public.nautobot_golden_config_compliancefeature USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_golden_config_compliancerule_feature_id_599d326c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_compliancerule_feature_id_599d326c ON public.nautobot_golden_config_compliancerule USING btree (feature_id); + + +-- +-- Name: nautobot_golden_config_compliancerule_platform_id_fefbb62e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_compliancerule_platform_id_fefbb62e ON public.nautobot_golden_config_compliancerule USING btree (platform_id); + + +-- +-- Name: nautobot_golden_config_configcompliance_device_id_e79e9798; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_configcompliance_device_id_e79e9798 ON public.nautobot_golden_config_configcompliance USING btree (device_id); + + +-- +-- Name: nautobot_golden_config_configcompliance_rule_id_aad296a7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_configcompliance_rule_id_aad296a7 ON public.nautobot_golden_config_configcompliance USING btree (rule_id); + + +-- +-- Name: nautobot_golden_config_configremove_platform_id_a230d573; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_configremove_platform_id_a230d573 ON public.nautobot_golden_config_configremove USING btree (platform_id); + + +-- +-- Name: nautobot_golden_config_configreplace_platform_id_46e5eda2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_configreplace_platform_id_46e5eda2 ON public.nautobot_golden_config_configreplace USING btree (platform_id); + + +-- +-- Name: nautobot_golden_config_gol_backup_repository_id_0c51f491; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_gol_backup_repository_id_0c51f491 ON public.nautobot_golden_config_goldenconfigsetting USING btree (backup_repository_id); + + +-- +-- Name: nautobot_golden_config_gol_intended_repository_id_4dd88f85; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_gol_intended_repository_id_4dd88f85 ON public.nautobot_golden_config_goldenconfigsetting USING btree (intended_repository_id); + + +-- +-- Name: nautobot_golden_config_gol_jinja_repository_id_1dad39a4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_gol_jinja_repository_id_1dad39a4 ON public.nautobot_golden_config_goldenconfigsetting USING btree (jinja_repository_id); + + +-- +-- Name: nautobot_golden_config_gol_sot_agg_query_id_fdaec944; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_gol_sot_agg_query_id_fdaec944 ON public.nautobot_golden_config_goldenconfigsetting USING btree (sot_agg_query_id); + + +-- +-- Name: nautobot_golden_config_goldenconfig_device_id_2180ab89; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_goldenconfig_device_id_2180ab89 ON public.nautobot_golden_config_goldenconfig USING btree (device_id); + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting_name_c6e8eb3c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_goldenconfigsetting_name_c6e8eb3c_like ON public.nautobot_golden_config_goldenconfigsetting USING btree (name varchar_pattern_ops); + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting_slug_308b7200_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_golden_config_goldenconfigsetting_slug_308b7200_like ON public.nautobot_golden_config_goldenconfigsetting USING btree (slug varchar_pattern_ops); + + +-- +-- Name: nautobot_ssot_sync_job_result_id_0d60881f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_ssot_sync_job_result_id_0d60881f ON public.nautobot_ssot_sync USING btree (job_result_id); + + +-- +-- Name: nautobot_ssot_synclogentry_sync_id_b57732cc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_ssot_synclogentry_sync_id_b57732cc ON public.nautobot_ssot_synclogentry USING btree (sync_id); + + +-- +-- Name: nautobot_ssot_synclogentry_synced_object_type_id_487e676a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX nautobot_ssot_synclogentry_synced_object_type_id_487e676a ON public.nautobot_ssot_synclogentry USING btree (synced_object_type_id); + + +-- +-- Name: social_auth_code_code_a2393167; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_code_code_a2393167 ON public.social_auth_code USING btree (code); + + +-- +-- Name: social_auth_code_code_a2393167_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_code_code_a2393167_like ON public.social_auth_code USING btree (code varchar_pattern_ops); + + +-- +-- Name: social_auth_code_timestamp_176b341f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_code_timestamp_176b341f ON public.social_auth_code USING btree ("timestamp"); + + +-- +-- Name: social_auth_partial_timestamp_50f2119f; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_partial_timestamp_50f2119f ON public.social_auth_partial USING btree ("timestamp"); + + +-- +-- Name: social_auth_partial_token_3017fea3; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_partial_token_3017fea3 ON public.social_auth_partial USING btree (token); + + +-- +-- Name: social_auth_partial_token_3017fea3_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_partial_token_3017fea3_like ON public.social_auth_partial USING btree (token varchar_pattern_ops); + + +-- +-- Name: social_auth_usersocialauth_uid_796e51dc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_usersocialauth_uid_796e51dc ON public.social_auth_usersocialauth USING btree (uid); + + +-- +-- Name: social_auth_usersocialauth_uid_796e51dc_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_usersocialauth_uid_796e51dc_like ON public.social_auth_usersocialauth USING btree (uid varchar_pattern_ops); + + +-- +-- Name: social_auth_usersocialauth_user_id_17d28448; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX social_auth_usersocialauth_user_id_17d28448 ON public.social_auth_usersocialauth USING btree (user_id); + + +-- +-- Name: taggit_tag_name_58eb2ed9_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX taggit_tag_name_58eb2ed9_like ON public.taggit_tag USING btree (name varchar_pattern_ops); + + +-- +-- Name: taggit_tag_slug_6be58b2c_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX taggit_tag_slug_6be58b2c_like ON public.taggit_tag USING btree (slug varchar_pattern_ops); + + +-- +-- Name: taggit_taggeditem_content_type_id_9957a03c; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX taggit_taggeditem_content_type_id_9957a03c ON public.taggit_taggeditem USING btree (content_type_id); + + +-- +-- Name: taggit_taggeditem_content_type_id_object_id_196cc965_idx; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX taggit_taggeditem_content_type_id_object_id_196cc965_idx ON public.taggit_taggeditem USING btree (content_type_id, object_id); + + +-- +-- Name: taggit_taggeditem_object_id_e2d7d1df; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX taggit_taggeditem_object_id_e2d7d1df ON public.taggit_taggeditem USING btree (object_id); + + +-- +-- Name: taggit_taggeditem_tag_id_f4f5b767; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX taggit_taggeditem_tag_id_f4f5b767 ON public.taggit_taggeditem USING btree (tag_id); + + +-- +-- Name: tenancy_tenant_group_id_7daef6f4; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenant_group_id_7daef6f4 ON public.tenancy_tenant USING btree (group_id); + + +-- +-- Name: tenancy_tenant_name_f6e5b2f5_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenant_name_f6e5b2f5_like ON public.tenancy_tenant USING btree (name varchar_pattern_ops); + + +-- +-- Name: tenancy_tenant_slug_0716575e_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenant_slug_0716575e_like ON public.tenancy_tenant USING btree (slug varchar_pattern_ops); + + +-- +-- Name: tenancy_tenantgroup_name_53363199_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenantgroup_name_53363199_like ON public.tenancy_tenantgroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: tenancy_tenantgroup_parent_id_2542fc18; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenantgroup_parent_id_2542fc18 ON public.tenancy_tenantgroup USING btree (parent_id); + + +-- +-- Name: tenancy_tenantgroup_slug_e2af1cb6_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenantgroup_slug_e2af1cb6_like ON public.tenancy_tenantgroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: tenancy_tenantgroup_tree_id_769a98bf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX tenancy_tenantgroup_tree_id_769a98bf ON public.tenancy_tenantgroup USING btree (tree_id); + + +-- +-- Name: unique_without_vrf; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE UNIQUE INDEX unique_without_vrf ON public.nautobot_firewall_models_iprange USING btree (start_address, end_address) WHERE (vrf_id IS NULL); + + +-- +-- Name: users_objectpermission_groups_group_id_fb7ba6e0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_objectpermission_groups_group_id_fb7ba6e0 ON public.users_objectpermission_groups USING btree (group_id); + + +-- +-- Name: users_objectpermission_groups_objectpermission_id_2f7cc117; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_objectpermission_groups_objectpermission_id_2f7cc117 ON public.users_objectpermission_groups USING btree (objectpermission_id); + + +-- +-- Name: users_objectpermission_obj_objectpermission_id_38c7d8f5; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_objectpermission_obj_objectpermission_id_38c7d8f5 ON public.users_objectpermission_object_types USING btree (objectpermission_id); + + +-- +-- Name: users_objectpermission_object_types_contenttype_id_594b1cc7; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_objectpermission_object_types_contenttype_id_594b1cc7 ON public.users_objectpermission_object_types USING btree (contenttype_id); + + +-- +-- Name: users_objectpermission_users_objectpermission_id_78a9c2e6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_objectpermission_users_objectpermission_id_78a9c2e6 ON public.users_objectpermission_users USING btree (objectpermission_id); + + +-- +-- Name: users_objectpermission_users_user_id_16c0905d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_objectpermission_users_user_id_16c0905d ON public.users_objectpermission_users USING btree (user_id); + + +-- +-- Name: users_token_key_820deccd_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_token_key_820deccd_like ON public.users_token USING btree (key varchar_pattern_ops); + + +-- +-- Name: users_token_user_id_af964690; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX users_token_user_id_af964690 ON public.users_token USING btree (user_id); + + +-- +-- Name: virtualization_cluster_group_id_de379828; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_cluster_group_id_de379828 ON public.virtualization_cluster USING btree (group_id); + + +-- +-- Name: virtualization_cluster_location_id_fdcab7e6; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_cluster_location_id_fdcab7e6 ON public.virtualization_cluster USING btree (location_id); + + +-- +-- Name: virtualization_cluster_name_1b59a61b_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_cluster_name_1b59a61b_like ON public.virtualization_cluster USING btree (name varchar_pattern_ops); + + +-- +-- Name: virtualization_cluster_site_id_4d5af282; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_cluster_site_id_4d5af282 ON public.virtualization_cluster USING btree (site_id); + + +-- +-- Name: virtualization_cluster_tenant_id_bc2868d0; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_cluster_tenant_id_bc2868d0 ON public.virtualization_cluster USING btree (tenant_id); + + +-- +-- Name: virtualization_cluster_type_id_4efafb0a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_cluster_type_id_4efafb0a ON public.virtualization_cluster USING btree (type_id); + + +-- +-- Name: virtualization_clustergroup_name_4fcd26b4_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_clustergroup_name_4fcd26b4_like ON public.virtualization_clustergroup USING btree (name varchar_pattern_ops); + + +-- +-- Name: virtualization_clustergroup_slug_57ca1d23_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_clustergroup_slug_57ca1d23_like ON public.virtualization_clustergroup USING btree (slug varchar_pattern_ops); + + +-- +-- Name: virtualization_clustertype_name_ea854d3d_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_clustertype_name_ea854d3d_like ON public.virtualization_clustertype USING btree (name varchar_pattern_ops); + + +-- +-- Name: virtualization_clustertype_slug_8ee4d0e0_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_clustertype_slug_8ee4d0e0_like ON public.virtualization_clustertype USING btree (slug varchar_pattern_ops); + + +-- +-- Name: virtualization_virtualmach_local_context_data_owner_c_f760366b; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmach_local_context_data_owner_c_f760366b ON public.virtualization_virtualmachine USING btree (local_context_data_owner_content_type_id); + + +-- +-- Name: virtualization_virtualmachine_cluster_id_6c9f9047; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_cluster_id_6c9f9047 ON public.virtualization_virtualmachine USING btree (cluster_id); + + +-- +-- Name: virtualization_virtualmachine_local_context_schema_id_d359876d; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_local_context_schema_id_d359876d ON public.virtualization_virtualmachine USING btree (local_context_schema_id); + + +-- +-- Name: virtualization_virtualmachine_name_266f6cdc; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_name_266f6cdc ON public.virtualization_virtualmachine USING btree (name); + + +-- +-- Name: virtualization_virtualmachine_name_266f6cdc_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_name_266f6cdc_like ON public.virtualization_virtualmachine USING btree (name varchar_pattern_ops); + + +-- +-- Name: virtualization_virtualmachine_platform_id_a6c5ccb2; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_platform_id_a6c5ccb2 ON public.virtualization_virtualmachine USING btree (platform_id); + + +-- +-- Name: virtualization_virtualmachine_role_id_0cc898f9; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_role_id_0cc898f9 ON public.virtualization_virtualmachine USING btree (role_id); + + +-- +-- Name: virtualization_virtualmachine_status_id_ff17be20; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_status_id_ff17be20 ON public.virtualization_virtualmachine USING btree (status_id); + + +-- +-- Name: virtualization_virtualmachine_tenant_id_d00d1d77; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_virtualmachine_tenant_id_d00d1d77 ON public.virtualization_virtualmachine USING btree (tenant_id); + + +-- +-- Name: virtualization_vminterface__name_0052e83a; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface__name_0052e83a ON public.virtualization_vminterface USING btree (_name); + + +-- +-- Name: virtualization_vminterface__name_0052e83a_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface__name_0052e83a_like ON public.virtualization_vminterface USING btree (_name varchar_pattern_ops); + + +-- +-- Name: virtualization_vminterface_bridge_id_7462b91e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_bridge_id_7462b91e ON public.virtualization_vminterface USING btree (bridge_id); + + +-- +-- Name: virtualization_vminterface_name_8b75a799; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_name_8b75a799 ON public.virtualization_vminterface USING btree (name); + + +-- +-- Name: virtualization_vminterface_name_8b75a799_like; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_name_8b75a799_like ON public.virtualization_vminterface USING btree (name varchar_pattern_ops); + + +-- +-- Name: virtualization_vminterface_parent_interface_id_3532b142; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_parent_interface_id_3532b142 ON public.virtualization_vminterface USING btree (parent_interface_id); + + +-- +-- Name: virtualization_vminterface_status_id_5f9104d8; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_status_id_5f9104d8 ON public.virtualization_vminterface USING btree (status_id); + + +-- +-- Name: virtualization_vminterface_tagged_vlans_vlan_id_4e77411e; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_tagged_vlans_vlan_id_4e77411e ON public.virtualization_vminterface_tagged_vlans USING btree (vlan_id); + + +-- +-- Name: virtualization_vminterface_tagged_vlans_vminterface_id_904b12de; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_tagged_vlans_vminterface_id_904b12de ON public.virtualization_vminterface_tagged_vlans USING btree (vminterface_id); + + +-- +-- Name: virtualization_vminterface_untagged_vlan_id_aea4fc69; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_untagged_vlan_id_aea4fc69 ON public.virtualization_vminterface USING btree (untagged_vlan_id); + + +-- +-- Name: virtualization_vminterface_virtual_machine_id_e9f89829; Type: INDEX; Schema: public; Owner: nautobot +-- + +CREATE INDEX virtualization_vminterface_virtual_machine_id_e9f89829 ON public.virtualization_vminterface USING btree (virtual_machine_id); + + +-- +-- Name: auth_group_permissions auth_group_permissio_permission_id_84c5c92e_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissio_permission_id_84c5c92e_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_group_permissions auth_group_permissions_group_id_b120cbf9_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_group_permissions + ADD CONSTRAINT auth_group_permissions_group_id_b120cbf9_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_permission auth_permission_content_type_id_2f476e4b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_permission + ADD CONSTRAINT auth_permission_content_type_id_2f476e4b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_groups auth_user_groups_group_id_97559544_fk_auth_group_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_group_id_97559544_fk_auth_group_id FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_groups auth_user_groups_user_id_6a12ed8b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_groups + ADD CONSTRAINT auth_user_groups_user_id_6a12ed8b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_user_permissions auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permi_permission_id_1fbb5f2c_fk_auth_perm FOREIGN KEY (permission_id) REFERENCES public.auth_permission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: auth_user_user_permissions auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.auth_user_user_permissions + ADD CONSTRAINT auth_user_user_permissions_user_id_a95ead1b_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuit circuits_circuit_provider_id_d9195418_fk_circuits_provider_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_provider_id_d9195418_fk_circuits_provider_id FOREIGN KEY (provider_id) REFERENCES public.circuits_provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuit circuits_circuit_status_id_6433793f_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_status_id_6433793f_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuit circuits_circuit_tenant_id_812508a5_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_tenant_id_812508a5_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuit circuits_circuit_termination_a_id_f891adac_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_termination_a_id_f891adac_fk_circuits_ FOREIGN KEY (termination_a_id) REFERENCES public.circuits_circuittermination(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuit circuits_circuit_termination_z_id_377b8551_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_termination_z_id_377b8551_fk_circuits_ FOREIGN KEY (termination_z_id) REFERENCES public.circuits_circuittermination(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuit circuits_circuit_type_id_1b9f485a_fk_circuits_circuittype_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuit + ADD CONSTRAINT circuits_circuit_type_id_1b9f485a_fk_circuits_circuittype_id FOREIGN KEY (type_id) REFERENCES public.circuits_circuittype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuitterm__cable_peer_type_id_bd122156_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuitterm__cable_peer_type_id_bd122156_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuitterm__path_id_6dfd8db0_fk_dcim_cabl; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuitterm__path_id_6dfd8db0_fk_dcim_cabl FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuitterm_circuit_id_257e87e7_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuitterm_circuit_id_257e87e7_fk_circuits_ FOREIGN KEY (circuit_id) REFERENCES public.circuits_circuit(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuitterm_location_id_9896bd96_fk_dcim_loca; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuitterm_location_id_9896bd96_fk_dcim_loca FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuitterm_provider_network_id_b0c660f1_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuitterm_provider_network_id_b0c660f1_fk_circuits_ FOREIGN KEY (provider_network_id) REFERENCES public.circuits_providernetwork(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuittermination_cable_id_35e9f703_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuittermination_cable_id_35e9f703_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_circuittermination circuits_circuittermination_site_id_e6fe5652_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_circuittermination + ADD CONSTRAINT circuits_circuittermination_site_id_e6fe5652_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: circuits_providernetwork circuits_providernet_provider_id_7992236c_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.circuits_providernetwork + ADD CONSTRAINT circuits_providernet_provider_id_7992236c_fk_circuits_ FOREIGN KEY (provider_id) REFERENCES public.circuits_provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cable dcim_cable__termination_a_device_id_e59cde1c_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable__termination_a_device_id_e59cde1c_fk_dcim_device_id FOREIGN KEY (_termination_a_device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cable dcim_cable__termination_b_device_id_a9073762_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable__termination_b_device_id_a9073762_fk_dcim_device_id FOREIGN KEY (_termination_b_device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cable dcim_cable_status_id_6a580869_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable_status_id_6a580869_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cable dcim_cable_termination_a_type_i_a614bab8_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable_termination_a_type_i_a614bab8_fk_django_co FOREIGN KEY (termination_a_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cable dcim_cable_termination_b_type_i_a91595d0_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cable + ADD CONSTRAINT dcim_cable_termination_b_type_i_a91595d0_fk_django_co FOREIGN KEY (termination_b_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cablepath dcim_cablepath_destination_type_id_a8c1654b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cablepath + ADD CONSTRAINT dcim_cablepath_destination_type_id_a8c1654b_fk_django_co FOREIGN KEY (destination_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_cablepath dcim_cablepath_origin_type_id_6de54f6d_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_cablepath + ADD CONSTRAINT dcim_cablepath_origin_type_id_6de54f6d_fk_django_co FOREIGN KEY (origin_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleport dcim_consoleport__cable_peer_type_id_52adb1be_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleport + ADD CONSTRAINT dcim_consoleport__cable_peer_type_id_52adb1be_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleport dcim_consoleport__path_id_e40a4436_fk_dcim_cablepath_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleport + ADD CONSTRAINT dcim_consoleport__path_id_e40a4436_fk_dcim_cablepath_id FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleport dcim_consoleport_cable_id_a9ae5465_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleport + ADD CONSTRAINT dcim_consoleport_cable_id_a9ae5465_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleport dcim_consoleport_device_id_f2d90d3c_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleport + ADD CONSTRAINT dcim_consoleport_device_id_f2d90d3c_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleporttemplate dcim_consoleporttemp_device_type_id_075d4015_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleporttemplate + ADD CONSTRAINT dcim_consoleporttemp_device_type_id_075d4015_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleserverport dcim_consoleserverpo__cable_peer_type_id_132b6744_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverport + ADD CONSTRAINT dcim_consoleserverpo__cable_peer_type_id_132b6744_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleserverporttemplate dcim_consoleserverpo_device_type_id_579bdc86_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverporttemplate + ADD CONSTRAINT dcim_consoleserverpo_device_type_id_579bdc86_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleserverport dcim_consoleserverport__path_id_dc5abe09_fk_dcim_cablepath_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverport + ADD CONSTRAINT dcim_consoleserverport__path_id_dc5abe09_fk_dcim_cablepath_id FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleserverport dcim_consoleserverport_cable_id_f2940dfd_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverport + ADD CONSTRAINT dcim_consoleserverport_cable_id_f2940dfd_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_consoleserverport dcim_consoleserverport_device_id_d9866581_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_consoleserverport + ADD CONSTRAINT dcim_consoleserverport_device_id_d9866581_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_cluster_id_cf852f78_fk_virtualization_cluster_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_cluster_id_cf852f78_fk_virtualization_cluster_id FOREIGN KEY (cluster_id) REFERENCES public.virtualization_cluster(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_device_redundancy_gr_ca97f1fc_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_device_redundancy_gr_ca97f1fc_fk_dcim_devi FOREIGN KEY (device_redundancy_group_id) REFERENCES public.dcim_deviceredundancygroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_device_role_id_682e8188_fk_dcim_devicerole_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_device_role_id_682e8188_fk_dcim_devicerole_id FOREIGN KEY (device_role_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_device_type_id_d61b4086_fk_dcim_devicetype_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_device_type_id_d61b4086_fk_dcim_devicetype_id FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_local_context_data_o_5d06013b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_local_context_data_o_5d06013b_fk_django_co FOREIGN KEY (local_context_data_owner_content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_local_context_schema_0ff8d657_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_local_context_schema_0ff8d657_fk_extras_co FOREIGN KEY (local_context_schema_id) REFERENCES public.extras_configcontextschema(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_location_id_11a7bedb_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_location_id_11a7bedb_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_platform_id_468138f1_fk_dcim_platform_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_platform_id_468138f1_fk_dcim_platform_id FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_primary_ip4_id_2ccd943a_fk_ipam_ipaddress_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_primary_ip4_id_2ccd943a_fk_ipam_ipaddress_id FOREIGN KEY (primary_ip4_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_primary_ip6_id_d180fe91_fk_ipam_ipaddress_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_primary_ip6_id_d180fe91_fk_ipam_ipaddress_id FOREIGN KEY (primary_ip6_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_rack_id_23bde71f_fk_dcim_rack_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_rack_id_23bde71f_fk_dcim_rack_id FOREIGN KEY (rack_id) REFERENCES public.dcim_rack(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_secrets_group_id_52d75f4a_fk_extras_secretsgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_secrets_group_id_52d75f4a_fk_extras_secretsgroup_id FOREIGN KEY (secrets_group_id) REFERENCES public.extras_secretsgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_site_id_ff897cf6_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_site_id_ff897cf6_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_status_id_96d2fc6f_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_status_id_96d2fc6f_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_tenant_id_dcea7969_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_tenant_id_dcea7969_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_device dcim_device_virtual_chassis_id_aed51693_fk_dcim_virt; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_device + ADD CONSTRAINT dcim_device_virtual_chassis_id_aed51693_fk_dcim_virt FOREIGN KEY (virtual_chassis_id) REFERENCES public.dcim_virtualchassis(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_devicebay dcim_devicebay_device_id_0c8a1218_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebay + ADD CONSTRAINT dcim_devicebay_device_id_0c8a1218_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_devicebay dcim_devicebay_installed_device_id_04618112_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebay + ADD CONSTRAINT dcim_devicebay_installed_device_id_04618112_fk_dcim_device_id FOREIGN KEY (installed_device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_devicebaytemplate dcim_devicebaytempla_device_type_id_f4b24a29_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicebaytemplate + ADD CONSTRAINT dcim_devicebaytempla_device_type_id_f4b24a29_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_deviceredundancygroup dcim_deviceredundanc_secrets_group_id_19061ee9_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_deviceredundancygroup + ADD CONSTRAINT dcim_deviceredundanc_secrets_group_id_19061ee9_fk_extras_se FOREIGN KEY (secrets_group_id) REFERENCES public.extras_secretsgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_deviceredundancygroup dcim_deviceredundanc_status_id_de1ca6f3_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_deviceredundancygroup + ADD CONSTRAINT dcim_deviceredundanc_status_id_de1ca6f3_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_devicetype dcim_devicetype_manufacturer_id_a3e8029e_fk_dcim_manu; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_devicetype + ADD CONSTRAINT dcim_devicetype_manufacturer_id_a3e8029e_fk_dcim_manu FOREIGN KEY (manufacturer_id) REFERENCES public.dcim_manufacturer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_frontport dcim_frontport__cable_peer_type_id_c4690f56_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport__cable_peer_type_id_c4690f56_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_frontport dcim_frontport_cable_id_04ff8aab_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport_cable_id_04ff8aab_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_frontport dcim_frontport_device_id_950557b5_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport_device_id_950557b5_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_frontport dcim_frontport_rear_port_id_78df2532_fk_dcim_rearport_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontport + ADD CONSTRAINT dcim_frontport_rear_port_id_78df2532_fk_dcim_rearport_id FOREIGN KEY (rear_port_id) REFERENCES public.dcim_rearport(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_frontporttemplate dcim_frontporttempla_device_type_id_f088b952_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontporttemplate + ADD CONSTRAINT dcim_frontporttempla_device_type_id_f088b952_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_frontporttemplate dcim_frontporttempla_rear_port_id_9775411b_fk_dcim_rear; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_frontporttemplate + ADD CONSTRAINT dcim_frontporttempla_rear_port_id_9775411b_fk_dcim_rear FOREIGN KEY (rear_port_id) REFERENCES public.dcim_rearporttemplate(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface__cable_peer_type_id_ce52cb81_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface__cable_peer_type_id_ce52cb81_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface__path_id_f8f4f7f0_fk_dcim_cablepath_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface__path_id_f8f4f7f0_fk_dcim_cablepath_id FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_bridge_id_f2a8df85_fk_dcim_interface_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_bridge_id_f2a8df85_fk_dcim_interface_id FOREIGN KEY (bridge_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_cable_id_1b264edb_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_cable_id_1b264edb_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_device_id_359c6115_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_device_id_359c6115_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_lag_id_ea1a1d12_fk_dcim_interface_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_lag_id_ea1a1d12_fk_dcim_interface_id FOREIGN KEY (lag_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_parent_interface_id_dc46b61a_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_parent_interface_id_dc46b61a_fk_dcim_inte FOREIGN KEY (parent_interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_status_id_5d68d3d6_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_status_id_5d68d3d6_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface_tagged_vlans dcim_interface_tagge_interface_id_5870c9e9_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface_tagged_vlans + ADD CONSTRAINT dcim_interface_tagge_interface_id_5870c9e9_fk_dcim_inte FOREIGN KEY (interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface_tagged_vlans dcim_interface_tagged_vlans_vlan_id_e027005c_fk_ipam_vlan_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface_tagged_vlans + ADD CONSTRAINT dcim_interface_tagged_vlans_vlan_id_e027005c_fk_ipam_vlan_id FOREIGN KEY (vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interface dcim_interface_untagged_vlan_id_838dc7be_fk_ipam_vlan_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interface + ADD CONSTRAINT dcim_interface_untagged_vlan_id_838dc7be_fk_ipam_vlan_id FOREIGN KEY (untagged_vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_interfacetemplate dcim_interfacetempla_device_type_id_4bfcbfab_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_interfacetemplate + ADD CONSTRAINT dcim_interfacetempla_device_type_id_4bfcbfab_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_inventoryitem dcim_inventoryitem_device_id_033d83f8_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_inventoryitem + ADD CONSTRAINT dcim_inventoryitem_device_id_033d83f8_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_inventoryitem dcim_inventoryitem_manufacturer_id_dcd1b78a_fk_dcim_manu; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_inventoryitem + ADD CONSTRAINT dcim_inventoryitem_manufacturer_id_dcd1b78a_fk_dcim_manu FOREIGN KEY (manufacturer_id) REFERENCES public.dcim_manufacturer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_inventoryitem dcim_inventoryitem_parent_id_7ebcd457_fk_dcim_inventoryitem_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_inventoryitem + ADD CONSTRAINT dcim_inventoryitem_parent_id_7ebcd457_fk_dcim_inventoryitem_id FOREIGN KEY (parent_id) REFERENCES public.dcim_inventoryitem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_location dcim_location_location_type_id_511a9421_fk_dcim_locationtype_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_location_type_id_511a9421_fk_dcim_locationtype_id FOREIGN KEY (location_type_id) REFERENCES public.dcim_locationtype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_location dcim_location_parent_id_d77f3318_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_parent_id_d77f3318_fk_dcim_location_id FOREIGN KEY (parent_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_location dcim_location_site_id_b55e975f_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_site_id_b55e975f_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_location dcim_location_status_id_3d74f10a_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_status_id_3d74f10a_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_location dcim_location_tenant_id_2c4df974_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_location + ADD CONSTRAINT dcim_location_tenant_id_2c4df974_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_locationtype_content_types dcim_locationtype_co_contenttype_id_806c318e_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype_content_types + ADD CONSTRAINT dcim_locationtype_co_contenttype_id_806c318e_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_locationtype_content_types dcim_locationtype_co_locationtype_id_daa2005b_fk_dcim_loca; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype_content_types + ADD CONSTRAINT dcim_locationtype_co_locationtype_id_daa2005b_fk_dcim_loca FOREIGN KEY (locationtype_id) REFERENCES public.dcim_locationtype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_locationtype dcim_locationtype_parent_id_023ca1c8_fk_dcim_locationtype_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_locationtype + ADD CONSTRAINT dcim_locationtype_parent_id_023ca1c8_fk_dcim_locationtype_id FOREIGN KEY (parent_id) REFERENCES public.dcim_locationtype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_platform dcim_platform_manufacturer_id_83f72d3d_fk_dcim_manufacturer_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_platform + ADD CONSTRAINT dcim_platform_manufacturer_id_83f72d3d_fk_dcim_manufacturer_id FOREIGN KEY (manufacturer_id) REFERENCES public.dcim_manufacturer(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerfeed dcim_powerfeed__cable_peer_type_id_9f930589_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed__cable_peer_type_id_9f930589_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerfeed dcim_powerfeed__path_id_a1ea1f28_fk_dcim_cablepath_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed__path_id_a1ea1f28_fk_dcim_cablepath_id FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerfeed dcim_powerfeed_cable_id_ec44c4f8_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed_cable_id_ec44c4f8_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerfeed dcim_powerfeed_power_panel_id_32bde3be_fk_dcim_powerpanel_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed_power_panel_id_32bde3be_fk_dcim_powerpanel_id FOREIGN KEY (power_panel_id) REFERENCES public.dcim_powerpanel(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerfeed dcim_powerfeed_rack_id_7abba090_fk_dcim_rack_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed_rack_id_7abba090_fk_dcim_rack_id FOREIGN KEY (rack_id) REFERENCES public.dcim_rack(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerfeed dcim_powerfeed_status_id_8c424cc3_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerfeed + ADD CONSTRAINT dcim_powerfeed_status_id_8c424cc3_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet__cable_peer_type_id_bbff28d0_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet__cable_peer_type_id_bbff28d0_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet__path_id_cbb47bb9_fk_dcim_cablepath_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet__path_id_cbb47bb9_fk_dcim_cablepath_id FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet_cable_id_8dbea1ec_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet_cable_id_8dbea1ec_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet_device_id_286351d7_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet_device_id_286351d7_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlet dcim_poweroutlet_power_port_id_9bdf4163_fk_dcim_powerport_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlet + ADD CONSTRAINT dcim_poweroutlet_power_port_id_9bdf4163_fk_dcim_powerport_id FOREIGN KEY (power_port_id) REFERENCES public.dcim_powerport(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlettemplate dcim_poweroutlettemp_device_type_id_26b2316c_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlettemplate + ADD CONSTRAINT dcim_poweroutlettemp_device_type_id_26b2316c_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_poweroutlettemplate dcim_poweroutlettemp_power_port_id_c0fb0c42_fk_dcim_powe; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_poweroutlettemplate + ADD CONSTRAINT dcim_poweroutlettemp_power_port_id_c0fb0c42_fk_dcim_powe FOREIGN KEY (power_port_id) REFERENCES public.dcim_powerporttemplate(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerpanel dcim_powerpanel_location_id_474b60f8_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerpanel + ADD CONSTRAINT dcim_powerpanel_location_id_474b60f8_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerpanel dcim_powerpanel_rack_group_id_76467cc9_fk_dcim_rackgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerpanel + ADD CONSTRAINT dcim_powerpanel_rack_group_id_76467cc9_fk_dcim_rackgroup_id FOREIGN KEY (rack_group_id) REFERENCES public.dcim_rackgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerpanel dcim_powerpanel_site_id_c430bc89_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerpanel + ADD CONSTRAINT dcim_powerpanel_site_id_c430bc89_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerport dcim_powerport__cable_peer_type_id_9df2a278_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerport + ADD CONSTRAINT dcim_powerport__cable_peer_type_id_9df2a278_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerport dcim_powerport__path_id_9fe4af8f_fk_dcim_cablepath_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerport + ADD CONSTRAINT dcim_powerport__path_id_9fe4af8f_fk_dcim_cablepath_id FOREIGN KEY (_path_id) REFERENCES public.dcim_cablepath(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerport dcim_powerport_cable_id_c9682ba2_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerport + ADD CONSTRAINT dcim_powerport_cable_id_c9682ba2_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerport dcim_powerport_device_id_ef7185ae_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerport + ADD CONSTRAINT dcim_powerport_device_id_ef7185ae_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_powerporttemplate dcim_powerporttempla_device_type_id_1ddfbfcc_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_powerporttemplate + ADD CONSTRAINT dcim_powerporttempla_device_type_id_1ddfbfcc_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rack dcim_rack_group_id_44e90ea9_fk_dcim_rackgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_group_id_44e90ea9_fk_dcim_rackgroup_id FOREIGN KEY (group_id) REFERENCES public.dcim_rackgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rack dcim_rack_location_id_5f63ec31_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_location_id_5f63ec31_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rack dcim_rack_role_id_62d6919e_fk_dcim_rackrole_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_role_id_62d6919e_fk_dcim_rackrole_id FOREIGN KEY (role_id) REFERENCES public.dcim_rackrole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rack dcim_rack_site_id_403c7b3a_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_site_id_403c7b3a_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rack dcim_rack_status_id_ee3dee3e_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_status_id_ee3dee3e_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rack dcim_rack_tenant_id_7cdf3725_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rack + ADD CONSTRAINT dcim_rack_tenant_id_7cdf3725_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rackgroup dcim_rackgroup_location_id_5a6fdeac_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackgroup + ADD CONSTRAINT dcim_rackgroup_location_id_5a6fdeac_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rackgroup dcim_rackgroup_parent_id_cc315105_fk_dcim_rackgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackgroup + ADD CONSTRAINT dcim_rackgroup_parent_id_cc315105_fk_dcim_rackgroup_id FOREIGN KEY (parent_id) REFERENCES public.dcim_rackgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rackgroup dcim_rackgroup_site_id_13520e89_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackgroup + ADD CONSTRAINT dcim_rackgroup_site_id_13520e89_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rackreservation dcim_rackreservation_rack_id_1ebbaa9b_fk_dcim_rack_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackreservation + ADD CONSTRAINT dcim_rackreservation_rack_id_1ebbaa9b_fk_dcim_rack_id FOREIGN KEY (rack_id) REFERENCES public.dcim_rack(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rackreservation dcim_rackreservation_tenant_id_eb5e045f_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackreservation + ADD CONSTRAINT dcim_rackreservation_tenant_id_eb5e045f_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rackreservation dcim_rackreservation_user_id_0785a527_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rackreservation + ADD CONSTRAINT dcim_rackreservation_user_id_0785a527_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rearport dcim_rearport__cable_peer_type_id_cecf241c_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearport + ADD CONSTRAINT dcim_rearport__cable_peer_type_id_cecf241c_fk_django_co FOREIGN KEY (_cable_peer_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rearport dcim_rearport_cable_id_42c0e4e7_fk_dcim_cable_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearport + ADD CONSTRAINT dcim_rearport_cable_id_42c0e4e7_fk_dcim_cable_id FOREIGN KEY (cable_id) REFERENCES public.dcim_cable(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rearport dcim_rearport_device_id_0bdfe9c0_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearport + ADD CONSTRAINT dcim_rearport_device_id_0bdfe9c0_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_rearporttemplate dcim_rearporttemplat_device_type_id_6a02fd01_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_rearporttemplate + ADD CONSTRAINT dcim_rearporttemplat_device_type_id_6a02fd01_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_region dcim_region_parent_id_2486f5d4_fk_dcim_region_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_region + ADD CONSTRAINT dcim_region_parent_id_2486f5d4_fk_dcim_region_id FOREIGN KEY (parent_id) REFERENCES public.dcim_region(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_site dcim_site_region_id_45210932_fk_dcim_region_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_site + ADD CONSTRAINT dcim_site_region_id_45210932_fk_dcim_region_id FOREIGN KEY (region_id) REFERENCES public.dcim_region(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_site dcim_site_status_id_e6a50f56_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_site + ADD CONSTRAINT dcim_site_status_id_e6a50f56_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_site dcim_site_tenant_id_15e7df63_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_site + ADD CONSTRAINT dcim_site_tenant_id_15e7df63_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: dcim_virtualchassis dcim_virtualchassis_master_id_ab54cfc6_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.dcim_virtualchassis + ADD CONSTRAINT dcim_virtualchassis_master_id_ab54cfc6_fk_dcim_device_id FOREIGN KEY (master_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_admin_log django_admin_log_content_type_id_c4bce8eb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_content_type_id_c4bce8eb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_admin_log django_admin_log_user_id_c564eba6_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_admin_log + ADD CONSTRAINT django_admin_log_user_id_c564eba6_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_celery_beat_periodictask django_celery_beat_p_clocked_id_47a69f82_fk_django_ce; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask + ADD CONSTRAINT django_celery_beat_p_clocked_id_47a69f82_fk_django_ce FOREIGN KEY (clocked_id) REFERENCES public.django_celery_beat_clockedschedule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_celery_beat_periodictask django_celery_beat_p_crontab_id_d3cba168_fk_django_ce; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask + ADD CONSTRAINT django_celery_beat_p_crontab_id_d3cba168_fk_django_ce FOREIGN KEY (crontab_id) REFERENCES public.django_celery_beat_crontabschedule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_celery_beat_periodictask django_celery_beat_p_interval_id_a8ca27da_fk_django_ce; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask + ADD CONSTRAINT django_celery_beat_p_interval_id_a8ca27da_fk_django_ce FOREIGN KEY (interval_id) REFERENCES public.django_celery_beat_intervalschedule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: django_celery_beat_periodictask django_celery_beat_p_solar_id_a87ce72c_fk_django_ce; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.django_celery_beat_periodictask + ADD CONSTRAINT django_celery_beat_p_solar_id_a87ce72c_fk_django_ce FOREIGN KEY (solar_id) REFERENCES public.django_celery_beat_solarschedule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_computedfield extras_computedfield_content_type_id_def6603f_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_computedfield + ADD CONSTRAINT extras_computedfield_content_type_id_def6603f_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_clusters extras_configcontext_cluster_id_6abd47a1_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_clusters + ADD CONSTRAINT extras_configcontext_cluster_id_6abd47a1_fk_virtualiz FOREIGN KEY (cluster_id) REFERENCES public.virtualization_cluster(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_cluster_groups extras_configcontext_clustergroup_id_f4322ce8_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_cluster_groups + ADD CONSTRAINT extras_configcontext_clustergroup_id_f4322ce8_fk_virtualiz FOREIGN KEY (clustergroup_id) REFERENCES public.virtualization_clustergroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_platforms extras_configcontext_configcontext_id_2a516699_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_platforms + ADD CONSTRAINT extras_configcontext_configcontext_id_2a516699_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_dynamic_groups extras_configcontext_configcontext_id_3cdbc95f_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_dynamic_groups + ADD CONSTRAINT extras_configcontext_configcontext_id_3cdbc95f_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_device_types extras_configcontext_configcontext_id_55632923_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_types + ADD CONSTRAINT extras_configcontext_configcontext_id_55632923_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_roles extras_configcontext_configcontext_id_59b67386_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_roles + ADD CONSTRAINT extras_configcontext_configcontext_id_59b67386_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_tags extras_configcontext_configcontext_id_64a392b1_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tags + ADD CONSTRAINT extras_configcontext_configcontext_id_64a392b1_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_device_redundancy_groups extras_configcontext_configcontext_id_72bfff9d_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_redundancy_groups + ADD CONSTRAINT extras_configcontext_configcontext_id_72bfff9d_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_regions extras_configcontext_configcontext_id_73003dbc_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_regions + ADD CONSTRAINT extras_configcontext_configcontext_id_73003dbc_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_sites extras_configcontext_configcontext_id_8c54feb9_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_sites + ADD CONSTRAINT extras_configcontext_configcontext_id_8c54feb9_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_cluster_groups extras_configcontext_configcontext_id_8f50b794_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_cluster_groups + ADD CONSTRAINT extras_configcontext_configcontext_id_8f50b794_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_tenant_groups extras_configcontext_configcontext_id_92f68345_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenant_groups + ADD CONSTRAINT extras_configcontext_configcontext_id_92f68345_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_tenants extras_configcontext_configcontext_id_b53552a6_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenants + ADD CONSTRAINT extras_configcontext_configcontext_id_b53552a6_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_locations extras_configcontext_configcontext_id_cc629ec1_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_locations + ADD CONSTRAINT extras_configcontext_configcontext_id_cc629ec1_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_clusters extras_configcontext_configcontext_id_ed579a40_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_clusters + ADD CONSTRAINT extras_configcontext_configcontext_id_ed579a40_fk_extras_co FOREIGN KEY (configcontext_id) REFERENCES public.extras_configcontext(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_device_redundancy_groups extras_configcontext_deviceredundancygrou_d30c185c_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_redundancy_groups + ADD CONSTRAINT extras_configcontext_deviceredundancygrou_d30c185c_fk_dcim_devi FOREIGN KEY (deviceredundancygroup_id) REFERENCES public.dcim_deviceredundancygroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_roles extras_configcontext_devicerole_id_d3a84813_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_roles + ADD CONSTRAINT extras_configcontext_devicerole_id_d3a84813_fk_dcim_devi FOREIGN KEY (devicerole_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_device_types extras_configcontext_devicetype_id_b8788c2d_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_device_types + ADD CONSTRAINT extras_configcontext_devicetype_id_b8788c2d_fk_dcim_devi FOREIGN KEY (devicetype_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_dynamic_groups extras_configcontext_dynamicgroup_id_05854998_fk_extras_dy; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_dynamic_groups + ADD CONSTRAINT extras_configcontext_dynamicgroup_id_05854998_fk_extras_dy FOREIGN KEY (dynamicgroup_id) REFERENCES public.extras_dynamicgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_locations extras_configcontext_location_id_9e19eac9_fk_dcim_loca; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_locations + ADD CONSTRAINT extras_configcontext_location_id_9e19eac9_fk_dcim_loca FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontextschema extras_configcontext_owner_content_type_i_0a0756bc_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontextschema + ADD CONSTRAINT extras_configcontext_owner_content_type_i_0a0756bc_fk_django_co FOREIGN KEY (owner_content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext extras_configcontext_owner_content_type_i_af30e837_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext + ADD CONSTRAINT extras_configcontext_owner_content_type_i_af30e837_fk_django_co FOREIGN KEY (owner_content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_platforms extras_configcontext_platform_id_3fdfedc0_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_platforms + ADD CONSTRAINT extras_configcontext_platform_id_3fdfedc0_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_regions extras_configcontext_region_id_35c6ba9d_fk_dcim_regi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_regions + ADD CONSTRAINT extras_configcontext_region_id_35c6ba9d_fk_dcim_regi FOREIGN KEY (region_id) REFERENCES public.dcim_region(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext extras_configcontext_schema_id_1a9d39fe_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext + ADD CONSTRAINT extras_configcontext_schema_id_1a9d39fe_fk_extras_co FOREIGN KEY (schema_id) REFERENCES public.extras_configcontextschema(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_sites extras_configcontext_sites_site_id_cbb76c96_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_sites + ADD CONSTRAINT extras_configcontext_sites_site_id_cbb76c96_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_tags extras_configcontext_tags_tag_id_129a5d87_fk_extras_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tags + ADD CONSTRAINT extras_configcontext_tags_tag_id_129a5d87_fk_extras_tag_id FOREIGN KEY (tag_id) REFERENCES public.extras_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_tenants extras_configcontext_tenant_id_8d0aa28e_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenants + ADD CONSTRAINT extras_configcontext_tenant_id_8d0aa28e_fk_tenancy_t FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_configcontext_tenant_groups extras_configcontext_tenantgroup_id_0909688d_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_configcontext_tenant_groups + ADD CONSTRAINT extras_configcontext_tenantgroup_id_0909688d_fk_tenancy_t FOREIGN KEY (tenantgroup_id) REFERENCES public.tenancy_tenantgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_customfield_content_types extras_customfield_c_contenttype_id_2997ba90_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield_content_types + ADD CONSTRAINT extras_customfield_c_contenttype_id_2997ba90_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_customfield_content_types extras_customfield_c_customfield_id_3842aaf3_fk_extras_cu; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfield_content_types + ADD CONSTRAINT extras_customfield_c_customfield_id_3842aaf3_fk_extras_cu FOREIGN KEY (customfield_id) REFERENCES public.extras_customfield(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_customfieldchoice extras_customfieldch_field_id_35006739_fk_extras_cu; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customfieldchoice + ADD CONSTRAINT extras_customfieldch_field_id_35006739_fk_extras_cu FOREIGN KEY (field_id) REFERENCES public.extras_customfield(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_customlink extras_customlink_content_type_id_4d35b063_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_customlink + ADD CONSTRAINT extras_customlink_content_type_id_4d35b063_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_dynamicgroup extras_dynamicgroup_content_type_id_1bed5de5_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroup + ADD CONSTRAINT extras_dynamicgroup_content_type_id_1bed5de5_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_dynamicgroupmembership extras_dynamicgroupm_group_id_1616d7d6_fk_extras_dy; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroupmembership + ADD CONSTRAINT extras_dynamicgroupm_group_id_1616d7d6_fk_extras_dy FOREIGN KEY (group_id) REFERENCES public.extras_dynamicgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_dynamicgroupmembership extras_dynamicgroupm_parent_group_id_f09f9b01_fk_extras_dy; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_dynamicgroupmembership + ADD CONSTRAINT extras_dynamicgroupm_parent_group_id_f09f9b01_fk_extras_dy FOREIGN KEY (parent_group_id) REFERENCES public.extras_dynamicgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_exporttemplate extras_exporttemplat_content_type_id_59737e21_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_exporttemplate + ADD CONSTRAINT extras_exporttemplat_content_type_id_59737e21_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_exporttemplate extras_exporttemplat_owner_content_type_i_6bb67821_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_exporttemplate + ADD CONSTRAINT extras_exporttemplat_owner_content_type_i_6bb67821_fk_django_co FOREIGN KEY (owner_content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_gitrepository extras_gitrepository_secrets_group_id_fd1fdceb_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_gitrepository + ADD CONSTRAINT extras_gitrepository_secrets_group_id_fd1fdceb_fk_extras_se FOREIGN KEY (secrets_group_id) REFERENCES public.extras_secretsgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_imageattachment extras_imageattachme_content_type_id_90e0643d_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_imageattachment + ADD CONSTRAINT extras_imageattachme_content_type_id_90e0643d_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_job extras_job_git_repository_id_9ee97baf_fk_extras_gi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_job + ADD CONSTRAINT extras_job_git_repository_id_9ee97baf_fk_extras_gi FOREIGN KEY (git_repository_id) REFERENCES public.extras_gitrepository(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobbutton_content_types extras_jobbutton_con_contenttype_id_b0c6bbc4_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton_content_types + ADD CONSTRAINT extras_jobbutton_con_contenttype_id_b0c6bbc4_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobbutton_content_types extras_jobbutton_con_jobbutton_id_72bd14bf_fk_extras_jo; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton_content_types + ADD CONSTRAINT extras_jobbutton_con_jobbutton_id_72bd14bf_fk_extras_jo FOREIGN KEY (jobbutton_id) REFERENCES public.extras_jobbutton(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobbutton extras_jobbutton_job_id_710e013a_fk_extras_job_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobbutton + ADD CONSTRAINT extras_jobbutton_job_id_710e013a_fk_extras_job_id FOREIGN KEY (job_id) REFERENCES public.extras_job(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobhook_content_types extras_jobhook_conte_contenttype_id_42d2bda1_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook_content_types + ADD CONSTRAINT extras_jobhook_conte_contenttype_id_42d2bda1_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobhook_content_types extras_jobhook_conte_jobhook_id_d994e51b_fk_extras_jo; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook_content_types + ADD CONSTRAINT extras_jobhook_conte_jobhook_id_d994e51b_fk_extras_jo FOREIGN KEY (jobhook_id) REFERENCES public.extras_jobhook(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobhook extras_jobhook_job_id_cfcdb972_fk_extras_job_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobhook + ADD CONSTRAINT extras_jobhook_job_id_cfcdb972_fk_extras_job_id FOREIGN KEY (job_id) REFERENCES public.extras_job(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_joblogentry extras_joblogentry_job_result_id_91e10d1a_fk_extras_jo; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_joblogentry + ADD CONSTRAINT extras_joblogentry_job_result_id_91e10d1a_fk_extras_jo FOREIGN KEY (job_result_id) REFERENCES public.extras_jobresult(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobresult extras_jobresult_job_model_id_d581ec7e_fk_extras_job_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobresult + ADD CONSTRAINT extras_jobresult_job_model_id_d581ec7e_fk_extras_job_id FOREIGN KEY (job_model_id) REFERENCES public.extras_job(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobresult extras_jobresult_obj_type_id_475e80aa_fk_django_content_type_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobresult + ADD CONSTRAINT extras_jobresult_obj_type_id_475e80aa_fk_django_content_type_id FOREIGN KEY (obj_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobresult extras_jobresult_schedule_id_24ce985a_fk_extras_scheduledjob_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobresult + ADD CONSTRAINT extras_jobresult_schedule_id_24ce985a_fk_extras_scheduledjob_id FOREIGN KEY (schedule_id) REFERENCES public.extras_scheduledjob(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_jobresult extras_jobresult_user_id_d35285ab_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_jobresult + ADD CONSTRAINT extras_jobresult_user_id_d35285ab_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_note extras_note_assigned_object_type_e15d3cda_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_note + ADD CONSTRAINT extras_note_assigned_object_type_e15d3cda_fk_django_co FOREIGN KEY (assigned_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_note extras_note_user_id_f11ab655_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_note + ADD CONSTRAINT extras_note_user_id_f11ab655_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_objectchange extras_objectchange_changed_object_type__b755bb60_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_objectchange + ADD CONSTRAINT extras_objectchange_changed_object_type__b755bb60_fk_django_co FOREIGN KEY (changed_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_objectchange extras_objectchange_related_object_type__fe6e521f_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_objectchange + ADD CONSTRAINT extras_objectchange_related_object_type__fe6e521f_fk_django_co FOREIGN KEY (related_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_objectchange extras_objectchange_user_id_7fdf8186_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_objectchange + ADD CONSTRAINT extras_objectchange_user_id_7fdf8186_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_relationship extras_relationship_destination_type_id_fb7387c3_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationship + ADD CONSTRAINT extras_relationship_destination_type_id_fb7387c3_fk_django_co FOREIGN KEY (destination_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_relationship extras_relationship_source_type_id_21183ad6_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationship + ADD CONSTRAINT extras_relationship_source_type_id_21183ad6_fk_django_co FOREIGN KEY (source_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_relationshipassociation extras_relationshipa_destination_type_id_5ccb6728_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationshipassociation + ADD CONSTRAINT extras_relationshipa_destination_type_id_5ccb6728_fk_django_co FOREIGN KEY (destination_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_relationshipassociation extras_relationshipa_relationship_id_9a65ccc8_fk_extras_re; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationshipassociation + ADD CONSTRAINT extras_relationshipa_relationship_id_9a65ccc8_fk_extras_re FOREIGN KEY (relationship_id) REFERENCES public.extras_relationship(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_relationshipassociation extras_relationshipa_source_type_id_28c8df60_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_relationshipassociation + ADD CONSTRAINT extras_relationshipa_source_type_id_28c8df60_fk_django_co FOREIGN KEY (source_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_scheduledjob extras_scheduledjob_approved_by_user_id_06b8fb0a_fk_auth_user; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_scheduledjob + ADD CONSTRAINT extras_scheduledjob_approved_by_user_id_06b8fb0a_fk_auth_user FOREIGN KEY (approved_by_user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_scheduledjob extras_scheduledjob_job_model_id_d4c0711e_fk_extras_job_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_scheduledjob + ADD CONSTRAINT extras_scheduledjob_job_model_id_d4c0711e_fk_extras_job_id FOREIGN KEY (job_model_id) REFERENCES public.extras_job(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_scheduledjob extras_scheduledjob_user_id_4d8034ff_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_scheduledjob + ADD CONSTRAINT extras_scheduledjob_user_id_4d8034ff_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_secretsgroupassociation extras_secretsgroupa_group_id_68ca43f6_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroupassociation + ADD CONSTRAINT extras_secretsgroupa_group_id_68ca43f6_fk_extras_se FOREIGN KEY (group_id) REFERENCES public.extras_secretsgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_secretsgroupassociation extras_secretsgroupa_secret_id_14d43d7e_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_secretsgroupassociation + ADD CONSTRAINT extras_secretsgroupa_secret_id_14d43d7e_fk_extras_se FOREIGN KEY (secret_id) REFERENCES public.extras_secret(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_status_content_types extras_status_conten_contenttype_id_38503e74_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status_content_types + ADD CONSTRAINT extras_status_conten_contenttype_id_38503e74_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_status_content_types extras_status_conten_status_id_27c665c7_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_status_content_types + ADD CONSTRAINT extras_status_conten_status_id_27c665c7_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_tag_content_types extras_tag_content_t_contenttype_id_5baa3bb5_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag_content_types + ADD CONSTRAINT extras_tag_content_t_contenttype_id_5baa3bb5_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_tag_content_types extras_tag_content_types_tag_id_34a8ca46_fk_extras_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_tag_content_types + ADD CONSTRAINT extras_tag_content_types_tag_id_34a8ca46_fk_extras_tag_id FOREIGN KEY (tag_id) REFERENCES public.extras_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_taggeditem extras_taggeditem_content_type_id_ba5562ed_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_taggeditem + ADD CONSTRAINT extras_taggeditem_content_type_id_ba5562ed_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_taggeditem extras_taggeditem_tag_id_d48af7c7_fk_extras_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_taggeditem + ADD CONSTRAINT extras_taggeditem_tag_id_d48af7c7_fk_extras_tag_id FOREIGN KEY (tag_id) REFERENCES public.extras_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_webhook_content_types extras_webhook_conte_contenttype_id_3fc2c4d3_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook_content_types + ADD CONSTRAINT extras_webhook_conte_contenttype_id_3fc2c4d3_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: extras_webhook_content_types extras_webhook_conte_webhook_id_0c169800_fk_extras_we; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.extras_webhook_content_types + ADD CONSTRAINT extras_webhook_conte_webhook_id_0c169800_fk_extras_we FOREIGN KEY (webhook_id) REFERENCES public.extras_webhook(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_aggregate ipam_aggregate_rir_id_ef7a27bd_fk_ipam_rir_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_aggregate + ADD CONSTRAINT ipam_aggregate_rir_id_ef7a27bd_fk_ipam_rir_id FOREIGN KEY (rir_id) REFERENCES public.ipam_rir(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_aggregate ipam_aggregate_tenant_id_637dd1a1_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_aggregate + ADD CONSTRAINT ipam_aggregate_tenant_id_637dd1a1_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_ipaddress ipam_ipaddress_assigned_object_type_02354370_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_ipaddress + ADD CONSTRAINT ipam_ipaddress_assigned_object_type_02354370_fk_django_co FOREIGN KEY (assigned_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_ipaddress ipam_ipaddress_nat_inside_id_a45fb7c5_fk_ipam_ipaddress_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_ipaddress + ADD CONSTRAINT ipam_ipaddress_nat_inside_id_a45fb7c5_fk_ipam_ipaddress_id FOREIGN KEY (nat_inside_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_ipaddress ipam_ipaddress_status_id_942778b7_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_ipaddress + ADD CONSTRAINT ipam_ipaddress_status_id_942778b7_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_ipaddress ipam_ipaddress_tenant_id_ac55acfd_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_ipaddress + ADD CONSTRAINT ipam_ipaddress_tenant_id_ac55acfd_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_ipaddress ipam_ipaddress_vrf_id_51fcc59b_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_ipaddress + ADD CONSTRAINT ipam_ipaddress_vrf_id_51fcc59b_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_location_id_9a5c5f60_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_location_id_9a5c5f60_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_role_id_0a98d415_fk_ipam_role_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_role_id_0a98d415_fk_ipam_role_id FOREIGN KEY (role_id) REFERENCES public.ipam_role(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_site_id_0b20df05_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_site_id_0b20df05_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_status_id_cffa56c0_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_status_id_cffa56c0_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_tenant_id_7ba1fcc4_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_tenant_id_7ba1fcc4_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_vlan_id_1db91bff_fk_ipam_vlan_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_vlan_id_1db91bff_fk_ipam_vlan_id FOREIGN KEY (vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_prefix ipam_prefix_vrf_id_34f78ed0_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_prefix + ADD CONSTRAINT ipam_prefix_vrf_id_34f78ed0_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_routetarget ipam_routetarget_tenant_id_5a0b35e8_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_routetarget + ADD CONSTRAINT ipam_routetarget_tenant_id_5a0b35e8_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_service ipam_service_device_id_b4d2bb9c_fk_dcim_device_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service + ADD CONSTRAINT ipam_service_device_id_b4d2bb9c_fk_dcim_device_id FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_service_ipaddresses ipam_service_ipaddre_ipaddress_id_b4138c6d_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service_ipaddresses + ADD CONSTRAINT ipam_service_ipaddre_ipaddress_id_b4138c6d_fk_ipam_ipad FOREIGN KEY (ipaddress_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_service_ipaddresses ipam_service_ipaddresses_service_id_ae26b9ab_fk_ipam_service_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service_ipaddresses + ADD CONSTRAINT ipam_service_ipaddresses_service_id_ae26b9ab_fk_ipam_service_id FOREIGN KEY (service_id) REFERENCES public.ipam_service(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_service ipam_service_virtual_machine_id_e8b53562_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_service + ADD CONSTRAINT ipam_service_virtual_machine_id_e8b53562_fk_virtualiz FOREIGN KEY (virtual_machine_id) REFERENCES public.virtualization_virtualmachine(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlan ipam_vlan_group_id_88cbfa62_fk_ipam_vlangroup_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_group_id_88cbfa62_fk_ipam_vlangroup_id FOREIGN KEY (group_id) REFERENCES public.ipam_vlangroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlan ipam_vlan_location_id_07dd65e4_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_location_id_07dd65e4_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlan ipam_vlan_role_id_f5015962_fk_ipam_role_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_role_id_f5015962_fk_ipam_role_id FOREIGN KEY (role_id) REFERENCES public.ipam_role(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlan ipam_vlan_site_id_a59334e3_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_site_id_a59334e3_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlan ipam_vlan_status_id_898aa317_fk_extras_status_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_status_id_898aa317_fk_extras_status_id FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlan ipam_vlan_tenant_id_71a8290d_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlan + ADD CONSTRAINT ipam_vlan_tenant_id_71a8290d_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlangroup ipam_vlangroup_location_id_f239af79_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlangroup + ADD CONSTRAINT ipam_vlangroup_location_id_f239af79_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vlangroup ipam_vlangroup_site_id_264f36f6_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vlangroup + ADD CONSTRAINT ipam_vlangroup_site_id_264f36f6_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vrf_export_targets ipam_vrf_export_targ_routetarget_id_8d9319f7_fk_ipam_rout; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_export_targets + ADD CONSTRAINT ipam_vrf_export_targ_routetarget_id_8d9319f7_fk_ipam_rout FOREIGN KEY (routetarget_id) REFERENCES public.ipam_routetarget(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vrf_export_targets ipam_vrf_export_targets_vrf_id_6f4875c4_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_export_targets + ADD CONSTRAINT ipam_vrf_export_targets_vrf_id_6f4875c4_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vrf_import_targets ipam_vrf_import_targ_routetarget_id_0e05b144_fk_ipam_rout; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_import_targets + ADD CONSTRAINT ipam_vrf_import_targ_routetarget_id_0e05b144_fk_ipam_rout FOREIGN KEY (routetarget_id) REFERENCES public.ipam_routetarget(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vrf_import_targets ipam_vrf_import_targets_vrf_id_ed491b19_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf_import_targets + ADD CONSTRAINT ipam_vrf_import_targets_vrf_id_ed491b19_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: ipam_vrf ipam_vrf_tenant_id_498b0051_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.ipam_vrf + ADD CONSTRAINT ipam_vrf_tenant_id_498b0051_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__autonomous_system_id_ac5bb68c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__autonomous_system_id_ac5bb68c_fk_nautobot_ FOREIGN KEY (autonomous_system_id) REFERENCES public.nautobot_bgp_models_autonomoussystem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate nautobot_bgp_models__autonomous_system_id_c3727574_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergrouptemplate + ADD CONSTRAINT nautobot_bgp_models__autonomous_system_id_c3727574_fk_nautobot_ FOREIGN KEY (autonomous_system_id) REFERENCES public.nautobot_bgp_models_autonomoussystem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__autonomous_system_id_caf60267_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__autonomous_system_id_caf60267_fk_nautobot_ FOREIGN KEY (autonomous_system_id) REFERENCES public.nautobot_bgp_models_autonomoussystem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance nautobot_bgp_models__autonomous_system_id_f10695a2_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_bgproutinginstance + ADD CONSTRAINT nautobot_bgp_models__autonomous_system_id_f10695a2_fk_nautobot_ FOREIGN KEY (autonomous_system_id) REFERENCES public.nautobot_bgp_models_autonomoussystem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance nautobot_bgp_models__device_id_9c098423_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_bgproutinginstance + ADD CONSTRAINT nautobot_bgp_models__device_id_9c098423_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__peer_group_id_1631d9a2_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__peer_group_id_1631d9a2_fk_nautobot_ FOREIGN KEY (peer_group_id) REFERENCES public.nautobot_bgp_models_peergroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__peer_id_9bbea63c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__peer_id_9bbea63c_fk_nautobot_ FOREIGN KEY (peer_id) REFERENCES public.nautobot_bgp_models_peerendpoint(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__peering_id_bef7d0d2_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__peering_id_bef7d0d2_fk_nautobot_ FOREIGN KEY (peering_id) REFERENCES public.nautobot_bgp_models_peering(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_autonomoussystem nautobot_bgp_models__provider_id_662aacd8_fk_circuits_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_autonomoussystem + ADD CONSTRAINT nautobot_bgp_models__provider_id_662aacd8_fk_circuits_ FOREIGN KEY (provider_id) REFERENCES public.circuits_provider(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__role_id_07505a1d_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__role_id_07505a1d_fk_nautobot_ FOREIGN KEY (role_id) REFERENCES public.nautobot_bgp_models_peeringrole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__role_id_186426c2_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__role_id_186426c2_fk_nautobot_ FOREIGN KEY (role_id) REFERENCES public.nautobot_bgp_models_peeringrole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate nautobot_bgp_models__role_id_c855c5d1_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergrouptemplate + ADD CONSTRAINT nautobot_bgp_models__role_id_c855c5d1_fk_nautobot_ FOREIGN KEY (role_id) REFERENCES public.nautobot_bgp_models_peeringrole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_bgproutinginstance nautobot_bgp_models__router_id_id_36577c44_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_bgproutinginstance + ADD CONSTRAINT nautobot_bgp_models__router_id_id_36577c44_fk_ipam_ipad FOREIGN KEY (router_id_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__routing_instance_id_a319163b_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__routing_instance_id_a319163b_fk_nautobot_ FOREIGN KEY (routing_instance_id) REFERENCES public.nautobot_bgp_models_bgproutinginstance(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_addressfamily nautobot_bgp_models__routing_instance_id_be92a9bf_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_addressfamily + ADD CONSTRAINT nautobot_bgp_models__routing_instance_id_be92a9bf_fk_nautobot_ FOREIGN KEY (routing_instance_id) REFERENCES public.nautobot_bgp_models_bgproutinginstance(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__routing_instance_id_ca1abe8a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__routing_instance_id_ca1abe8a_fk_nautobot_ FOREIGN KEY (routing_instance_id) REFERENCES public.nautobot_bgp_models_bgproutinginstance(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__secret_id_52094b3b_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__secret_id_52094b3b_fk_extras_se FOREIGN KEY (secret_id) REFERENCES public.extras_secret(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergrouptemplate nautobot_bgp_models__secret_id_6103628b_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergrouptemplate + ADD CONSTRAINT nautobot_bgp_models__secret_id_6103628b_fk_extras_se FOREIGN KEY (secret_id) REFERENCES public.extras_secret(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__secret_id_78e0289e_fk_extras_se; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__secret_id_78e0289e_fk_extras_se FOREIGN KEY (secret_id) REFERENCES public.extras_secret(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__source_interface_id_5220c8b4_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__source_interface_id_5220c8b4_fk_dcim_inte FOREIGN KEY (source_interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__source_interface_id_d36377f5_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__source_interface_id_d36377f5_fk_dcim_inte FOREIGN KEY (source_interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peerendpoint nautobot_bgp_models__source_ip_id_d0869ac6_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peerendpoint + ADD CONSTRAINT nautobot_bgp_models__source_ip_id_d0869ac6_fk_ipam_ipad FOREIGN KEY (source_ip_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__source_ip_id_f9f24d18_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__source_ip_id_f9f24d18_fk_ipam_ipad FOREIGN KEY (source_ip_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_autonomoussystem nautobot_bgp_models__status_id_84227c80_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_autonomoussystem + ADD CONSTRAINT nautobot_bgp_models__status_id_84227c80_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peering nautobot_bgp_models__status_id_8c654839_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peering + ADD CONSTRAINT nautobot_bgp_models__status_id_8c654839_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_peergroup nautobot_bgp_models__template_id_6846de7a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_peergroup + ADD CONSTRAINT nautobot_bgp_models__template_id_6846de7a_fk_nautobot_ FOREIGN KEY (template_id) REFERENCES public.nautobot_bgp_models_peergrouptemplate(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_bgp_models_addressfamily nautobot_bgp_models__vrf_id_606c463d_fk_ipam_vrf_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_bgp_models_addressfamily + ADD CONSTRAINT nautobot_bgp_models__vrf_id_606c463d_fk_ipam_vrf_ FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_data_validation_engine_requiredvalidationrule nautobot_data_valida_content_type_id_1a017307_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_requiredvalidationrule + ADD CONSTRAINT nautobot_data_valida_content_type_id_1a017307_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_data_validation_engine_minmaxvalidationrule nautobot_data_valida_content_type_id_3c749b83_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_minmaxvalidationrule + ADD CONSTRAINT nautobot_data_valida_content_type_id_3c749b83_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_data_validation_engine_datacompliance nautobot_data_valida_content_type_id_b0211d8e_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_datacompliance + ADD CONSTRAINT nautobot_data_valida_content_type_id_b0211d8e_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_data_validation_engine_regularexpressionvalidationrule nautobot_data_valida_content_type_id_b863523b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_regularexpressionvalidationrule + ADD CONSTRAINT nautobot_data_valida_content_type_id_b863523b_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_data_validation_engine_uniquevalidationrule nautobot_data_valida_content_type_id_d195eaeb_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_data_validation_engine_uniquevalidationrule + ADD CONSTRAINT nautobot_data_valida_content_type_id_d195eaeb_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contactlcm nautobot_device_life_contract_id_bc2cb084_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_contactlcm + ADD CONSTRAINT nautobot_device_life_contract_id_bc2cb084_fk_nautobot_ FOREIGN KEY (contract_id) REFERENCES public.nautobot_device_lifecycle_mgmt_contractlcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm nautobot_device_life_cve_id_ab5e9c3a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm + ADD CONSTRAINT nautobot_device_life_cve_id_ab5e9c3a_fk_nautobot_ FOREIGN KEY (cve_id) REFERENCES public.nautobot_device_lifecycle_mgmt_cvelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices nautobot_device_life_device_id_0a4868ea_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices + ADD CONSTRAINT nautobot_device_life_device_id_0a4868ea_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult nautobot_device_life_device_id_6e02e91e_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult + ADD CONSTRAINT nautobot_device_life_device_id_6e02e91e_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm nautobot_device_life_device_id_eae74d6e_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm + ADD CONSTRAINT nautobot_device_life_device_id_eae74d6e_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwarelcm nautobot_device_life_device_platform_id_8a997353_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwarelcm + ADD CONSTRAINT nautobot_device_life_device_platform_id_8a997353_fk_dcim_plat FOREIGN KEY (device_platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_hardwarelcm nautobot_device_life_device_type_id_c15e8265_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_hardwarelcm + ADD CONSTRAINT nautobot_device_life_device_type_id_c15e8265_fk_dcim_devi FOREIGN KEY (device_type_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc nautobot_device_life_devicerole_id_cb7aece5_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc + ADD CONSTRAINT nautobot_device_life_devicerole_id_cb7aece5_fk_dcim_devi FOREIGN KEY (devicerole_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace nautobot_device_life_devicesoftwarevalida_a20528cc_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace + ADD CONSTRAINT nautobot_device_life_devicesoftwarevalida_a20528cc_fk_nautobot_ FOREIGN KEY (devicesoftwarevalidationresult_id) REFERENCES public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc nautobot_device_life_devicetype_id_e9b4fd0c_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc + ADD CONSTRAINT nautobot_device_life_devicetype_id_e9b4fd0c_fk_dcim_devi FOREIGN KEY (devicetype_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types nautobot_device_life_devicetype_id_f1dde51b_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types + ADD CONSTRAINT nautobot_device_life_devicetype_id_f1dde51b_fk_dcim_devi FOREIGN KEY (devicetype_id) REFERENCES public.dcim_devicetype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm nautobot_device_life_inventory_item_id_0db66f1b_fk_dcim_inve; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm + ADD CONSTRAINT nautobot_device_life_inventory_item_id_0db66f1b_fk_dcim_inve FOREIGN KEY (inventory_item_id) REFERENCES public.dcim_inventoryitem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f nautobot_device_life_inventory_item_id_8c621017_fk_dcim_inve; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f + ADD CONSTRAINT nautobot_device_life_inventory_item_id_8c621017_fk_dcim_inve FOREIGN KEY (inventory_item_id) REFERENCES public.dcim_inventoryitem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items nautobot_device_life_inventoryitem_id_5b5a19f5_fk_dcim_inve; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items + ADD CONSTRAINT nautobot_device_life_inventoryitem_id_5b5a19f5_fk_dcim_inve FOREIGN KEY (inventoryitem_id) REFERENCES public.dcim_inventoryitem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b nautobot_device_life_inventoryitem_id_85030553_fk_dcim_inve; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b + ADD CONSTRAINT nautobot_device_life_inventoryitem_id_85030553_fk_dcim_inve FOREIGN KEY (inventoryitem_id) REFERENCES public.dcim_inventoryitem(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 nautobot_device_life_inventoryitemsoftwar_6008f475_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 + ADD CONSTRAINT nautobot_device_life_inventoryitemsoftwar_6008f475_fk_nautobot_ FOREIGN KEY (inventoryitemsoftwarevalidationresult_id) REFERENCES public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_contractlcm nautobot_device_life_provider_id_6728ca78_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_contractlcm + ADD CONSTRAINT nautobot_device_life_provider_id_6728ca78_fk_nautobot_ FOREIGN KEY (provider_id) REFERENCES public.nautobot_device_lifecycle_mgmt_providerlcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f nautobot_device_life_software_id_127def37_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidate59f + ADD CONSTRAINT nautobot_device_life_software_id_127def37_fk_nautobot_ FOREIGN KEY (software_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm nautobot_device_life_software_id_4b15f249_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm + ADD CONSTRAINT nautobot_device_life_software_id_4b15f249_fk_nautobot_ FOREIGN KEY (software_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm nautobot_device_life_software_id_92121936_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm + ADD CONSTRAINT nautobot_device_life_software_id_92121936_fk_nautobot_ FOREIGN KEY (software_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult nautobot_device_life_software_id_c5afea37_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresult + ADD CONSTRAINT nautobot_device_life_software_id_c5afea37_fk_nautobot_ FOREIGN KEY (software_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm nautobot_device_life_software_id_ecbd1e5d_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm + ADD CONSTRAINT nautobot_device_life_software_id_ecbd1e5d_fk_nautobot_ FOREIGN KEY (software_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags nautobot_device_life_softwareimagelcm_id_bb8c26b2_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags + ADD CONSTRAINT nautobot_device_life_softwareimagelcm_id_bb8c26b2_fk_nautobot_ FOREIGN KEY (softwareimagelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwareimagelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types nautobot_device_life_softwareimagelcm_id_bc13369f_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_device_types + ADD CONSTRAINT nautobot_device_life_softwareimagelcm_id_bc13369f_fk_nautobot_ FOREIGN KEY (softwareimagelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwareimagelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items nautobot_device_life_softwareimagelcm_id_c994dff5_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_inventory_items + ADD CONSTRAINT nautobot_device_life_softwareimagelcm_id_c994dff5_fk_nautobot_ FOREIGN KEY (softwareimagelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_softwareimagelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_vulnerabilitylcm nautobot_device_life_status_id_d0f514c9_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_vulnerabilitylcm + ADD CONSTRAINT nautobot_device_life_status_id_d0f514c9_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_cvelcm nautobot_device_life_status_id_fe6cdfe8_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_cvelcm + ADD CONSTRAINT nautobot_device_life_status_id_fe6cdfe8_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags nautobot_device_life_tag_id_15260df6_fk_extras_ta; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags + ADD CONSTRAINT nautobot_device_life_tag_id_15260df6_fk_extras_ta FOREIGN KEY (tag_id) REFERENCES public.extras_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags nautobot_device_life_tag_id_ec56ae94_fk_extras_ta; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_softwareimagelcm_object_tags + ADD CONSTRAINT nautobot_device_life_tag_id_ec56ae94_fk_extras_ta FOREIGN KEY (tag_id) REFERENCES public.extras_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b nautobot_device_life_validatedsoftwarelcm_0bc9688a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_inventof70b + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_0bc9688a_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc nautobot_device_life_validatedsoftwarelcm_219d01de_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_7ebc + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_219d01de_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc nautobot_device_life_validatedsoftwarelcm_726b5d9a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_device_3fbc + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_726b5d9a_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags nautobot_device_life_validatedsoftwarelcm_8ec805eb_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_object_tags + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_8ec805eb_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices nautobot_device_life_validatedsoftwarelcm_a8ac7813_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm_devices + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_a8ac7813_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 nautobot_device_life_validatedsoftwarelcm_e7169a7b_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_inventoryitemsoftwarevalidat0215 + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_e7169a7b_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace nautobot_device_life_validatedsoftwarelcm_ff30268c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_lifecycle_mgmt_devicesoftwarevalidationresuaace + ADD CONSTRAINT nautobot_device_life_validatedsoftwarelcm_ff30268c_fk_nautobot_ FOREIGN KEY (validatedsoftwarelcm_id) REFERENCES public.nautobot_device_lifecycle_mgmt_validatedsoftwarelcm(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_onboarding_onboardingtask nautobot_device_onbo_created_device_id_3b7527bb_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingtask + ADD CONSTRAINT nautobot_device_onbo_created_device_id_3b7527bb_fk_dcim_devi FOREIGN KEY (created_device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_onboarding_onboardingdevice nautobot_device_onbo_device_id_59b0d733_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingdevice + ADD CONSTRAINT nautobot_device_onbo_device_id_59b0d733_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_onboarding_onboardingtask nautobot_device_onbo_platform_id_29f56ca5_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingtask + ADD CONSTRAINT nautobot_device_onbo_platform_id_29f56ca5_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_onboarding_onboardingtask nautobot_device_onbo_role_id_c4405036_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingtask + ADD CONSTRAINT nautobot_device_onbo_role_id_c4405036_fk_dcim_devi FOREIGN KEY (role_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_device_onboarding_onboardingtask nautobot_device_onbo_site_id_5089f3c0_fk_dcim_site; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_device_onboarding_onboardingtask + ADD CONSTRAINT nautobot_device_onbo_site_id_5089f3c0_fk_dcim_site FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrgroupm2m nautobot_firewall_mo_addr_group_id_13277b47_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_group_id_13277b47_fk_nautobot_ FOREIGN KEY (addr_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrgroupm2m nautobot_firewall_mo_addr_group_id_2a93e239_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_group_id_2a93e239_fk_nautobot_ FOREIGN KEY (addr_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcaddrgroupm2m nautobot_firewall_mo_addr_group_id_356600f1_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_group_id_356600f1_fk_nautobot_ FOREIGN KEY (addr_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destaddrgroupm2m nautobot_firewall_mo_addr_group_id_3a706afd_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_group_id_3a706afd_fk_nautobot_ FOREIGN KEY (addr_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrgroupm2m nautobot_firewall_mo_addr_group_id_c453742d_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_group_id_c453742d_fk_nautobot_ FOREIGN KEY (addr_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrgroupm2m nautobot_firewall_mo_addr_group_id_d2be36a1_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_group_id_d2be36a1_fk_nautobot_ FOREIGN KEY (addr_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrm2m nautobot_firewall_mo_addr_id_7712e5b7_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_id_7712e5b7_fk_nautobot_ FOREIGN KEY (addr_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrm2m nautobot_firewall_mo_addr_id_c2a49a97_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_id_c2a49a97_fk_nautobot_ FOREIGN KEY (addr_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcaddrm2m nautobot_firewall_mo_addr_id_ca3daa48_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_addr_id_ca3daa48_fk_nautobot_ FOREIGN KEY (addr_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobjectgroupm2m nautobot_firewall_mo_address_group_id_54048514_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_address_group_id_54048514_fk_nautobot_ FOREIGN KEY (address_group_id) REFERENCES public.nautobot_firewall_models_addressobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobjectgroupm2m nautobot_firewall_mo_address_id_51414ea3_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_address_id_51414ea3_fk_nautobot_ FOREIGN KEY (address_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationgroupm2m nautobot_firewall_mo_app_group_id_76c11d36_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_app_group_id_76c11d36_fk_nautobot_ FOREIGN KEY (app_group_id) REFERENCES public.nautobot_firewall_models_applicationobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationm2m nautobot_firewall_mo_app_id_e1f733a8_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationm2m + ADD CONSTRAINT nautobot_firewall_mo_app_id_e1f733a8_fk_nautobot_ FOREIGN KEY (app_id) REFERENCES public.nautobot_firewall_models_applicationobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationobjectgroupm2m nautobot_firewall_mo_application_group_id_ae8eff89_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_application_group_id_ae8eff89_fk_nautobot_ FOREIGN KEY (application_group_id) REFERENCES public.nautobot_firewall_models_applicationobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationobjectgroupm2m nautobot_firewall_mo_application_id_e0bc97f6_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_application_id_e0bc97f6_fk_nautobot_ FOREIGN KEY (application_id) REFERENCES public.nautobot_firewall_models_applicationobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policyrule nautobot_firewall_mo_destination_zone_id_3ab37089_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrule + ADD CONSTRAINT nautobot_firewall_mo_destination_zone_id_3ab37089_fk_nautobot_ FOREIGN KEY (destination_zone_id) REFERENCES public.nautobot_firewall_models_zone(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicyrule nautobot_firewall_mo_destination_zone_id_834a6323_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrule + ADD CONSTRAINT nautobot_firewall_mo_destination_zone_id_834a6323_fk_nautobot_ FOREIGN KEY (destination_zone_id) REFERENCES public.nautobot_firewall_models_zone(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policydevicem2m nautobot_firewall_mo_device_id_51b6b6e2_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydevicem2m + ADD CONSTRAINT nautobot_firewall_mo_device_id_51b6b6e2_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_capircapolicy nautobot_firewall_mo_device_id_5a771456_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_capircapolicy + ADD CONSTRAINT nautobot_firewall_mo_device_id_5a771456_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicydevicem2m nautobot_firewall_mo_device_id_c92e8b30_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydevicem2m + ADD CONSTRAINT nautobot_firewall_mo_device_id_c92e8b30_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicydynamicgroupm2m nautobot_firewall_mo_dynamic_group_id_a3bba65b_fk_extras_dy; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_dynamic_group_id_a3bba65b_fk_extras_dy FOREIGN KEY (dynamic_group_id) REFERENCES public.extras_dynamicgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policydynamicgroupm2m nautobot_firewall_mo_dynamic_group_id_e4f79598_fk_extras_dy; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_dynamic_group_id_e4f79598_fk_extras_dy FOREIGN KEY (dynamic_group_id) REFERENCES public.extras_dynamicgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_mo_fqdn_id_9484a77c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_mo_fqdn_id_9484a77c_fk_nautobot_ FOREIGN KEY (fqdn_id) REFERENCES public.nautobot_firewall_models_fqdn(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_fqdnipaddressm2m nautobot_firewall_mo_fqdn_id_ce7b2209_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_fqdnipaddressm2m + ADD CONSTRAINT nautobot_firewall_mo_fqdn_id_ce7b2209_fk_nautobot_ FOREIGN KEY (fqdn_id) REFERENCES public.nautobot_firewall_models_fqdn(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_zoneinterfacem2m nautobot_firewall_mo_interface_id_b7a75389_fk_dcim_inte; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zoneinterfacem2m + ADD CONSTRAINT nautobot_firewall_mo_interface_id_b7a75389_fk_dcim_inte FOREIGN KEY (interface_id) REFERENCES public.dcim_interface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_fqdnipaddressm2m nautobot_firewall_mo_ip_address_id_a6b1d436_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_fqdnipaddressm2m + ADD CONSTRAINT nautobot_firewall_mo_ip_address_id_a6b1d436_fk_ipam_ipad FOREIGN KEY (ip_address_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_mo_ip_address_id_b4b3cea8_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_mo_ip_address_id_b4b3cea8_fk_ipam_ipad FOREIGN KEY (ip_address_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_mo_ip_range_id_91f0c0b7_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_mo_ip_range_id_91f0c0b7_fk_nautobot_ FOREIGN KEY (ip_range_id) REFERENCES public.nautobot_firewall_models_iprange(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natsrcusergroupm2m nautobot_firewall_mo_nat_pol_rule_id_09f63d9c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natsrcusergroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_09f63d9c_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrm2m nautobot_firewall_mo_nat_pol_rule_id_0a8b8cad_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_0a8b8cad_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natsrcuserm2m nautobot_firewall_mo_nat_pol_rule_id_1998796a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natsrcuserm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_1998796a_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcm2m nautobot_firewall_mo_nat_pol_rule_id_235a85bf_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_235a85bf_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcgroupm2m nautobot_firewall_mo_nat_pol_rule_id_72abf760_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_72abf760_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrm2m nautobot_firewall_mo_nat_pol_rule_id_7f65d43b_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_7f65d43b_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrgroupm2m nautobot_firewall_mo_nat_pol_rule_id_863140b9_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_863140b9_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcm2m nautobot_firewall_mo_nat_pol_rule_id_9054c4c9_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_9054c4c9_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcm2m nautobot_firewall_mo_nat_pol_rule_id_973f6c65_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_973f6c65_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrm2m nautobot_firewall_mo_nat_pol_rule_id_9a0d7b63_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_9a0d7b63_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcaddrgroupm2m nautobot_firewall_mo_nat_pol_rule_id_a171b1f4_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_a171b1f4_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcgroupm2m nautobot_firewall_mo_nat_pol_rule_id_c45d2afd_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_c45d2afd_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcgroupm2m nautobot_firewall_mo_nat_pol_rule_id_db2ea282_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_db2ea282_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrgroupm2m nautobot_firewall_mo_nat_pol_rule_id_ea061a16_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_ea061a16_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcm2m nautobot_firewall_mo_nat_pol_rule_id_ea8e27a4_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_ea8e27a4_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrm2m nautobot_firewall_mo_nat_pol_rule_id_ef3b03c9_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_ef3b03c9_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcgroupm2m nautobot_firewall_mo_nat_pol_rule_id_f0fc5581_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_f0fc5581_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcaddrgroupm2m nautobot_firewall_mo_nat_pol_rule_id_f5e1729e_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_pol_rule_id_f5e1729e_fk_nautobot_ FOREIGN KEY (nat_pol_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicyrulem2m nautobot_firewall_mo_nat_policy_id_33dbc26a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrulem2m + ADD CONSTRAINT nautobot_firewall_mo_nat_policy_id_33dbc26a_fk_nautobot_ FOREIGN KEY (nat_policy_id) REFERENCES public.nautobot_firewall_models_natpolicy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicydevicem2m nautobot_firewall_mo_nat_policy_id_691fba70_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydevicem2m + ADD CONSTRAINT nautobot_firewall_mo_nat_policy_id_691fba70_fk_nautobot_ FOREIGN KEY (nat_policy_id) REFERENCES public.nautobot_firewall_models_natpolicy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicynatrulem2m nautobot_firewall_mo_nat_policy_id_e1bccf74_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicynatrulem2m + ADD CONSTRAINT nautobot_firewall_mo_nat_policy_id_e1bccf74_fk_nautobot_ FOREIGN KEY (nat_policy_id) REFERENCES public.nautobot_firewall_models_natpolicy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicydynamicgroupm2m nautobot_firewall_mo_nat_policy_id_e7a24ffc_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_nat_policy_id_e7a24ffc_fk_nautobot_ FOREIGN KEY (nat_policy_id) REFERENCES public.nautobot_firewall_models_natpolicy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicyrulem2m nautobot_firewall_mo_nat_rule_id_a56cdf88_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrulem2m + ADD CONSTRAINT nautobot_firewall_mo_nat_rule_id_a56cdf88_fk_nautobot_ FOREIGN KEY (nat_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicynatrulem2m nautobot_firewall_mo_nat_rule_id_d3fc234d_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicynatrulem2m + ADD CONSTRAINT nautobot_firewall_mo_nat_rule_id_d3fc234d_fk_nautobot_ FOREIGN KEY (nat_rule_id) REFERENCES public.nautobot_firewall_models_natpolicyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationm2m nautobot_firewall_mo_pol_rule_id_007c73c6_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_007c73c6_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcsvcm2m nautobot_firewall_mo_pol_rule_id_02c0f2ac_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_02c0f2ac_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcaddrgroupm2m nautobot_firewall_mo_pol_rule_id_09333c9c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_09333c9c_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcusergroupm2m nautobot_firewall_mo_pol_rule_id_0e673f44_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcusergroupm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_0e673f44_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destaddrm2m nautobot_firewall_mo_pol_rule_id_25728b88_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_25728b88_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destaddrgroupm2m nautobot_firewall_mo_pol_rule_id_2a3ebb3c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destaddrgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_2a3ebb3c_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destsvcgroupm2m nautobot_firewall_mo_pol_rule_id_517444b1_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_517444b1_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcsvcgroupm2m nautobot_firewall_mo_pol_rule_id_5f4a9a18_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_5f4a9a18_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcuserm2m nautobot_firewall_mo_pol_rule_id_64c82f6f_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcuserm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_64c82f6f_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destsvcm2m nautobot_firewall_mo_pol_rule_id_a7be5774_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_a7be5774_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationgroupm2m nautobot_firewall_mo_pol_rule_id_acf25529_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_acf25529_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcaddrm2m nautobot_firewall_mo_pol_rule_id_d4864125_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_pol_rule_id_d4864125_fk_nautobot_ FOREIGN KEY (pol_rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policyrulem2m nautobot_firewall_mo_policy_id_9591fe9b_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrulem2m + ADD CONSTRAINT nautobot_firewall_mo_policy_id_9591fe9b_fk_nautobot_ FOREIGN KEY (policy_id) REFERENCES public.nautobot_firewall_models_policy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policydevicem2m nautobot_firewall_mo_policy_id_c2ab232b_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydevicem2m + ADD CONSTRAINT nautobot_firewall_mo_policy_id_c2ab232b_fk_nautobot_ FOREIGN KEY (policy_id) REFERENCES public.nautobot_firewall_models_policy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policydynamicgroupm2m nautobot_firewall_mo_policy_id_c8a709e7_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policydynamicgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_policy_id_c8a709e7_fk_nautobot_ FOREIGN KEY (policy_id) REFERENCES public.nautobot_firewall_models_policy(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_mo_prefix_id_070de85a_fk_ipam_pref; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_mo_prefix_id_070de85a_fk_ipam_pref FOREIGN KEY (prefix_id) REFERENCES public.ipam_prefix(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policyrulem2m nautobot_firewall_mo_rule_id_4fdd7827_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrulem2m + ADD CONSTRAINT nautobot_firewall_mo_rule_id_4fdd7827_fk_nautobot_ FOREIGN KEY (rule_id) REFERENCES public.nautobot_firewall_models_policyrule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroupm2m nautobot_firewall_mo_service_group_id_ee213329_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_service_group_id_ee213329_fk_nautobot_ FOREIGN KEY (service_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroupm2m nautobot_firewall_mo_service_id_333fa681_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_service_id_333fa681_fk_nautobot_ FOREIGN KEY (service_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policyrule nautobot_firewall_mo_source_zone_id_511cbf88_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrule + ADD CONSTRAINT nautobot_firewall_mo_source_zone_id_511cbf88_fk_nautobot_ FOREIGN KEY (source_zone_id) REFERENCES public.nautobot_firewall_models_zone(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicyrule nautobot_firewall_mo_source_zone_id_bfb35f1e_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrule + ADD CONSTRAINT nautobot_firewall_mo_source_zone_id_bfb35f1e_fk_nautobot_ FOREIGN KEY (source_zone_id) REFERENCES public.nautobot_firewall_models_zone(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_userobject nautobot_firewall_mo_status_id_054cc10e_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobject + ADD CONSTRAINT nautobot_firewall_mo_status_id_054cc10e_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobject nautobot_firewall_mo_status_id_0aa64850_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobject + ADD CONSTRAINT nautobot_firewall_mo_status_id_0aa64850_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicy nautobot_firewall_mo_status_id_3d790486_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicy + ADD CONSTRAINT nautobot_firewall_mo_status_id_3d790486_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicyrule nautobot_firewall_mo_status_id_3facb5c9_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicyrule + ADD CONSTRAINT nautobot_firewall_mo_status_id_3facb5c9_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_addressobjectgroup nautobot_firewall_mo_status_id_4c14e5b0_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_addressobjectgroup + ADD CONSTRAINT nautobot_firewall_mo_status_id_4c14e5b0_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationobjectgroup nautobot_firewall_mo_status_id_7d67775d_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobjectgroup + ADD CONSTRAINT nautobot_firewall_mo_status_id_7d67775d_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policy nautobot_firewall_mo_status_id_80676cd2_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policy + ADD CONSTRAINT nautobot_firewall_mo_status_id_80676cd2_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_iprange nautobot_firewall_mo_status_id_8c516031_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_iprange + ADD CONSTRAINT nautobot_firewall_mo_status_id_8c516031_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_zone nautobot_firewall_mo_status_id_8ecd47b8_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zone + ADD CONSTRAINT nautobot_firewall_mo_status_id_8ecd47b8_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policyrule nautobot_firewall_mo_status_id_ac1bca0c_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policyrule + ADD CONSTRAINT nautobot_firewall_mo_status_id_ac1bca0c_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_serviceobject nautobot_firewall_mo_status_id_b113969d_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobject + ADD CONSTRAINT nautobot_firewall_mo_status_id_b113969d_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_userobjectgroup nautobot_firewall_mo_status_id_dc761379_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobjectgroup + ADD CONSTRAINT nautobot_firewall_mo_status_id_dc761379_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_serviceobjectgroup nautobot_firewall_mo_status_id_e84efc09_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_serviceobjectgroup + ADD CONSTRAINT nautobot_firewall_mo_status_id_e84efc09_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_applicationobject nautobot_firewall_mo_status_id_f49657f8_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_applicationobject + ADD CONSTRAINT nautobot_firewall_mo_status_id_f49657f8_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_fqdn nautobot_firewall_mo_status_id_f4edd525_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_fqdn + ADD CONSTRAINT nautobot_firewall_mo_status_id_f4edd525_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcgroupm2m nautobot_firewall_mo_svc_group_id_0cb9955a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_group_id_0cb9955a_fk_nautobot_ FOREIGN KEY (svc_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcgroupm2m nautobot_firewall_mo_svc_group_id_25a9378f_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_group_id_25a9378f_fk_nautobot_ FOREIGN KEY (svc_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destsvcgroupm2m nautobot_firewall_mo_svc_group_id_5274f2cc_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_group_id_5274f2cc_fk_nautobot_ FOREIGN KEY (svc_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcgroupm2m nautobot_firewall_mo_svc_group_id_53d720ec_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_group_id_53d720ec_fk_nautobot_ FOREIGN KEY (svc_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcgroupm2m nautobot_firewall_mo_svc_group_id_8c333360_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_group_id_8c333360_fk_nautobot_ FOREIGN KEY (svc_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcsvcgroupm2m nautobot_firewall_mo_svc_group_id_cb367ca7_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcsvcgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_group_id_cb367ca7_fk_nautobot_ FOREIGN KEY (svc_group_id) REFERENCES public.nautobot_firewall_models_serviceobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destsvcm2m nautobot_firewall_mo_svc_id_0eb50559_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_id_0eb50559_fk_nautobot_ FOREIGN KEY (svc_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestsvcm2m nautobot_firewall_mo_svc_id_3ff120c3_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_id_3ff120c3_fk_nautobot_ FOREIGN KEY (svc_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcsvcm2m nautobot_firewall_mo_svc_id_5f1b4d6f_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_id_5f1b4d6f_fk_nautobot_ FOREIGN KEY (svc_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigsrcsvcm2m nautobot_firewall_mo_svc_id_bbf10f83_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigsrcsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_id_bbf10f83_fk_nautobot_ FOREIGN KEY (svc_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestsvcm2m nautobot_firewall_mo_svc_id_e343f07b_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_id_e343f07b_fk_nautobot_ FOREIGN KEY (svc_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattranssrcsvcm2m nautobot_firewall_mo_svc_id_ec5e37f1_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattranssrcsvcm2m + ADD CONSTRAINT nautobot_firewall_mo_svc_id_ec5e37f1_fk_nautobot_ FOREIGN KEY (svc_id) REFERENCES public.nautobot_firewall_models_serviceobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natpolicy nautobot_firewall_mo_tenant_id_1f06ffbd_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natpolicy + ADD CONSTRAINT nautobot_firewall_mo_tenant_id_1f06ffbd_fk_tenancy_t FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_policy nautobot_firewall_mo_tenant_id_62e13dca_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_policy + ADD CONSTRAINT nautobot_firewall_mo_tenant_id_62e13dca_fk_tenancy_t FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_userobjectgroupm2m nautobot_firewall_mo_user_group_id_26f3cea7_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_user_group_id_26f3cea7_fk_nautobot_ FOREIGN KEY (user_group_id) REFERENCES public.nautobot_firewall_models_userobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcusergroupm2m nautobot_firewall_mo_user_group_id_a2718e63_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcusergroupm2m + ADD CONSTRAINT nautobot_firewall_mo_user_group_id_a2718e63_fk_nautobot_ FOREIGN KEY (user_group_id) REFERENCES public.nautobot_firewall_models_userobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natsrcusergroupm2m nautobot_firewall_mo_user_group_id_d00ade1a_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natsrcusergroupm2m + ADD CONSTRAINT nautobot_firewall_mo_user_group_id_d00ade1a_fk_nautobot_ FOREIGN KEY (user_group_id) REFERENCES public.nautobot_firewall_models_userobjectgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_userobjectgroupm2m nautobot_firewall_mo_user_id_3fd88382_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_userobjectgroupm2m + ADD CONSTRAINT nautobot_firewall_mo_user_id_3fd88382_fk_nautobot_ FOREIGN KEY (user_id) REFERENCES public.nautobot_firewall_models_userobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natsrcuserm2m nautobot_firewall_mo_user_id_6f41e00f_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natsrcuserm2m + ADD CONSTRAINT nautobot_firewall_mo_user_id_6f41e00f_fk_nautobot_ FOREIGN KEY (user_id) REFERENCES public.nautobot_firewall_models_userobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_natorigdestaddrm2m nautobot_firewall_mo_user_id_81bf6edb_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_natorigdestaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_user_id_81bf6edb_fk_nautobot_ FOREIGN KEY (user_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_srcuserm2m nautobot_firewall_mo_user_id_984f785c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_srcuserm2m + ADD CONSTRAINT nautobot_firewall_mo_user_id_984f785c_fk_nautobot_ FOREIGN KEY (user_id) REFERENCES public.nautobot_firewall_models_userobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_nattransdestaddrm2m nautobot_firewall_mo_user_id_a5b0cef3_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_nattransdestaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_user_id_a5b0cef3_fk_nautobot_ FOREIGN KEY (user_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_destaddrm2m nautobot_firewall_mo_user_id_ed1ebc00_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_destaddrm2m + ADD CONSTRAINT nautobot_firewall_mo_user_id_ed1ebc00_fk_nautobot_ FOREIGN KEY (user_id) REFERENCES public.nautobot_firewall_models_addressobject(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_zonevrfm2m nautobot_firewall_mo_vrf_id_ebdeca0d_fk_ipam_vrf_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zonevrfm2m + ADD CONSTRAINT nautobot_firewall_mo_vrf_id_ebdeca0d_fk_ipam_vrf_ FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_zoneinterfacem2m nautobot_firewall_mo_zone_id_492f8bfb_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zoneinterfacem2m + ADD CONSTRAINT nautobot_firewall_mo_zone_id_492f8bfb_fk_nautobot_ FOREIGN KEY (zone_id) REFERENCES public.nautobot_firewall_models_zone(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_zonevrfm2m nautobot_firewall_mo_zone_id_e0be8445_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_zonevrfm2m + ADD CONSTRAINT nautobot_firewall_mo_zone_id_e0be8445_fk_nautobot_ FOREIGN KEY (zone_id) REFERENCES public.nautobot_firewall_models_zone(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_firewall_models_iprange nautobot_firewall_models_iprange_vrf_id_7b40fa73_fk_ipam_vrf_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_firewall_models_iprange + ADD CONSTRAINT nautobot_firewall_models_iprange_vrf_id_7b40fa73_fk_ipam_vrf_id FOREIGN KEY (vrf_id) REFERENCES public.ipam_vrf(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_conf_backup_repository_id_0c51f491_fk_extras_gi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_conf_backup_repository_id_0c51f491_fk_extras_gi FOREIGN KEY (backup_repository_id) REFERENCES public.extras_gitrepository(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_goldenconfig nautobot_golden_conf_device_id_2180ab89_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfig + ADD CONSTRAINT nautobot_golden_conf_device_id_2180ab89_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_configcompliance nautobot_golden_conf_device_id_e79e9798_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configcompliance + ADD CONSTRAINT nautobot_golden_conf_device_id_e79e9798_fk_dcim_devi FOREIGN KEY (device_id) REFERENCES public.dcim_device(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_conf_dynamic_group_id_7ee3131a_fk_extras_dy; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_conf_dynamic_group_id_7ee3131a_fk_extras_dy FOREIGN KEY (dynamic_group_id) REFERENCES public.extras_dynamicgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_compliancerule nautobot_golden_conf_feature_id_599d326c_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancerule + ADD CONSTRAINT nautobot_golden_conf_feature_id_599d326c_fk_nautobot_ FOREIGN KEY (feature_id) REFERENCES public.nautobot_golden_config_compliancefeature(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_conf_intended_repository__4dd88f85_fk_extras_gi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_conf_intended_repository__4dd88f85_fk_extras_gi FOREIGN KEY (intended_repository_id) REFERENCES public.extras_gitrepository(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_conf_jinja_repository_id_1dad39a4_fk_extras_gi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_conf_jinja_repository_id_1dad39a4_fk_extras_gi FOREIGN KEY (jinja_repository_id) REFERENCES public.extras_gitrepository(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_configreplace nautobot_golden_conf_platform_id_46e5eda2_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configreplace + ADD CONSTRAINT nautobot_golden_conf_platform_id_46e5eda2_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_configremove nautobot_golden_conf_platform_id_a230d573_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configremove + ADD CONSTRAINT nautobot_golden_conf_platform_id_a230d573_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_compliancerule nautobot_golden_conf_platform_id_fefbb62e_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_compliancerule + ADD CONSTRAINT nautobot_golden_conf_platform_id_fefbb62e_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_configcompliance nautobot_golden_conf_rule_id_aad296a7_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_configcompliance + ADD CONSTRAINT nautobot_golden_conf_rule_id_aad296a7_fk_nautobot_ FOREIGN KEY (rule_id) REFERENCES public.nautobot_golden_config_compliancerule(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_golden_config_goldenconfigsetting nautobot_golden_conf_sot_agg_query_id_fdaec944_fk_extras_gr; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_golden_config_goldenconfigsetting + ADD CONSTRAINT nautobot_golden_conf_sot_agg_query_id_fdaec944_fk_extras_gr FOREIGN KEY (sot_agg_query_id) REFERENCES public.extras_graphqlquery(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_ssot_sync nautobot_ssot_sync_job_result_id_0d60881f_fk_extras_jo; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_ssot_sync + ADD CONSTRAINT nautobot_ssot_sync_job_result_id_0d60881f_fk_extras_jo FOREIGN KEY (job_result_id) REFERENCES public.extras_jobresult(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_ssot_synclogentry nautobot_ssot_synclo_sync_id_b57732cc_fk_nautobot_; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_ssot_synclogentry + ADD CONSTRAINT nautobot_ssot_synclo_sync_id_b57732cc_fk_nautobot_ FOREIGN KEY (sync_id) REFERENCES public.nautobot_ssot_sync(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: nautobot_ssot_synclogentry nautobot_ssot_synclo_synced_object_type_i_487e676a_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.nautobot_ssot_synclogentry + ADD CONSTRAINT nautobot_ssot_synclo_synced_object_type_i_487e676a_fk_django_co FOREIGN KEY (synced_object_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: social_auth_usersocialauth social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.social_auth_usersocialauth + ADD CONSTRAINT social_auth_usersocialauth_user_id_17d28448_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: taggit_taggeditem taggit_taggeditem_content_type_id_9957a03c_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_taggeditem + ADD CONSTRAINT taggit_taggeditem_content_type_id_9957a03c_fk_django_co FOREIGN KEY (content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: taggit_taggeditem taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.taggit_taggeditem + ADD CONSTRAINT taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id FOREIGN KEY (tag_id) REFERENCES public.taggit_tag(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: tenancy_tenant tenancy_tenant_group_id_7daef6f4_fk_tenancy_tenantgroup_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenant + ADD CONSTRAINT tenancy_tenant_group_id_7daef6f4_fk_tenancy_tenantgroup_id FOREIGN KEY (group_id) REFERENCES public.tenancy_tenantgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: tenancy_tenantgroup tenancy_tenantgroup_parent_id_2542fc18_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.tenancy_tenantgroup + ADD CONSTRAINT tenancy_tenantgroup_parent_id_2542fc18_fk_tenancy_t FOREIGN KEY (parent_id) REFERENCES public.tenancy_tenantgroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_objectpermission_object_types users_objectpermissi_contenttype_id_594b1cc7_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_object_types + ADD CONSTRAINT users_objectpermissi_contenttype_id_594b1cc7_fk_django_co FOREIGN KEY (contenttype_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_objectpermission_groups users_objectpermissi_group_id_fb7ba6e0_fk_auth_grou; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_groups + ADD CONSTRAINT users_objectpermissi_group_id_fb7ba6e0_fk_auth_grou FOREIGN KEY (group_id) REFERENCES public.auth_group(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_objectpermission_groups users_objectpermissi_objectpermission_id_2f7cc117_fk_users_obj; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_groups + ADD CONSTRAINT users_objectpermissi_objectpermission_id_2f7cc117_fk_users_obj FOREIGN KEY (objectpermission_id) REFERENCES public.users_objectpermission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_objectpermission_object_types users_objectpermissi_objectpermission_id_38c7d8f5_fk_users_obj; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_object_types + ADD CONSTRAINT users_objectpermissi_objectpermission_id_38c7d8f5_fk_users_obj FOREIGN KEY (objectpermission_id) REFERENCES public.users_objectpermission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_objectpermission_users users_objectpermissi_objectpermission_id_78a9c2e6_fk_users_obj; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_users + ADD CONSTRAINT users_objectpermissi_objectpermission_id_78a9c2e6_fk_users_obj FOREIGN KEY (objectpermission_id) REFERENCES public.users_objectpermission(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_objectpermission_users users_objectpermission_users_user_id_16c0905d_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_objectpermission_users + ADD CONSTRAINT users_objectpermission_users_user_id_16c0905d_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: users_token users_token_user_id_af964690_fk_auth_user_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.users_token + ADD CONSTRAINT users_token_user_id_af964690_fk_auth_user_id FOREIGN KEY (user_id) REFERENCES public.auth_user(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_cluster virtualization_clust_group_id_de379828_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_clust_group_id_de379828_fk_virtualiz FOREIGN KEY (group_id) REFERENCES public.virtualization_clustergroup(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_cluster virtualization_clust_type_id_4efafb0a_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_clust_type_id_4efafb0a_fk_virtualiz FOREIGN KEY (type_id) REFERENCES public.virtualization_clustertype(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_cluster virtualization_cluster_location_id_fdcab7e6_fk_dcim_location_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_cluster_location_id_fdcab7e6_fk_dcim_location_id FOREIGN KEY (location_id) REFERENCES public.dcim_location(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_cluster virtualization_cluster_site_id_4d5af282_fk_dcim_site_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_cluster_site_id_4d5af282_fk_dcim_site_id FOREIGN KEY (site_id) REFERENCES public.dcim_site(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_cluster virtualization_cluster_tenant_id_bc2868d0_fk_tenancy_tenant_id; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_cluster + ADD CONSTRAINT virtualization_cluster_tenant_id_bc2868d0_fk_tenancy_tenant_id FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_cluster_id_6c9f9047_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_cluster_id_6c9f9047_fk_virtualiz FOREIGN KEY (cluster_id) REFERENCES public.virtualization_cluster(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_local_context_data_o_f760366b_fk_django_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_local_context_data_o_f760366b_fk_django_co FOREIGN KEY (local_context_data_owner_content_type_id) REFERENCES public.django_content_type(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_local_context_schema_d359876d_fk_extras_co; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_local_context_schema_d359876d_fk_extras_co FOREIGN KEY (local_context_schema_id) REFERENCES public.extras_configcontextschema(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_platform_id_a6c5ccb2_fk_dcim_plat; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_platform_id_a6c5ccb2_fk_dcim_plat FOREIGN KEY (platform_id) REFERENCES public.dcim_platform(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_primary_ip4_id_942e42ae_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_primary_ip4_id_942e42ae_fk_ipam_ipad FOREIGN KEY (primary_ip4_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_primary_ip6_id_b7904e73_fk_ipam_ipad; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_primary_ip6_id_b7904e73_fk_ipam_ipad FOREIGN KEY (primary_ip6_id) REFERENCES public.ipam_ipaddress(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_role_id_0cc898f9_fk_dcim_devi; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_role_id_0cc898f9_fk_dcim_devi FOREIGN KEY (role_id) REFERENCES public.dcim_devicerole(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_status_id_ff17be20_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_status_id_ff17be20_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_virtualmachine virtualization_virtu_tenant_id_d00d1d77_fk_tenancy_t; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_virtualmachine + ADD CONSTRAINT virtualization_virtu_tenant_id_d00d1d77_fk_tenancy_t FOREIGN KEY (tenant_id) REFERENCES public.tenancy_tenant(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface virtualization_vmint_bridge_id_7462b91e_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vmint_bridge_id_7462b91e_fk_virtualiz FOREIGN KEY (bridge_id) REFERENCES public.virtualization_vminterface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface virtualization_vmint_parent_interface_id_3532b142_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vmint_parent_interface_id_3532b142_fk_virtualiz FOREIGN KEY (parent_interface_id) REFERENCES public.virtualization_vminterface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface virtualization_vmint_status_id_5f9104d8_fk_extras_st; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vmint_status_id_5f9104d8_fk_extras_st FOREIGN KEY (status_id) REFERENCES public.extras_status(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface virtualization_vmint_untagged_vlan_id_aea4fc69_fk_ipam_vlan; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vmint_untagged_vlan_id_aea4fc69_fk_ipam_vlan FOREIGN KEY (untagged_vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface virtualization_vmint_virtual_machine_id_e9f89829_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface + ADD CONSTRAINT virtualization_vmint_virtual_machine_id_e9f89829_fk_virtualiz FOREIGN KEY (virtual_machine_id) REFERENCES public.virtualization_virtualmachine(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface_tagged_vlans virtualization_vmint_vlan_id_4e77411e_fk_ipam_vlan; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface_tagged_vlans + ADD CONSTRAINT virtualization_vmint_vlan_id_4e77411e_fk_ipam_vlan FOREIGN KEY (vlan_id) REFERENCES public.ipam_vlan(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- Name: virtualization_vminterface_tagged_vlans virtualization_vmint_vminterface_id_904b12de_fk_virtualiz; Type: FK CONSTRAINT; Schema: public; Owner: nautobot +-- + +ALTER TABLE ONLY public.virtualization_vminterface_tagged_vlans + ADD CONSTRAINT virtualization_vmint_vminterface_id_904b12de_fk_virtualiz FOREIGN KEY (vminterface_id) REFERENCES public.virtualization_vminterface(id) DEFERRABLE INITIALLY DEFERRED; + + +-- +-- PostgreSQL database dump complete +-- + diff --git a/templates/nautobot_config.py b/templates/nautobot_config.py index 23b2ee8..5522eae 100644 --- a/templates/nautobot_config.py +++ b/templates/nautobot_config.py @@ -79,7 +79,7 @@ # For optimal security, SECRET_KEY should be at least 50 characters in length and contain a mix of letters, numbers, and # symbols. Nautobot will not run without this defined. For more information, see # https://docs.djangoproject.com/en/stable/ref/settings/#std:setting-SECRET_KEY -SECRET_KEY = "r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj" +SECRET_KEY = "changeme" #########################