Created
February 19, 2026 15:31
-
-
Save 0xae/84075d8411a0e29561e5289764c68044 to your computer and use it in GitHub Desktop.
nnetboxdump001
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- PostgreSQL database dump | |
| -- | |
| \restrict a3uVXoSDzviC2z3fUdrgFUPNnnr5ZKD49bOdnjUoxsYlXHgRBnTRdw2oBiQB1K4 | |
| -- Dumped from database version 16.11 (Ubuntu 16.11-0ubuntu0.24.04.1) | |
| -- Dumped by pg_dump version 16.11 (Ubuntu 16.11-0ubuntu0.24.04.1) | |
| 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; | |
| -- | |
| -- Name: natural_sort; Type: COLLATION; Schema: public; Owner: netbox | |
| -- | |
| CREATE COLLATION public.natural_sort (provider = icu, locale = 'und-u-kn'); | |
| ALTER COLLATION public.natural_sort OWNER TO netbox; | |
| SET default_tablespace = ''; | |
| SET default_table_access_method = heap; | |
| -- | |
| -- Name: auth_group; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.auth_group ( | |
| id integer NOT NULL, | |
| name character varying(150) NOT NULL | |
| ); | |
| ALTER TABLE public.auth_group OWNER TO netbox; | |
| -- | |
| -- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.auth_group_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.auth_group_permissions_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: auth_permission; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.auth_permission_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_circuit; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_circuit ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| cid character varying(100) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| install_date date, | |
| commit_rate integer, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| provider_id bigint NOT NULL, | |
| tenant_id bigint, | |
| termination_a_id bigint, | |
| termination_z_id bigint, | |
| type_id bigint NOT NULL, | |
| termination_date date, | |
| provider_account_id bigint, | |
| _abs_distance numeric(13,4), | |
| distance numeric(8,2), | |
| distance_unit character varying(50), | |
| owner_id bigint, | |
| CONSTRAINT circuits_circuit_commit_rate_check CHECK ((commit_rate >= 0)) | |
| ); | |
| ALTER TABLE public.circuits_circuit OWNER TO netbox; | |
| -- | |
| -- Name: circuits_circuit_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_circuit ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_circuit_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_circuitgroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_circuitgroup ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| 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, | |
| tenant_id bigint, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.circuits_circuitgroup OWNER TO netbox; | |
| -- | |
| -- Name: circuits_circuitgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_circuitgroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_circuitgroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_circuitgroupassignment; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_circuitgroupassignment ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| priority character varying(50), | |
| member_id bigint NOT NULL, | |
| group_id bigint NOT NULL, | |
| member_type_id integer NOT NULL, | |
| CONSTRAINT circuits_circuitgroupassignment_member_id_0c42fe52_check CHECK ((member_id >= 0)) | |
| ); | |
| ALTER TABLE public.circuits_circuitgroupassignment OWNER TO netbox; | |
| -- | |
| -- Name: circuits_circuitgroupassignment_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_circuitgroupassignment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_circuitgroupassignment_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_circuittermination; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_circuittermination ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| 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_id bigint, | |
| circuit_id bigint NOT NULL, | |
| _provider_network_id bigint, | |
| custom_field_data jsonb NOT NULL, | |
| cable_end character varying(1), | |
| termination_id bigint, | |
| termination_type_id integer, | |
| _location_id bigint, | |
| _region_id bigint, | |
| _site_id bigint, | |
| _site_group_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT circuits_circuittermination_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT circuits_circuittermination_port_speed_check CHECK ((port_speed >= 0)), | |
| CONSTRAINT circuits_circuittermination_termination_id_check CHECK ((termination_id >= 0)), | |
| CONSTRAINT circuits_circuittermination_upstream_speed_check CHECK ((upstream_speed >= 0)) | |
| ); | |
| ALTER TABLE public.circuits_circuittermination OWNER TO netbox; | |
| -- | |
| -- Name: circuits_circuittermination_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_circuittermination ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_circuittermination_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_circuittype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_circuittype ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| color character varying(6) NOT NULL, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.circuits_circuittype OWNER TO netbox; | |
| -- | |
| -- Name: circuits_circuittype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_circuittype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_circuittype_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_provider; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_provider ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| slug character varying(100) NOT NULL, | |
| comments text NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.circuits_provider OWNER TO netbox; | |
| -- | |
| -- Name: circuits_provider_asns; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_provider_asns ( | |
| id bigint NOT NULL, | |
| provider_id bigint NOT NULL, | |
| asn_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.circuits_provider_asns OWNER TO netbox; | |
| -- | |
| -- Name: circuits_provider_asns_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_provider_asns ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_provider_asns_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_provider_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_provider ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_provider_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_provideraccount; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_provideraccount ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| account character varying(100) NOT NULL, | |
| name character varying(100) NOT NULL, | |
| provider_id bigint NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.circuits_provideraccount OWNER TO netbox; | |
| -- | |
| -- Name: circuits_provideraccount_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_provideraccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_provideraccount_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_providernetwork; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_providernetwork ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| provider_id bigint NOT NULL, | |
| service_id character varying(100) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.circuits_providernetwork OWNER TO netbox; | |
| -- | |
| -- Name: circuits_providernetwork_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_providernetwork ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_providernetwork_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_virtualcircuit; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_virtualcircuit ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| cid character varying(100) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| provider_account_id bigint, | |
| provider_network_id bigint NOT NULL, | |
| type_id bigint NOT NULL, | |
| tenant_id bigint, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.circuits_virtualcircuit OWNER TO netbox; | |
| -- | |
| -- Name: circuits_virtualcircuit_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_virtualcircuit ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_virtualcircuit_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_virtualcircuittermination; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_virtualcircuittermination ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| role character varying(50) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| interface_id bigint NOT NULL, | |
| virtual_circuit_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.circuits_virtualcircuittermination OWNER TO netbox; | |
| -- | |
| -- Name: circuits_virtualcircuittermination_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_virtualcircuittermination ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_virtualcircuittermination_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: circuits_virtualcircuittype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.circuits_virtualcircuittype ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| 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, | |
| color character varying(6) NOT NULL, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.circuits_virtualcircuittype OWNER TO netbox; | |
| -- | |
| -- Name: circuits_virtualcircuittype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.circuits_virtualcircuittype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.circuits_virtualcircuittype_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_autosyncrecord; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_autosyncrecord ( | |
| id bigint NOT NULL, | |
| object_id bigint NOT NULL, | |
| datafile_id bigint NOT NULL, | |
| object_type_id integer NOT NULL, | |
| CONSTRAINT core_autosyncrecord_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.core_autosyncrecord OWNER TO netbox; | |
| -- | |
| -- Name: core_autosyncrecord_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_autosyncrecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.core_autosyncrecord_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_configrevision; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_configrevision ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| comment character varying(200) NOT NULL, | |
| data jsonb, | |
| active boolean NOT NULL | |
| ); | |
| ALTER TABLE public.core_configrevision OWNER TO netbox; | |
| -- | |
| -- Name: core_datafile; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_datafile ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| last_updated timestamp with time zone NOT NULL, | |
| path character varying(1000) NOT NULL, | |
| size integer NOT NULL, | |
| hash character varying(64) NOT NULL, | |
| data bytea NOT NULL, | |
| source_id bigint NOT NULL, | |
| CONSTRAINT core_datafile_size_check CHECK ((size >= 0)) | |
| ); | |
| ALTER TABLE public.core_datafile OWNER TO netbox; | |
| -- | |
| -- Name: core_datafile_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_datafile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.core_datafile_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_datasource; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_datasource ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL, | |
| type character varying(50) NOT NULL, | |
| source_url character varying(200) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| enabled boolean NOT NULL, | |
| ignore_rules text NOT NULL, | |
| parameters jsonb, | |
| last_synced timestamp with time zone, | |
| sync_interval smallint, | |
| owner_id bigint, | |
| CONSTRAINT core_datasource_sync_interval_check CHECK ((sync_interval >= 0)) | |
| ); | |
| ALTER TABLE public.core_datasource OWNER TO netbox; | |
| -- | |
| -- Name: core_datasource_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_datasource ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.core_datasource_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_job; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_job ( | |
| id bigint NOT NULL, | |
| object_id bigint, | |
| name character varying(200) NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| scheduled timestamp with time zone, | |
| "interval" integer, | |
| started timestamp with time zone, | |
| completed timestamp with time zone, | |
| status character varying(30) NOT NULL, | |
| data jsonb, | |
| job_id uuid NOT NULL, | |
| object_type_id integer, | |
| user_id bigint, | |
| error text NOT NULL, | |
| log_entries jsonb[] NOT NULL, | |
| CONSTRAINT core_job_interval_check CHECK (("interval" >= 0)), | |
| CONSTRAINT core_job_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.core_job OWNER TO netbox; | |
| -- | |
| -- Name: core_job_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_job ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.core_job_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_managedfile; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_managedfile ( | |
| id bigint NOT NULL, | |
| data_path character varying(1000) NOT NULL, | |
| data_synced timestamp with time zone, | |
| created timestamp with time zone NOT NULL, | |
| last_updated timestamp with time zone, | |
| file_root character varying(1000) NOT NULL, | |
| file_path character varying(100) NOT NULL, | |
| data_file_id bigint, | |
| data_source_id bigint, | |
| auto_sync_enabled boolean NOT NULL | |
| ); | |
| ALTER TABLE public.core_managedfile OWNER TO netbox; | |
| -- | |
| -- Name: core_managedfile_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_managedfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.core_managedfile_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_objectchange; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_objectchange ( | |
| id bigint 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 bigint NOT NULL, | |
| related_object_id bigint, | |
| object_repr character varying(200) NOT NULL, | |
| prechange_data jsonb, | |
| postchange_data jsonb, | |
| changed_object_type_id integer NOT NULL, | |
| related_object_type_id integer, | |
| user_id bigint, | |
| message character varying(200) NOT NULL, | |
| CONSTRAINT core_objectchange_changed_object_id_check CHECK ((changed_object_id >= 0)), | |
| CONSTRAINT core_objectchange_related_object_id_check CHECK ((related_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.core_objectchange OWNER TO netbox; | |
| -- | |
| -- Name: core_objectchange_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_objectchange ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.core_objectchange_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: core_objecttype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.core_objecttype ( | |
| contenttype_ptr_id integer NOT NULL, | |
| public boolean NOT NULL, | |
| features character varying(50)[] NOT NULL | |
| ); | |
| ALTER TABLE public.core_objecttype OWNER TO netbox; | |
| -- | |
| -- Name: dcim_cable; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_cable ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| type character varying(50), | |
| status character varying(50) NOT NULL, | |
| label character varying(100) NOT NULL, | |
| color character varying(6) NOT NULL, | |
| length numeric(8,2), | |
| length_unit character varying(50), | |
| _abs_length numeric(10,4), | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint, | |
| profile character varying(50) NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_cable OWNER TO netbox; | |
| -- | |
| -- Name: dcim_cable_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_cable ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_cable_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_cablepath; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_cablepath ( | |
| id bigint NOT NULL, | |
| _nodes character varying(40)[] NOT NULL, | |
| is_active boolean NOT NULL, | |
| is_split boolean NOT NULL, | |
| path jsonb NOT NULL, | |
| is_complete boolean NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_cablepath OWNER TO netbox; | |
| -- | |
| -- Name: dcim_cablepath_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_cablepath ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_cablepath_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_cabletermination; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_cabletermination ( | |
| id bigint NOT NULL, | |
| cable_end character varying(1) NOT NULL, | |
| termination_id bigint NOT NULL, | |
| cable_id bigint NOT NULL, | |
| termination_type_id integer NOT NULL, | |
| _device_id bigint, | |
| _rack_id bigint, | |
| _location_id bigint, | |
| _site_id bigint, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| connector smallint, | |
| positions smallint[], | |
| CONSTRAINT dcim_cabletermination_connector_check CHECK ((connector >= 0)), | |
| CONSTRAINT dcim_cabletermination_termination_id_check CHECK ((termination_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_cabletermination OWNER TO netbox; | |
| -- | |
| -- Name: dcim_cabletermination_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_cabletermination ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_cabletermination_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_consoleport; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_consoleport ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| type character varying(50), | |
| speed integer, | |
| _path_id bigint, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| module_id bigint, | |
| cable_end character varying(1), | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_consoleport_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_consoleport_speed_check CHECK ((speed >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_consoleport OWNER TO netbox; | |
| -- | |
| -- Name: dcim_consoleport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_consoleport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_consoleport_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_consoleporttemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_consoleporttemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| type character varying(50), | |
| device_type_id bigint, | |
| module_type_id bigint | |
| ); | |
| ALTER TABLE public.dcim_consoleporttemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_consoleporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_consoleporttemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_consoleporttemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_consoleserverport; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_consoleserverport ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| type character varying(50), | |
| speed integer, | |
| _path_id bigint, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| module_id bigint, | |
| cable_end character varying(1), | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_consoleserverport_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_consoleserverport_speed_check CHECK ((speed >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_consoleserverport OWNER TO netbox; | |
| -- | |
| -- Name: dcim_consoleserverport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_consoleserverport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_consoleserverport_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_consoleserverporttemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_consoleserverporttemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| type character varying(50), | |
| device_type_id bigint, | |
| module_type_id bigint | |
| ); | |
| ALTER TABLE public.dcim_consoleserverporttemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_consoleserverporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_consoleserverporttemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_consoleserverporttemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_device; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_device ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| local_context_data jsonb, | |
| name character varying(64) COLLATE public.natural_sort, | |
| serial character varying(50) NOT NULL, | |
| asset_tag character varying(50), | |
| "position" numeric(4,1), | |
| face character varying(50), | |
| status character varying(50) NOT NULL, | |
| vc_position integer, | |
| vc_priority smallint, | |
| comments text NOT NULL, | |
| cluster_id bigint, | |
| role_id bigint NOT NULL, | |
| device_type_id bigint NOT NULL, | |
| location_id bigint, | |
| platform_id bigint, | |
| primary_ip4_id bigint, | |
| primary_ip6_id bigint, | |
| rack_id bigint, | |
| site_id bigint NOT NULL, | |
| tenant_id bigint, | |
| virtual_chassis_id bigint, | |
| airflow character varying(50), | |
| description character varying(200) NOT NULL, | |
| config_template_id bigint, | |
| latitude numeric(8,6), | |
| longitude numeric(9,6), | |
| oob_ip_id bigint, | |
| console_port_count bigint NOT NULL, | |
| console_server_port_count bigint NOT NULL, | |
| power_port_count bigint NOT NULL, | |
| power_outlet_count bigint NOT NULL, | |
| interface_count bigint NOT NULL, | |
| front_port_count bigint NOT NULL, | |
| rear_port_count bigint NOT NULL, | |
| device_bay_count bigint NOT NULL, | |
| module_bay_count bigint NOT NULL, | |
| inventory_item_count bigint NOT NULL, | |
| owner_id bigint, | |
| 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 netbox; | |
| -- | |
| -- Name: dcim_device_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_device ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_device_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_devicebay; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_devicebay ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| device_id bigint NOT NULL, | |
| installed_device_id bigint, | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_devicebay OWNER TO netbox; | |
| -- | |
| -- Name: dcim_devicebay_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_devicebay ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_devicebay_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_devicebaytemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_devicebaytemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| device_type_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_devicebaytemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_devicebaytemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_devicebaytemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_devicebaytemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_devicerole; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_devicerole ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint 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, | |
| config_template_id bigint, | |
| level integer NOT NULL, | |
| lft integer NOT NULL, | |
| rght integer NOT NULL, | |
| tree_id integer NOT NULL, | |
| parent_id bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT dcim_devicerole_level_check CHECK ((level >= 0)), | |
| CONSTRAINT dcim_devicerole_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT dcim_devicerole_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT dcim_devicerole_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_devicerole OWNER TO netbox; | |
| -- | |
| -- Name: dcim_devicerole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_devicerole ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_devicerole_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_devicetype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_devicetype ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| model character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| part_number character varying(50) NOT NULL, | |
| u_height numeric(4,1) NOT NULL, | |
| is_full_depth boolean NOT NULL, | |
| subdevice_role character varying(50), | |
| front_image character varying(100) NOT NULL, | |
| rear_image character varying(100) NOT NULL, | |
| comments text NOT NULL, | |
| manufacturer_id bigint NOT NULL, | |
| airflow character varying(50), | |
| weight numeric(8,2), | |
| weight_unit character varying(50), | |
| _abs_weight bigint, | |
| description character varying(200) NOT NULL, | |
| default_platform_id bigint, | |
| console_port_template_count bigint NOT NULL, | |
| console_server_port_template_count bigint NOT NULL, | |
| power_port_template_count bigint NOT NULL, | |
| power_outlet_template_count bigint NOT NULL, | |
| interface_template_count bigint NOT NULL, | |
| front_port_template_count bigint NOT NULL, | |
| rear_port_template_count bigint NOT NULL, | |
| device_bay_template_count bigint NOT NULL, | |
| module_bay_template_count bigint NOT NULL, | |
| inventory_item_template_count bigint NOT NULL, | |
| exclude_from_utilization boolean NOT NULL, | |
| owner_id bigint, | |
| device_count bigint NOT NULL, | |
| CONSTRAINT dcim_devicetype__abs_weight_check CHECK ((_abs_weight >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_devicetype OWNER TO netbox; | |
| -- | |
| -- Name: dcim_devicetype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_devicetype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_devicetype_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_frontport; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_frontport ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| type character varying(50) NOT NULL, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| color character varying(6) NOT NULL, | |
| module_id bigint, | |
| cable_end character varying(1), | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| positions smallint NOT NULL, | |
| CONSTRAINT dcim_frontport_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_frontport_positions_check CHECK ((positions >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_frontport OWNER TO netbox; | |
| -- | |
| -- Name: dcim_frontport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_frontport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_frontport_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_frontporttemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_frontporttemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| type character varying(50) NOT NULL, | |
| device_type_id bigint, | |
| color character varying(6) NOT NULL, | |
| module_type_id bigint, | |
| positions smallint NOT NULL, | |
| CONSTRAINT dcim_frontporttemplate_positions_check CHECK ((positions >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_frontporttemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_frontporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_frontporttemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_frontporttemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_interface; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_interface ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| enabled boolean NOT NULL, | |
| mtu integer, | |
| mode character varying(50), | |
| _name character varying(100) NOT NULL, | |
| type character varying(50) NOT NULL, | |
| mgmt_only boolean NOT NULL, | |
| _path_id bigint, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| lag_id bigint, | |
| parent_id bigint, | |
| untagged_vlan_id bigint, | |
| wwn macaddr8, | |
| bridge_id bigint, | |
| rf_role character varying(30), | |
| rf_channel character varying(50), | |
| rf_channel_frequency numeric(7,2), | |
| rf_channel_width numeric(7,3), | |
| tx_power smallint, | |
| wireless_link_id bigint, | |
| module_id bigint, | |
| vrf_id bigint, | |
| duplex character varying(50), | |
| speed integer, | |
| poe_mode character varying(50), | |
| poe_type character varying(50), | |
| cable_end character varying(1), | |
| vlan_translation_policy_id bigint, | |
| qinq_svlan_id bigint, | |
| primary_mac_address_id bigint, | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_interface_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_interface_mtu_check CHECK ((mtu >= 0)), | |
| CONSTRAINT dcim_interface_speed_check CHECK ((speed >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_interface OWNER TO netbox; | |
| -- | |
| -- Name: dcim_interface_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_interface ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_interface_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_interface_tagged_vlans; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_interface_tagged_vlans ( | |
| id bigint NOT NULL, | |
| interface_id bigint NOT NULL, | |
| vlan_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_interface_tagged_vlans OWNER TO netbox; | |
| -- | |
| -- Name: dcim_interface_tagged_vlans_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_interface_tagged_vlans ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_interface_tagged_vlans_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_interface_vdcs; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_interface_vdcs ( | |
| id bigint NOT NULL, | |
| interface_id bigint NOT NULL, | |
| virtualdevicecontext_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_interface_vdcs OWNER TO netbox; | |
| -- | |
| -- Name: dcim_interface_vdcs_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_interface_vdcs ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_interface_vdcs_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_interface_wireless_lans; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_interface_wireless_lans ( | |
| id bigint NOT NULL, | |
| interface_id bigint NOT NULL, | |
| wirelesslan_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_interface_wireless_lans OWNER TO netbox; | |
| -- | |
| -- Name: dcim_interface_wireless_lans_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_interface_wireless_lans ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_interface_wireless_lans_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_interfacetemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_interfacetemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| 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 bigint, | |
| module_type_id bigint, | |
| poe_mode character varying(50), | |
| poe_type character varying(50), | |
| enabled boolean NOT NULL, | |
| bridge_id bigint, | |
| rf_role character varying(30) | |
| ); | |
| ALTER TABLE public.dcim_interfacetemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_interfacetemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_interfacetemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_interfacetemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_inventoryitem; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_inventoryitem ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| part_id character varying(50) NOT NULL, | |
| serial character varying(50) 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 bigint NOT NULL, | |
| manufacturer_id bigint, | |
| parent_id bigint, | |
| role_id bigint, | |
| component_id bigint, | |
| component_type_id integer, | |
| status character varying(50) NOT NULL, | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT dcim_inventoryitem_component_id_check CHECK ((component_id >= 0)), | |
| 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 netbox; | |
| -- | |
| -- Name: dcim_inventoryitem_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_inventoryitem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_inventoryitem_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_inventoryitemrole; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_inventoryitemrole ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| 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, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_inventoryitemrole OWNER TO netbox; | |
| -- | |
| -- Name: dcim_inventoryitemrole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_inventoryitemrole ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_inventoryitemrole_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_inventoryitemtemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_inventoryitemtemplate ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| component_id bigint, | |
| part_id character varying(50) NOT NULL, | |
| lft integer NOT NULL, | |
| rght integer NOT NULL, | |
| tree_id integer NOT NULL, | |
| level integer NOT NULL, | |
| component_type_id integer, | |
| device_type_id bigint NOT NULL, | |
| manufacturer_id bigint, | |
| parent_id bigint, | |
| role_id bigint, | |
| CONSTRAINT dcim_inventoryitemtemplate_component_id_check CHECK ((component_id >= 0)), | |
| CONSTRAINT dcim_inventoryitemtemplate_level_check CHECK ((level >= 0)), | |
| CONSTRAINT dcim_inventoryitemtemplate_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT dcim_inventoryitemtemplate_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT dcim_inventoryitemtemplate_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_inventoryitemtemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_inventoryitemtemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_inventoryitemtemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_inventoryitemtemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_location; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_location ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint 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 bigint, | |
| site_id bigint NOT NULL, | |
| tenant_id bigint, | |
| status character varying(50) NOT NULL, | |
| facility character varying(50) NOT NULL, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT dcim_location_level_check CHECK ((level >= 0)), | |
| CONSTRAINT dcim_location_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT dcim_location_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT dcim_location_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_location OWNER TO netbox; | |
| -- | |
| -- Name: dcim_location_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_location ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_location_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_macaddress; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_macaddress ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| mac_address macaddr NOT NULL, | |
| assigned_object_id bigint, | |
| assigned_object_type_id integer, | |
| owner_id bigint, | |
| CONSTRAINT dcim_macaddress_assigned_object_id_check CHECK ((assigned_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_macaddress OWNER TO netbox; | |
| -- | |
| -- Name: dcim_macaddress_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_macaddress ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_macaddress_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_manufacturer; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_manufacturer ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_manufacturer OWNER TO netbox; | |
| -- | |
| -- Name: dcim_manufacturer_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_manufacturer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_manufacturer_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_module; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_module ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| local_context_data jsonb, | |
| serial character varying(50) NOT NULL, | |
| asset_tag character varying(50), | |
| comments text NOT NULL, | |
| device_id bigint NOT NULL, | |
| module_bay_id bigint NOT NULL, | |
| module_type_id bigint NOT NULL, | |
| description character varying(200) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_module OWNER TO netbox; | |
| -- | |
| -- Name: dcim_module_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_module ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_module_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_modulebay; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_modulebay ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| "position" character varying(30) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| device_id bigint NOT NULL, | |
| level integer NOT NULL, | |
| lft integer NOT NULL, | |
| module_id bigint, | |
| parent_id bigint, | |
| rght integer NOT NULL, | |
| tree_id integer NOT NULL, | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT dcim_modulebay_level_check CHECK ((level >= 0)), | |
| CONSTRAINT dcim_modulebay_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT dcim_modulebay_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT dcim_modulebay_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_modulebay OWNER TO netbox; | |
| -- | |
| -- Name: dcim_modulebay_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_modulebay ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_modulebay_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_modulebaytemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_modulebaytemplate ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| "position" character varying(30) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| device_type_id bigint, | |
| module_type_id bigint | |
| ); | |
| ALTER TABLE public.dcim_modulebaytemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_modulebaytemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_modulebaytemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_modulebaytemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_moduletype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_moduletype ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| model character varying(100) NOT NULL, | |
| part_number character varying(50) NOT NULL, | |
| comments text NOT NULL, | |
| manufacturer_id bigint NOT NULL, | |
| weight numeric(8,2), | |
| weight_unit character varying(50), | |
| _abs_weight bigint, | |
| description character varying(200) NOT NULL, | |
| airflow character varying(50), | |
| attribute_data jsonb, | |
| profile_id bigint, | |
| owner_id bigint, | |
| module_count bigint NOT NULL, | |
| CONSTRAINT dcim_moduletype__abs_weight_check CHECK ((_abs_weight >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_moduletype OWNER TO netbox; | |
| -- | |
| -- Name: dcim_moduletype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_moduletype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_moduletype_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_moduletypeprofile; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_moduletypeprofile ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL, | |
| schema jsonb, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_moduletypeprofile OWNER TO netbox; | |
| -- | |
| -- Name: dcim_moduletypeprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_moduletypeprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_moduletypeprofile_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_platform; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_platform ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| manufacturer_id bigint, | |
| config_template_id bigint, | |
| parent_id bigint, | |
| level integer NOT NULL, | |
| lft integer NOT NULL, | |
| rght integer NOT NULL, | |
| tree_id integer NOT NULL, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT dcim_platform_level_check CHECK ((level >= 0)), | |
| CONSTRAINT dcim_platform_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT dcim_platform_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT dcim_platform_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_platform OWNER TO netbox; | |
| -- | |
| -- Name: dcim_platform_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_platform ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_platform_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_portmapping; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_portmapping ( | |
| id bigint NOT NULL, | |
| front_port_position smallint NOT NULL, | |
| rear_port_position smallint NOT NULL, | |
| device_id bigint NOT NULL, | |
| front_port_id bigint NOT NULL, | |
| rear_port_id bigint NOT NULL, | |
| CONSTRAINT dcim_portmapping_front_port_position_check CHECK ((front_port_position >= 0)), | |
| CONSTRAINT dcim_portmapping_rear_port_position_check CHECK ((rear_port_position >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_portmapping OWNER TO netbox; | |
| -- | |
| -- Name: dcim_portmapping_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_portmapping ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_portmapping_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_porttemplatemapping; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_porttemplatemapping ( | |
| id bigint NOT NULL, | |
| front_port_position smallint NOT NULL, | |
| rear_port_position smallint NOT NULL, | |
| device_type_id bigint, | |
| module_type_id bigint, | |
| front_port_id bigint NOT NULL, | |
| rear_port_id bigint NOT NULL, | |
| CONSTRAINT dcim_porttemplatemapping_front_port_position_check CHECK ((front_port_position >= 0)), | |
| CONSTRAINT dcim_porttemplatemapping_rear_port_position_check CHECK ((rear_port_position >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_porttemplatemapping OWNER TO netbox; | |
| -- | |
| -- Name: dcim_porttemplatemapping_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_porttemplatemapping ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_porttemplatemapping_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_powerfeed; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_powerfeed ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| status character varying(50) 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, | |
| _path_id bigint, | |
| cable_id bigint, | |
| power_panel_id bigint NOT NULL, | |
| rack_id bigint, | |
| cable_end character varying(1), | |
| description character varying(200) NOT NULL, | |
| tenant_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_powerfeed_amperage_check CHECK ((amperage >= 0)), | |
| CONSTRAINT dcim_powerfeed_available_power_check CHECK ((available_power >= 0)), | |
| CONSTRAINT dcim_powerfeed_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_powerfeed_max_utilization_check CHECK ((max_utilization >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_powerfeed OWNER TO netbox; | |
| -- | |
| -- Name: dcim_powerfeed_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_powerfeed ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_powerfeed_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_poweroutlet; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_poweroutlet ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| type character varying(50), | |
| feed_leg character varying(50), | |
| _path_id bigint, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| power_port_id bigint, | |
| module_id bigint, | |
| cable_end character varying(1), | |
| color character varying(6) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_poweroutlet_cable_connector_check CHECK ((cable_connector >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_poweroutlet OWNER TO netbox; | |
| -- | |
| -- Name: dcim_poweroutlet_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_poweroutlet ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_poweroutlet_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_poweroutlettemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_poweroutlettemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| type character varying(50), | |
| feed_leg character varying(50), | |
| device_type_id bigint, | |
| power_port_id bigint, | |
| module_type_id bigint, | |
| color character varying(6) NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_poweroutlettemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_poweroutlettemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_poweroutlettemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_poweroutlettemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_powerpanel; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_powerpanel ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| location_id bigint, | |
| site_id bigint NOT NULL, | |
| comments text NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_powerpanel OWNER TO netbox; | |
| -- | |
| -- Name: dcim_powerpanel_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_powerpanel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_powerpanel_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_powerport; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_powerport ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| type character varying(50), | |
| maximum_draw integer, | |
| allocated_draw integer, | |
| _path_id bigint, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| module_id bigint, | |
| cable_end character varying(1), | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_powerport_allocated_draw_check CHECK ((allocated_draw >= 0)), | |
| CONSTRAINT dcim_powerport_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_powerport_maximum_draw_check CHECK ((maximum_draw >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_powerport OWNER TO netbox; | |
| -- | |
| -- Name: dcim_powerport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_powerport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_powerport_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_powerporttemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_powerporttemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| type character varying(50), | |
| maximum_draw integer, | |
| allocated_draw integer, | |
| device_type_id bigint, | |
| module_type_id bigint, | |
| 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 netbox; | |
| -- | |
| -- Name: dcim_powerporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_powerporttemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_powerporttemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_rack; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_rack ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| facility_id character varying(50), | |
| status character varying(50) NOT NULL, | |
| serial character varying(50) NOT NULL, | |
| asset_tag character varying(50), | |
| form_factor character varying(50), | |
| 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), | |
| comments text NOT NULL, | |
| location_id bigint, | |
| role_id bigint, | |
| site_id bigint NOT NULL, | |
| tenant_id bigint, | |
| weight numeric(8,2), | |
| max_weight integer, | |
| weight_unit character varying(50), | |
| _abs_weight bigint, | |
| _abs_max_weight bigint, | |
| mounting_depth smallint, | |
| description character varying(200) NOT NULL, | |
| starting_unit smallint NOT NULL, | |
| rack_type_id bigint, | |
| airflow character varying(50), | |
| outer_height smallint, | |
| owner_id bigint, | |
| CONSTRAINT dcim_rack__abs_max_weight_check CHECK ((_abs_max_weight >= 0)), | |
| CONSTRAINT dcim_rack__abs_weight_check CHECK ((_abs_weight >= 0)), | |
| CONSTRAINT dcim_rack_max_weight_check CHECK ((max_weight >= 0)), | |
| CONSTRAINT dcim_rack_mounting_depth_check CHECK ((mounting_depth >= 0)), | |
| CONSTRAINT dcim_rack_outer_depth_check CHECK ((outer_depth >= 0)), | |
| CONSTRAINT dcim_rack_outer_height_check CHECK ((outer_height >= 0)), | |
| CONSTRAINT dcim_rack_outer_width_check CHECK ((outer_width >= 0)), | |
| CONSTRAINT dcim_rack_starting_unit_check CHECK ((starting_unit >= 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 netbox; | |
| -- | |
| -- Name: dcim_rack_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_rack ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_rack_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_rackreservation; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_rackreservation ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| units smallint[] NOT NULL, | |
| description character varying(200) NOT NULL, | |
| rack_id bigint NOT NULL, | |
| tenant_id bigint, | |
| user_id bigint NOT NULL, | |
| comments text NOT NULL, | |
| status character varying(50) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_rackreservation OWNER TO netbox; | |
| -- | |
| -- Name: dcim_rackreservation_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_rackreservation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_rackreservation_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_rackrole; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_rackrole ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint 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, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_rackrole OWNER TO netbox; | |
| -- | |
| -- Name: dcim_rackrole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_rackrole ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_rackrole_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_racktype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_racktype ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| weight numeric(8,2), | |
| weight_unit character varying(50), | |
| _abs_weight bigint, | |
| manufacturer_id bigint NOT NULL, | |
| model character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| form_factor character varying(50) NOT NULL, | |
| width smallint NOT NULL, | |
| u_height smallint NOT NULL, | |
| starting_unit smallint NOT NULL, | |
| desc_units boolean NOT NULL, | |
| outer_width smallint, | |
| outer_depth smallint, | |
| outer_unit character varying(50), | |
| max_weight integer, | |
| _abs_max_weight bigint, | |
| mounting_depth smallint, | |
| outer_height smallint, | |
| owner_id bigint, | |
| rack_count bigint NOT NULL, | |
| CONSTRAINT dcim_racktype__abs_max_weight_check CHECK ((_abs_max_weight >= 0)), | |
| CONSTRAINT dcim_racktype__abs_weight_check CHECK ((_abs_weight >= 0)), | |
| CONSTRAINT dcim_racktype_max_weight_check CHECK ((max_weight >= 0)), | |
| CONSTRAINT dcim_racktype_mounting_depth_check CHECK ((mounting_depth >= 0)), | |
| CONSTRAINT dcim_racktype_outer_depth_check CHECK ((outer_depth >= 0)), | |
| CONSTRAINT dcim_racktype_outer_height_check CHECK ((outer_height >= 0)), | |
| CONSTRAINT dcim_racktype_outer_width_check CHECK ((outer_width >= 0)), | |
| CONSTRAINT dcim_racktype_starting_unit_check CHECK ((starting_unit >= 0)), | |
| CONSTRAINT dcim_racktype_u_height_check CHECK ((u_height >= 0)), | |
| CONSTRAINT dcim_racktype_width_check CHECK ((width >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_racktype OWNER TO netbox; | |
| -- | |
| -- Name: dcim_racktype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_racktype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_racktype_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_rearport; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_rearport ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| label character varying(64) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| mark_connected boolean NOT NULL, | |
| type character varying(50) NOT NULL, | |
| positions smallint NOT NULL, | |
| cable_id bigint, | |
| device_id bigint NOT NULL, | |
| color character varying(6) NOT NULL, | |
| module_id bigint, | |
| cable_end character varying(1), | |
| _location_id bigint, | |
| _rack_id bigint, | |
| _site_id bigint, | |
| owner_id bigint, | |
| cable_connector smallint, | |
| cable_positions smallint[], | |
| CONSTRAINT dcim_rearport_cable_connector_check CHECK ((cable_connector >= 0)), | |
| CONSTRAINT dcim_rearport_positions_check CHECK ((positions >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_rearport OWNER TO netbox; | |
| -- | |
| -- Name: dcim_rearport_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_rearport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_rearport_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_rearporttemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_rearporttemplate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| 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 bigint, | |
| color character varying(6) NOT NULL, | |
| module_type_id bigint, | |
| CONSTRAINT dcim_rearporttemplate_positions_check CHECK ((positions >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_rearporttemplate OWNER TO netbox; | |
| -- | |
| -- Name: dcim_rearporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_rearporttemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_rearporttemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_region; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_region ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint 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 bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| 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 netbox; | |
| -- | |
| -- Name: dcim_region_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_region ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_region_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_site; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_site ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| slug character varying(100) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| facility character varying(50) NOT NULL, | |
| time_zone character varying(63), | |
| 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), | |
| comments text NOT NULL, | |
| group_id bigint, | |
| region_id bigint, | |
| tenant_id bigint, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_site OWNER TO netbox; | |
| -- | |
| -- Name: dcim_site_asns; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_site_asns ( | |
| id bigint NOT NULL, | |
| site_id bigint NOT NULL, | |
| asn_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.dcim_site_asns OWNER TO netbox; | |
| -- | |
| -- Name: dcim_site_asns_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_site_asns ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_site_asns_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_site_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_site ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_site_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_sitegroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_sitegroup ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint 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 bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT dcim_sitegroup_level_check CHECK ((level >= 0)), | |
| CONSTRAINT dcim_sitegroup_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT dcim_sitegroup_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT dcim_sitegroup_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_sitegroup OWNER TO netbox; | |
| -- | |
| -- Name: dcim_sitegroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_sitegroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_sitegroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_virtualchassis; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_virtualchassis ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| domain character varying(30) NOT NULL, | |
| master_id bigint, | |
| comments text NOT NULL, | |
| description character varying(200) NOT NULL, | |
| member_count bigint NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.dcim_virtualchassis OWNER TO netbox; | |
| -- | |
| -- Name: dcim_virtualchassis_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_virtualchassis ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_virtualchassis_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: dcim_virtualdevicecontext; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.dcim_virtualdevicecontext ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| status character varying(50) NOT NULL, | |
| identifier smallint, | |
| comments text NOT NULL, | |
| device_id bigint, | |
| primary_ip4_id bigint, | |
| primary_ip6_id bigint, | |
| tenant_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT dcim_virtualdevicecontext_identifier_check CHECK ((identifier >= 0)) | |
| ); | |
| ALTER TABLE public.dcim_virtualdevicecontext OWNER TO netbox; | |
| -- | |
| -- Name: dcim_virtualdevicecontext_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.dcim_virtualdevicecontext ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.dcim_virtualdevicecontext_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: django_content_type; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.django_content_type_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: django_migrations; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.django_migrations_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: django_session; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: extras_bookmark; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_bookmark ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| object_id bigint NOT NULL, | |
| object_type_id integer NOT NULL, | |
| user_id bigint NOT NULL, | |
| CONSTRAINT extras_bookmark_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.extras_bookmark OWNER TO netbox; | |
| -- | |
| -- Name: extras_bookmark_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_bookmark ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_bookmark_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_cachedvalue; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_cachedvalue ( | |
| id uuid NOT NULL, | |
| "timestamp" timestamp with time zone NOT NULL, | |
| object_id bigint NOT NULL, | |
| field character varying(200) NOT NULL, | |
| type character varying(30) NOT NULL, | |
| value text NOT NULL, | |
| weight smallint NOT NULL, | |
| object_type_id integer NOT NULL, | |
| CONSTRAINT extras_cachedvalue_object_id_check CHECK ((object_id >= 0)), | |
| CONSTRAINT extras_cachedvalue_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_cachedvalue OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| weight smallint NOT NULL, | |
| description character varying(200) NOT NULL, | |
| is_active boolean NOT NULL, | |
| data jsonb NOT NULL, | |
| data_file_id bigint, | |
| data_path character varying(1000) NOT NULL, | |
| data_source_id bigint, | |
| auto_sync_enabled boolean NOT NULL, | |
| data_synced timestamp with time zone, | |
| profile_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT extras_configcontext_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_configcontext OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_cluster_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_cluster_groups ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| clustergroup_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_cluster_groups OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_cluster_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_cluster_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_cluster_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_cluster_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_cluster_types ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| clustertype_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_cluster_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_cluster_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_cluster_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_cluster_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_clusters; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_clusters ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| cluster_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_clusters OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_clusters_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_clusters ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_clusters_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_device_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_device_types ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| devicetype_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_device_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_device_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_device_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_device_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_locations; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_locations ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| location_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_locations OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_locations_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_locations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_locations_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_platforms; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_platforms ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| platform_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_platforms OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_platforms_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_platforms ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_platforms_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_regions; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_regions ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| region_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_regions OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_regions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_regions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_regions_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_roles; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_roles ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| devicerole_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_roles OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_roles ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_roles_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_site_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_site_groups ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| sitegroup_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_site_groups OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_site_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_site_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_site_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_sites; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_sites ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| site_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_sites OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_sites ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_sites_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_tags; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_tags ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| tag_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_tags OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_tags_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_tenant_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_tenant_groups ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| tenantgroup_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_tenant_groups OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_tenant_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_tenant_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_tenant_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontext_tenants; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontext_tenants ( | |
| id bigint NOT NULL, | |
| configcontext_id bigint NOT NULL, | |
| tenant_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_configcontext_tenants OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontext_tenants_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontext_tenants ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontext_tenants_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configcontextprofile; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configcontextprofile ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| data_path character varying(1000) NOT NULL, | |
| auto_sync_enabled boolean NOT NULL, | |
| data_synced timestamp with time zone, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| schema jsonb, | |
| data_file_id bigint, | |
| data_source_id bigint, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.extras_configcontextprofile OWNER TO netbox; | |
| -- | |
| -- Name: extras_configcontextprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configcontextprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configcontextprofile_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configrevision_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.core_configrevision ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configrevision_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_configtemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_configtemplate ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| data_path character varying(1000) NOT NULL, | |
| data_synced timestamp with time zone, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| template_code text NOT NULL, | |
| environment_params jsonb, | |
| data_file_id bigint, | |
| data_source_id bigint, | |
| auto_sync_enabled boolean NOT NULL, | |
| as_attachment boolean NOT NULL, | |
| file_extension character varying(15) NOT NULL, | |
| file_name character varying(200) NOT NULL, | |
| mime_type character varying(50) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.extras_configtemplate OWNER TO netbox; | |
| -- | |
| -- Name: extras_configtemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_configtemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_configtemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_customfield; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_customfield ( | |
| id bigint 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 numeric(16,4), | |
| validation_maximum numeric(16,4), | |
| validation_regex character varying(500) NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| related_object_type_id integer, | |
| group_name character varying(50) NOT NULL, | |
| search_weight smallint NOT NULL, | |
| is_cloneable boolean NOT NULL, | |
| choice_set_id bigint, | |
| ui_editable character varying(50) NOT NULL, | |
| ui_visible character varying(50) NOT NULL, | |
| comments text NOT NULL, | |
| "unique" boolean NOT NULL, | |
| related_object_filter jsonb, | |
| owner_id bigint, | |
| CONSTRAINT extras_customfield_search_weight_check CHECK ((search_weight >= 0)), | |
| CONSTRAINT extras_customfield_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_customfield OWNER TO netbox; | |
| -- | |
| -- Name: extras_customfield_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_customfield ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_customfield_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_customfield_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_customfield_object_types ( | |
| id bigint NOT NULL, | |
| customfield_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.extras_customfield_object_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_customfield_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_customfield_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_customfield_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_customfieldchoiceset; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_customfieldchoiceset ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| base_choices character varying(50), | |
| extra_choices character varying(100)[], | |
| order_alphabetically boolean NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.extras_customfieldchoiceset OWNER TO netbox; | |
| -- | |
| -- Name: extras_customfieldchoiceset_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_customfieldchoiceset ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_customfieldchoiceset_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_customlink; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_customlink ( | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| link_text text NOT NULL, | |
| link_url text 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, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| enabled boolean NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT extras_customlink_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_customlink OWNER TO netbox; | |
| -- | |
| -- Name: extras_customlink_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_customlink ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_customlink_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_customlink_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_customlink_object_types ( | |
| id bigint NOT NULL, | |
| customlink_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.extras_customlink_object_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_customlink_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_customlink_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_customlink_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_dashboard; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_dashboard ( | |
| id bigint NOT NULL, | |
| layout jsonb NOT NULL, | |
| config jsonb NOT NULL, | |
| user_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_dashboard OWNER TO netbox; | |
| -- | |
| -- Name: extras_dashboard_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_dashboard ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_dashboard_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_eventrule; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_eventrule ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| name character varying(150) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| enabled boolean NOT NULL, | |
| conditions jsonb, | |
| action_type character varying(30) NOT NULL, | |
| action_object_id bigint, | |
| action_data jsonb, | |
| comments text NOT NULL, | |
| action_object_type_id integer NOT NULL, | |
| event_types character varying(50)[] NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT extras_eventrule_action_object_id_check CHECK ((action_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.extras_eventrule OWNER TO netbox; | |
| -- | |
| -- Name: extras_eventrule_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_eventrule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_eventrule_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_eventrule_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_eventrule_object_types ( | |
| id bigint NOT NULL, | |
| eventrule_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.extras_eventrule_object_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_eventrule_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_eventrule_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_eventrule_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_exporttemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_exporttemplate ( | |
| id bigint NOT NULL, | |
| 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, | |
| as_attachment boolean NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| data_file_id bigint, | |
| data_path character varying(1000) NOT NULL, | |
| data_source_id bigint, | |
| auto_sync_enabled boolean NOT NULL, | |
| data_synced timestamp with time zone, | |
| file_name character varying(200) NOT NULL, | |
| environment_params jsonb, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.extras_exporttemplate OWNER TO netbox; | |
| -- | |
| -- Name: extras_exporttemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_exporttemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_exporttemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_exporttemplate_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_exporttemplate_object_types ( | |
| id bigint NOT NULL, | |
| exporttemplate_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.extras_exporttemplate_object_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_exporttemplate_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_exporttemplate_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_exporttemplate_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_imageattachment; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_imageattachment ( | |
| id bigint NOT NULL, | |
| object_id bigint 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, | |
| object_type_id integer NOT NULL, | |
| last_updated timestamp with time zone, | |
| description character varying(200) NOT NULL, | |
| CONSTRAINT extras_imageattachment_image_height_check CHECK ((image_height >= 0)), | |
| CONSTRAINT extras_imageattachment_image_width_check CHECK ((image_width >= 0)), | |
| CONSTRAINT extras_imageattachment_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.extras_imageattachment OWNER TO netbox; | |
| -- | |
| -- Name: extras_imageattachment_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_imageattachment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_imageattachment_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_journalentry; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_journalentry ( | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| assigned_object_id bigint NOT NULL, | |
| created timestamp with time zone, | |
| kind character varying(30) NOT NULL, | |
| comments text NOT NULL, | |
| assigned_object_type_id integer NOT NULL, | |
| created_by_id bigint, | |
| custom_field_data jsonb NOT NULL, | |
| CONSTRAINT extras_journalentry_assigned_object_id_check CHECK ((assigned_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.extras_journalentry OWNER TO netbox; | |
| -- | |
| -- Name: extras_journalentry_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_journalentry ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_journalentry_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_notification; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_notification ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| read timestamp with time zone, | |
| object_id bigint NOT NULL, | |
| event_type character varying(50) NOT NULL, | |
| object_type_id integer NOT NULL, | |
| object_repr character varying(200) NOT NULL, | |
| user_id bigint NOT NULL, | |
| CONSTRAINT extras_notification_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.extras_notification OWNER TO netbox; | |
| -- | |
| -- Name: extras_notification_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_notification ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_notification_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_notificationgroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_notificationgroup ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL | |
| ); | |
| ALTER TABLE public.extras_notificationgroup OWNER TO netbox; | |
| -- | |
| -- Name: extras_notificationgroup_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_notificationgroup_groups ( | |
| id bigint NOT NULL, | |
| notificationgroup_id bigint NOT NULL, | |
| group_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_notificationgroup_groups OWNER TO netbox; | |
| -- | |
| -- Name: extras_notificationgroup_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_notificationgroup_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_notificationgroup_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_notificationgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_notificationgroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_notificationgroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_notificationgroup_users; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_notificationgroup_users ( | |
| id bigint NOT NULL, | |
| notificationgroup_id bigint NOT NULL, | |
| user_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_notificationgroup_users OWNER TO netbox; | |
| -- | |
| -- Name: extras_notificationgroup_users_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_notificationgroup_users ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_notificationgroup_users_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_savedfilter; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_savedfilter ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| weight smallint NOT NULL, | |
| enabled boolean NOT NULL, | |
| shared boolean NOT NULL, | |
| parameters jsonb NOT NULL, | |
| user_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT extras_savedfilter_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_savedfilter OWNER TO netbox; | |
| -- | |
| -- Name: extras_savedfilter_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_savedfilter ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_savedfilter_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_savedfilter_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_savedfilter_object_types ( | |
| id bigint NOT NULL, | |
| savedfilter_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.extras_savedfilter_object_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_savedfilter_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_savedfilter_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_savedfilter_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_script; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_script ( | |
| id bigint NOT NULL, | |
| name character varying(79) NOT NULL, | |
| module_id bigint NOT NULL, | |
| is_executable boolean NOT NULL | |
| ); | |
| ALTER TABLE public.extras_script OWNER TO netbox; | |
| -- | |
| -- Name: extras_script_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_script ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_script_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_subscription; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_subscription ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| object_id bigint NOT NULL, | |
| object_type_id integer NOT NULL, | |
| user_id bigint NOT NULL, | |
| CONSTRAINT extras_subscription_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.extras_subscription OWNER TO netbox; | |
| -- | |
| -- Name: extras_subscription_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_subscription ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_subscription_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_tableconfig; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_tableconfig ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| "table" character varying(100) NOT NULL, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| weight smallint NOT NULL, | |
| enabled boolean NOT NULL, | |
| shared boolean NOT NULL, | |
| columns character varying(100)[] NOT NULL, | |
| ordering character varying(100)[], | |
| object_type_id integer NOT NULL, | |
| user_id bigint, | |
| CONSTRAINT extras_tableconfig_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_tableconfig OWNER TO netbox; | |
| -- | |
| -- Name: extras_tableconfig_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_tableconfig ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_tableconfig_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_tag; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_tag ( | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| color character varying(6) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| weight smallint NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT extras_tag_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.extras_tag OWNER TO netbox; | |
| -- | |
| -- Name: extras_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_tag ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_tag_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_tag_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_tag_object_types ( | |
| id bigint NOT NULL, | |
| tag_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.extras_tag_object_types OWNER TO netbox; | |
| -- | |
| -- Name: extras_tag_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_tag_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_tag_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_taggeditem; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_taggeditem ( | |
| object_id integer NOT NULL, | |
| id bigint NOT NULL, | |
| content_type_id integer NOT NULL, | |
| tag_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.extras_taggeditem OWNER TO netbox; | |
| -- | |
| -- Name: extras_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_taggeditem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_taggeditem_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: extras_webhook; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.extras_webhook ( | |
| id bigint NOT NULL, | |
| name character varying(150) NOT NULL, | |
| payload_url character varying(500) 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), | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.extras_webhook OWNER TO netbox; | |
| -- | |
| -- Name: extras_webhook_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.extras_webhook ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.extras_webhook_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_aggregate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_aggregate ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| prefix cidr NOT NULL, | |
| date_added date, | |
| description character varying(200) NOT NULL, | |
| rir_id bigint NOT NULL, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.ipam_aggregate OWNER TO netbox; | |
| -- | |
| -- Name: ipam_aggregate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_aggregate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_aggregate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_asn; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_asn ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| asn bigint NOT NULL, | |
| description character varying(200) NOT NULL, | |
| rir_id bigint NOT NULL, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.ipam_asn OWNER TO netbox; | |
| -- | |
| -- Name: ipam_asn_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_asn ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_asn_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_asnrange; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_asnrange ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| slug character varying(100) NOT NULL, | |
| start bigint NOT NULL, | |
| "end" bigint NOT NULL, | |
| rir_id bigint NOT NULL, | |
| tenant_id bigint, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.ipam_asnrange OWNER TO netbox; | |
| -- | |
| -- Name: ipam_asnrange_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_asnrange ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_asnrange_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_fhrpgroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_fhrpgroup ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| group_id smallint NOT NULL, | |
| protocol character varying(50) NOT NULL, | |
| auth_type character varying(50), | |
| auth_key character varying(255) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| name character varying(100) NOT NULL, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT ipam_fhrpgroup_group_id_check CHECK ((group_id >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_fhrpgroup OWNER TO netbox; | |
| -- | |
| -- Name: ipam_fhrpgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_fhrpgroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_fhrpgroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_fhrpgroupassignment; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_fhrpgroupassignment ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| id bigint NOT NULL, | |
| interface_id bigint NOT NULL, | |
| priority smallint NOT NULL, | |
| group_id bigint NOT NULL, | |
| interface_type_id integer NOT NULL, | |
| CONSTRAINT ipam_fhrpgroupassignment_interface_id_check CHECK ((interface_id >= 0)), | |
| CONSTRAINT ipam_fhrpgroupassignment_priority_check CHECK ((priority >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_fhrpgroupassignment OWNER TO netbox; | |
| -- | |
| -- Name: ipam_fhrpgroupassignment_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_fhrpgroupassignment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_fhrpgroupassignment_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_ipaddress; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_ipaddress ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| address inet NOT NULL, | |
| status character varying(50) NOT NULL, | |
| role character varying(50), | |
| assigned_object_id bigint, | |
| dns_name character varying(255) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| assigned_object_type_id integer, | |
| nat_inside_id bigint, | |
| tenant_id bigint, | |
| vrf_id bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT ipam_ipaddress_assigned_object_id_check CHECK ((assigned_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_ipaddress OWNER TO netbox; | |
| -- | |
| -- Name: ipam_ipaddress_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_ipaddress ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_ipaddress_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_iprange; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_iprange ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| start_address inet NOT NULL, | |
| end_address inet NOT NULL, | |
| size integer NOT NULL, | |
| status character varying(50) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| role_id bigint, | |
| tenant_id bigint, | |
| vrf_id bigint, | |
| comments text NOT NULL, | |
| mark_utilized boolean NOT NULL, | |
| mark_populated boolean NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT ipam_iprange_size_check CHECK ((size >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_iprange OWNER TO netbox; | |
| -- | |
| -- Name: ipam_iprange_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_iprange ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_iprange_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_prefix; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_prefix ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| prefix cidr NOT NULL, | |
| status character varying(50) NOT NULL, | |
| is_pool boolean NOT NULL, | |
| description character varying(200) NOT NULL, | |
| role_id bigint, | |
| tenant_id bigint, | |
| vlan_id bigint, | |
| vrf_id bigint, | |
| _children bigint NOT NULL, | |
| _depth smallint NOT NULL, | |
| mark_utilized boolean NOT NULL, | |
| comments text NOT NULL, | |
| scope_id bigint, | |
| scope_type_id integer, | |
| _location_id bigint, | |
| _region_id bigint, | |
| _site_id bigint, | |
| _site_group_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT ipam_prefix__children_check CHECK ((_children >= 0)), | |
| CONSTRAINT ipam_prefix__depth_check CHECK ((_depth >= 0)), | |
| CONSTRAINT ipam_prefix_scope_id_check CHECK ((scope_id >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_prefix OWNER TO netbox; | |
| -- | |
| -- Name: ipam_prefix_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_prefix ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_prefix_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_rir; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_rir ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint 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, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.ipam_rir OWNER TO netbox; | |
| -- | |
| -- Name: ipam_rir_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_rir ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_rir_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_role; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_role ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| weight smallint NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint, | |
| comments text NOT NULL, | |
| CONSTRAINT ipam_role_weight_check CHECK ((weight >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_role OWNER TO netbox; | |
| -- | |
| -- Name: ipam_role_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_role ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_role_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_routetarget; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_routetarget ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(21) NOT NULL COLLATE public.natural_sort, | |
| description character varying(200) NOT NULL, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.ipam_routetarget OWNER TO netbox; | |
| -- | |
| -- Name: ipam_routetarget_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_routetarget ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_routetarget_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_service; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_service ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| protocol character varying(50) NOT NULL, | |
| ports integer[] NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| parent_object_id bigint NOT NULL, | |
| parent_object_type_id integer NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT ipam_service_parent_object_id_check CHECK ((parent_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_service OWNER TO netbox; | |
| -- | |
| -- Name: ipam_service_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_service ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_service_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_service_ipaddresses; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_service_ipaddresses ( | |
| id bigint NOT NULL, | |
| service_id bigint NOT NULL, | |
| ipaddress_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.ipam_service_ipaddresses OWNER TO netbox; | |
| -- | |
| -- Name: ipam_service_ipaddresses_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_service_ipaddresses ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_service_ipaddresses_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_servicetemplate; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_servicetemplate ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| protocol character varying(50) NOT NULL, | |
| ports integer[] NOT NULL, | |
| description character varying(200) NOT NULL, | |
| name character varying(100) NOT NULL, | |
| comments text NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.ipam_servicetemplate OWNER TO netbox; | |
| -- | |
| -- Name: ipam_servicetemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_servicetemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_servicetemplate_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vlan; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vlan ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| vid smallint NOT NULL, | |
| name character varying(64) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| group_id bigint, | |
| role_id bigint, | |
| site_id bigint, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| qinq_role character varying(50), | |
| qinq_svlan_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT ipam_vlan_vid_check CHECK ((vid >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_vlan OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vlan_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vlan ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vlan_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vlangroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vlangroup ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| slug character varying(100) NOT NULL, | |
| scope_id bigint, | |
| description character varying(200) NOT NULL, | |
| scope_type_id integer, | |
| vid_ranges int4range[] NOT NULL, | |
| _total_vlan_ids bigint NOT NULL, | |
| tenant_id bigint, | |
| owner_id bigint, | |
| comments text NOT NULL, | |
| CONSTRAINT ipam_vlangroup__total_vlan_ids_check CHECK ((_total_vlan_ids >= 0)), | |
| CONSTRAINT ipam_vlangroup_scope_id_check CHECK ((scope_id >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_vlangroup OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vlangroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vlangroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vlangroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vlantranslationpolicy; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vlantranslationpolicy ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.ipam_vlantranslationpolicy OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vlantranslationpolicy_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vlantranslationpolicy ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vlantranslationpolicy_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vlantranslationrule; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vlantranslationrule ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| local_vid smallint NOT NULL, | |
| remote_vid smallint NOT NULL, | |
| policy_id bigint NOT NULL, | |
| description character varying(200) NOT NULL, | |
| CONSTRAINT ipam_vlantranslationrule_local_vid_check CHECK ((local_vid >= 0)), | |
| CONSTRAINT ipam_vlantranslationrule_remote_vid_check CHECK ((remote_vid >= 0)) | |
| ); | |
| ALTER TABLE public.ipam_vlantranslationrule OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vlantranslationrule_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vlantranslationrule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vlantranslationrule_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vrf; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vrf ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| rd character varying(21), | |
| enforce_unique boolean NOT NULL, | |
| description character varying(200) NOT NULL, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.ipam_vrf OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vrf_export_targets; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vrf_export_targets ( | |
| id bigint NOT NULL, | |
| vrf_id bigint NOT NULL, | |
| routetarget_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.ipam_vrf_export_targets OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vrf_export_targets_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vrf_export_targets ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vrf_export_targets_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vrf_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vrf ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vrf_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: ipam_vrf_import_targets; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.ipam_vrf_import_targets ( | |
| id bigint NOT NULL, | |
| vrf_id bigint NOT NULL, | |
| routetarget_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.ipam_vrf_import_targets OWNER TO netbox; | |
| -- | |
| -- Name: ipam_vrf_import_targets_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.ipam_vrf_import_targets ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.ipam_vrf_import_targets_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: social_auth_association; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.social_auth_association ( | |
| id bigint 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 netbox; | |
| -- | |
| -- Name: social_auth_association_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.social_auth_association ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.social_auth_association_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: social_auth_code; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.social_auth_code ( | |
| id bigint 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 netbox; | |
| -- | |
| -- Name: social_auth_code_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.social_auth_code ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.social_auth_code_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: social_auth_nonce; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.social_auth_nonce ( | |
| id bigint 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 netbox; | |
| -- | |
| -- Name: social_auth_nonce_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.social_auth_nonce ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.social_auth_nonce_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: social_auth_partial; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.social_auth_partial ( | |
| id bigint NOT NULL, | |
| token character varying(32) NOT NULL, | |
| next_step smallint NOT NULL, | |
| backend character varying(32) NOT NULL, | |
| "timestamp" timestamp with time zone NOT NULL, | |
| data jsonb NOT NULL, | |
| CONSTRAINT social_auth_partial_next_step_check CHECK ((next_step >= 0)) | |
| ); | |
| ALTER TABLE public.social_auth_partial OWNER TO netbox; | |
| -- | |
| -- Name: social_auth_partial_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.social_auth_partial ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.social_auth_partial_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: social_auth_usersocialauth; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.social_auth_usersocialauth ( | |
| id bigint NOT NULL, | |
| provider character varying(32) NOT NULL, | |
| uid character varying(255) NOT NULL, | |
| user_id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| modified timestamp with time zone NOT NULL, | |
| extra_data jsonb NOT NULL, | |
| CONSTRAINT user_social_auth_uid_required CHECK ((NOT ((uid)::text = ''::text))) | |
| ); | |
| ALTER TABLE public.social_auth_usersocialauth OWNER TO netbox; | |
| -- | |
| -- Name: social_auth_usersocialauth_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.social_auth_usersocialauth ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.social_auth_usersocialauth_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: taggit_tag; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: taggit_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.taggit_tag ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.taggit_tag_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: taggit_taggeditem; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| 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 netbox; | |
| -- | |
| -- Name: taggit_taggeditem_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.taggit_taggeditem ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.taggit_taggeditem_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_contact; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_contact ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| title character varying(100) NOT NULL, | |
| phone character varying(50) NOT NULL, | |
| email character varying(254) NOT NULL, | |
| address character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| link character varying(200) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.tenancy_contact OWNER TO netbox; | |
| -- | |
| -- Name: tenancy_contact_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_contact_groups ( | |
| id bigint NOT NULL, | |
| contact_id bigint NOT NULL, | |
| contactgroup_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.tenancy_contact_groups OWNER TO netbox; | |
| -- | |
| -- Name: tenancy_contact_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_contact_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_contact_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_contact_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_contact ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_contact_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_contactassignment; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_contactassignment ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| object_id bigint NOT NULL, | |
| priority character varying(50), | |
| contact_id bigint NOT NULL, | |
| object_type_id integer NOT NULL, | |
| role_id bigint NOT NULL, | |
| custom_field_data jsonb NOT NULL, | |
| CONSTRAINT tenancy_contactassignment_object_id_check CHECK ((object_id >= 0)) | |
| ); | |
| ALTER TABLE public.tenancy_contactassignment OWNER TO netbox; | |
| -- | |
| -- Name: tenancy_contactassignment_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_contactassignment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_contactassignment_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_contactgroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_contactgroup ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| 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 bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT tenancy_contactgroup_level_check CHECK ((level >= 0)), | |
| CONSTRAINT tenancy_contactgroup_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT tenancy_contactgroup_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT tenancy_contactgroup_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.tenancy_contactgroup OWNER TO netbox; | |
| -- | |
| -- Name: tenancy_contactgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_contactgroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_contactgroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_contactrole; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_contactrole ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| 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, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.tenancy_contactrole OWNER TO netbox; | |
| -- | |
| -- Name: tenancy_contactrole_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_contactrole ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_contactrole_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_tenant; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_tenant ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| group_id bigint, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.tenancy_tenant OWNER TO netbox; | |
| -- | |
| -- Name: tenancy_tenant_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_tenant ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_tenant_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: tenancy_tenantgroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.tenancy_tenantgroup ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| 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 bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| 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 netbox; | |
| -- | |
| -- Name: tenancy_tenantgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.tenancy_tenantgroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.tenancy_tenantgroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: thumbnail_kvstore; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.thumbnail_kvstore ( | |
| key character varying(200) NOT NULL, | |
| value text NOT NULL | |
| ); | |
| ALTER TABLE public.thumbnail_kvstore OWNER TO netbox; | |
| -- | |
| -- Name: users_group; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_group ( | |
| id bigint NOT NULL, | |
| name character varying(150) NOT NULL, | |
| description character varying(200) NOT NULL | |
| ); | |
| ALTER TABLE public.users_group OWNER TO netbox; | |
| -- | |
| -- Name: users_group_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_group_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_group_object_permissions; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_group_object_permissions ( | |
| id bigint NOT NULL, | |
| objectpermission_id bigint NOT NULL, | |
| group_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.users_group_object_permissions OWNER TO netbox; | |
| -- | |
| -- Name: users_group_object_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_group_object_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_group_object_permissions_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_group_permissions; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_group_permissions ( | |
| id bigint NOT NULL, | |
| group_id bigint NOT NULL, | |
| permission_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.users_group_permissions OWNER TO netbox; | |
| -- | |
| -- Name: users_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_group_permissions_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_objectpermission; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_objectpermission ( | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| enabled boolean NOT NULL, | |
| actions character varying(30)[] NOT NULL, | |
| constraints jsonb | |
| ); | |
| ALTER TABLE public.users_objectpermission OWNER TO netbox; | |
| -- | |
| -- Name: users_objectpermission_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_objectpermission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_objectpermission_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_objectpermission_object_types; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_objectpermission_object_types ( | |
| id bigint NOT NULL, | |
| objectpermission_id bigint NOT NULL, | |
| contenttype_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.users_objectpermission_object_types OWNER TO netbox; | |
| -- | |
| -- Name: users_objectpermission_object_types_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_objectpermission_object_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_objectpermission_object_types_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_owner; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_owner ( | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| group_id bigint | |
| ); | |
| ALTER TABLE public.users_owner OWNER TO netbox; | |
| -- | |
| -- Name: users_owner_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_owner ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_owner_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_owner_user_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_owner_user_groups ( | |
| id bigint NOT NULL, | |
| owner_id bigint NOT NULL, | |
| group_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.users_owner_user_groups OWNER TO netbox; | |
| -- | |
| -- Name: users_owner_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_owner_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_owner_user_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_owner_users; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_owner_users ( | |
| id bigint NOT NULL, | |
| owner_id bigint NOT NULL, | |
| user_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.users_owner_users OWNER TO netbox; | |
| -- | |
| -- Name: users_owner_users_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_owner_users ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_owner_users_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_ownergroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_ownergroup ( | |
| id bigint NOT NULL, | |
| description character varying(200) NOT NULL, | |
| name character varying(100) NOT NULL | |
| ); | |
| ALTER TABLE public.users_ownergroup OWNER TO netbox; | |
| -- | |
| -- Name: users_ownergroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_ownergroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_ownergroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_token; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_token ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone NOT NULL, | |
| expires timestamp with time zone, | |
| plaintext character varying(40), | |
| write_enabled boolean NOT NULL, | |
| description character varying(200) NOT NULL, | |
| user_id bigint NOT NULL, | |
| allowed_ips cidr[], | |
| last_used timestamp with time zone, | |
| enabled boolean NOT NULL, | |
| version smallint NOT NULL, | |
| key character varying(12), | |
| pepper_id smallint, | |
| hmac_digest character varying(64), | |
| CONSTRAINT enforce_version_dependent_fields CHECK ((((hmac_digest IS NULL) AND (key IS NULL) AND (pepper_id IS NULL) AND (plaintext IS NOT NULL) AND (version = 1)) OR ((hmac_digest IS NOT NULL) AND (key IS NOT NULL) AND (pepper_id IS NOT NULL) AND (plaintext IS NULL) AND (version = 2)))), | |
| CONSTRAINT users_token_pepper_id_check CHECK ((pepper_id >= 0)), | |
| CONSTRAINT users_token_version_check CHECK ((version >= 0)) | |
| ); | |
| ALTER TABLE public.users_token OWNER TO netbox; | |
| -- | |
| -- Name: users_token_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_token ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_token_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_user; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_user ( | |
| id bigint NOT NULL, | |
| 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_active boolean NOT NULL, | |
| date_joined timestamp with time zone NOT NULL | |
| ); | |
| ALTER TABLE public.users_user OWNER TO netbox; | |
| -- | |
| -- Name: users_user_groups; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_user_groups ( | |
| id bigint NOT NULL, | |
| user_id bigint NOT NULL, | |
| group_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.users_user_groups OWNER TO netbox; | |
| -- | |
| -- Name: users_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_user_groups_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_user_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_user_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_user_object_permissions; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_user_object_permissions ( | |
| id bigint NOT NULL, | |
| objectpermission_id bigint NOT NULL, | |
| user_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.users_user_object_permissions OWNER TO netbox; | |
| -- | |
| -- Name: users_user_object_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_user_object_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_user_object_permissions_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_user_user_permissions; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_user_user_permissions ( | |
| id bigint NOT NULL, | |
| user_id bigint NOT NULL, | |
| permission_id integer NOT NULL | |
| ); | |
| ALTER TABLE public.users_user_user_permissions OWNER TO netbox; | |
| -- | |
| -- Name: users_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_user_user_permissions_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: users_userconfig; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.users_userconfig ( | |
| id bigint NOT NULL, | |
| data jsonb NOT NULL, | |
| user_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.users_userconfig OWNER TO netbox; | |
| -- | |
| -- Name: users_userconfig_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.users_userconfig ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.users_userconfig_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_cluster; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_cluster ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| comments text NOT NULL, | |
| group_id bigint, | |
| tenant_id bigint, | |
| type_id bigint NOT NULL, | |
| status character varying(50) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| scope_id bigint, | |
| scope_type_id integer, | |
| _location_id bigint, | |
| _region_id bigint, | |
| _site_id bigint, | |
| _site_group_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT virtualization_cluster_scope_id_check CHECK ((scope_id >= 0)) | |
| ); | |
| ALTER TABLE public.virtualization_cluster OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_cluster_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_cluster ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_cluster_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_clustergroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_clustergroup ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.virtualization_clustergroup OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_clustergroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_clustergroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_clustergroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_clustertype; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_clustertype ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| name character varying(100) NOT NULL, | |
| slug character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.virtualization_clustertype OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_clustertype_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_clustertype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_clustertype_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_virtualdisk; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_virtualdisk ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| description character varying(200) NOT NULL, | |
| size integer NOT NULL, | |
| virtual_machine_id bigint NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT virtualization_virtualdisk_size_check CHECK ((size >= 0)) | |
| ); | |
| ALTER TABLE public.virtualization_virtualdisk OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_virtualdisk_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_virtualdisk ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_virtualdisk_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_virtualmachine; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_virtualmachine ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| local_context_data jsonb, | |
| name character varying(64) NOT NULL COLLATE public.natural_sort, | |
| status character varying(50) NOT NULL, | |
| vcpus numeric(6,2), | |
| memory integer, | |
| disk integer, | |
| comments text NOT NULL, | |
| cluster_id bigint, | |
| platform_id bigint, | |
| primary_ip4_id bigint, | |
| primary_ip6_id bigint, | |
| role_id bigint, | |
| tenant_id bigint, | |
| site_id bigint, | |
| device_id bigint, | |
| description character varying(200) NOT NULL, | |
| interface_count bigint NOT NULL, | |
| config_template_id bigint, | |
| virtual_disk_count bigint NOT NULL, | |
| serial character varying(50) NOT NULL, | |
| owner_id bigint, | |
| start_on_boot character varying(32) NOT NULL, | |
| CONSTRAINT virtualization_virtualmachine_disk_check CHECK ((disk >= 0)), | |
| CONSTRAINT virtualization_virtualmachine_memory_check CHECK ((memory >= 0)) | |
| ); | |
| ALTER TABLE public.virtualization_virtualmachine OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_virtualmachine_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_virtualmachine ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_virtualmachine_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_vminterface; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_vminterface ( | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| id bigint NOT NULL, | |
| enabled boolean NOT NULL, | |
| mtu integer, | |
| mode character varying(50), | |
| name character varying(64) NOT NULL, | |
| _name character varying(100) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| parent_id bigint, | |
| untagged_vlan_id bigint, | |
| virtual_machine_id bigint NOT NULL, | |
| bridge_id bigint, | |
| vrf_id bigint, | |
| vlan_translation_policy_id bigint, | |
| qinq_svlan_id bigint, | |
| primary_mac_address_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT virtualization_vminterface_mtu_check CHECK ((mtu >= 0)) | |
| ); | |
| ALTER TABLE public.virtualization_vminterface OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_vminterface_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_vminterface ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_vminterface_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: virtualization_vminterface_tagged_vlans; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.virtualization_vminterface_tagged_vlans ( | |
| id bigint NOT NULL, | |
| vminterface_id bigint NOT NULL, | |
| vlan_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.virtualization_vminterface_tagged_vlans OWNER TO netbox; | |
| -- | |
| -- Name: virtualization_vminterface_tagged_vlans_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.virtualization_vminterface_tagged_vlans ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.virtualization_vminterface_tagged_vlans_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ikepolicy; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ikepolicy ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| version smallint NOT NULL, | |
| mode character varying, | |
| preshared_key text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT vpn_ikepolicy_version_check CHECK ((version >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_ikepolicy OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ikepolicy_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ikepolicy ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ikepolicy_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ikepolicy_proposals; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ikepolicy_proposals ( | |
| id bigint NOT NULL, | |
| ikepolicy_id bigint NOT NULL, | |
| ikeproposal_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.vpn_ikepolicy_proposals OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ikepolicy_proposals_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ikepolicy_proposals ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ikepolicy_proposals_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ikeproposal; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ikeproposal ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| authentication_method character varying NOT NULL, | |
| encryption_algorithm character varying NOT NULL, | |
| authentication_algorithm character varying, | |
| "group" smallint NOT NULL, | |
| sa_lifetime integer, | |
| owner_id bigint, | |
| CONSTRAINT vpn_ikeproposal_group_check CHECK (("group" >= 0)), | |
| CONSTRAINT vpn_ikeproposal_sa_lifetime_check CHECK ((sa_lifetime >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_ikeproposal OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ikeproposal_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ikeproposal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ikeproposal_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ipsecpolicy; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ipsecpolicy ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| pfs_group smallint, | |
| owner_id bigint, | |
| CONSTRAINT vpn_ipsecpolicy_pfs_group_check CHECK ((pfs_group >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_ipsecpolicy OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ipsecpolicy_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ipsecpolicy ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ipsecpolicy_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ipsecpolicy_proposals; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ipsecpolicy_proposals ( | |
| id bigint NOT NULL, | |
| ipsecpolicy_id bigint NOT NULL, | |
| ipsecproposal_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.vpn_ipsecpolicy_proposals OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ipsecpolicy_proposals_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ipsecpolicy_proposals ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ipsecpolicy_proposals_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ipsecprofile; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ipsecprofile ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| mode character varying NOT NULL, | |
| ike_policy_id bigint NOT NULL, | |
| ipsec_policy_id bigint NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.vpn_ipsecprofile OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ipsecprofile_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ipsecprofile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ipsecprofile_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_ipsecproposal; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_ipsecproposal ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| encryption_algorithm character varying, | |
| authentication_algorithm character varying, | |
| sa_lifetime_seconds integer, | |
| sa_lifetime_data integer, | |
| owner_id bigint, | |
| CONSTRAINT vpn_ipsecproposal_sa_lifetime_data_check CHECK ((sa_lifetime_data >= 0)), | |
| CONSTRAINT vpn_ipsecproposal_sa_lifetime_seconds_check CHECK ((sa_lifetime_seconds >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_ipsecproposal OWNER TO netbox; | |
| -- | |
| -- Name: vpn_ipsecproposal_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_ipsecproposal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_ipsecproposal_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_l2vpn; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_l2vpn ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| slug character varying(100) NOT NULL, | |
| type character varying(50) NOT NULL, | |
| identifier bigint, | |
| description character varying(200) NOT NULL, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| status character varying(50) NOT NULL, | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.vpn_l2vpn OWNER TO netbox; | |
| -- | |
| -- Name: vpn_l2vpn_export_targets; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_l2vpn_export_targets ( | |
| id bigint NOT NULL, | |
| l2vpn_id bigint NOT NULL, | |
| routetarget_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.vpn_l2vpn_export_targets OWNER TO netbox; | |
| -- | |
| -- Name: vpn_l2vpn_export_targets_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_l2vpn_export_targets ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_l2vpn_export_targets_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_l2vpn_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_l2vpn ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_l2vpn_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_l2vpn_import_targets; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_l2vpn_import_targets ( | |
| id bigint NOT NULL, | |
| l2vpn_id bigint NOT NULL, | |
| routetarget_id bigint NOT NULL | |
| ); | |
| ALTER TABLE public.vpn_l2vpn_import_targets OWNER TO netbox; | |
| -- | |
| -- Name: vpn_l2vpn_import_targets_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_l2vpn_import_targets ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_l2vpn_import_targets_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_l2vpntermination; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_l2vpntermination ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| assigned_object_id bigint NOT NULL, | |
| assigned_object_type_id integer NOT NULL, | |
| l2vpn_id bigint NOT NULL, | |
| CONSTRAINT vpn_l2vpntermination_assigned_object_id_check CHECK ((assigned_object_id >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_l2vpntermination OWNER TO netbox; | |
| -- | |
| -- Name: vpn_l2vpntermination_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_l2vpntermination ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_l2vpntermination_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_tunnel; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_tunnel ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| description character varying(200) NOT NULL, | |
| comments text NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| status character varying(50) NOT NULL, | |
| group_id bigint, | |
| encapsulation character varying(50) NOT NULL, | |
| tunnel_id bigint, | |
| ipsec_profile_id bigint, | |
| tenant_id bigint, | |
| owner_id bigint, | |
| CONSTRAINT vpn_tunnel_tunnel_id_check CHECK ((tunnel_id >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_tunnel OWNER TO netbox; | |
| -- | |
| -- Name: vpn_tunnel_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_tunnel ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_tunnel_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_tunnelgroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_tunnelgroup ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| 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, | |
| owner_id bigint, | |
| comments text NOT NULL | |
| ); | |
| ALTER TABLE public.vpn_tunnelgroup OWNER TO netbox; | |
| -- | |
| -- Name: vpn_tunnelgroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_tunnelgroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_tunnelgroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: vpn_tunneltermination; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.vpn_tunneltermination ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| role character varying(50) NOT NULL, | |
| termination_id bigint, | |
| termination_type_id integer NOT NULL, | |
| outside_ip_id bigint, | |
| tunnel_id bigint NOT NULL, | |
| CONSTRAINT vpn_tunneltermination_termination_id_check CHECK ((termination_id >= 0)) | |
| ); | |
| ALTER TABLE public.vpn_tunneltermination OWNER TO netbox; | |
| -- | |
| -- Name: vpn_tunneltermination_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.vpn_tunneltermination ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.vpn_tunneltermination_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: wireless_wirelesslan; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.wireless_wirelesslan ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| ssid character varying(32) NOT NULL, | |
| group_id bigint, | |
| description character varying(200) NOT NULL, | |
| auth_cipher character varying(50), | |
| auth_psk character varying(64) NOT NULL, | |
| auth_type character varying(50), | |
| vlan_id bigint, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| status character varying(50) NOT NULL, | |
| _location_id bigint, | |
| _region_id bigint, | |
| _site_id bigint, | |
| _site_group_id bigint, | |
| scope_id bigint, | |
| scope_type_id integer, | |
| owner_id bigint, | |
| CONSTRAINT wireless_wirelesslan_scope_id_check CHECK ((scope_id >= 0)) | |
| ); | |
| ALTER TABLE public.wireless_wirelesslan OWNER TO netbox; | |
| -- | |
| -- Name: wireless_wirelesslan_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.wireless_wirelesslan ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.wireless_wirelesslan_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: wireless_wirelesslangroup; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.wireless_wirelesslangroup ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| name character varying(100) NOT NULL COLLATE public.natural_sort, | |
| 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 bigint, | |
| comments text NOT NULL, | |
| owner_id bigint, | |
| CONSTRAINT wireless_wirelesslangroup_level_check CHECK ((level >= 0)), | |
| CONSTRAINT wireless_wirelesslangroup_lft_check CHECK ((lft >= 0)), | |
| CONSTRAINT wireless_wirelesslangroup_rght_check CHECK ((rght >= 0)), | |
| CONSTRAINT wireless_wirelesslangroup_tree_id_check CHECK ((tree_id >= 0)) | |
| ); | |
| ALTER TABLE public.wireless_wirelesslangroup OWNER TO netbox; | |
| -- | |
| -- Name: wireless_wirelesslangroup_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.wireless_wirelesslangroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.wireless_wirelesslangroup_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Name: wireless_wirelesslink; Type: TABLE; Schema: public; Owner: netbox | |
| -- | |
| CREATE TABLE public.wireless_wirelesslink ( | |
| id bigint NOT NULL, | |
| created timestamp with time zone, | |
| last_updated timestamp with time zone, | |
| custom_field_data jsonb NOT NULL, | |
| ssid character varying(32) NOT NULL, | |
| status character varying(50) NOT NULL, | |
| description character varying(200) NOT NULL, | |
| auth_cipher character varying(50), | |
| auth_psk character varying(64) NOT NULL, | |
| auth_type character varying(50), | |
| _interface_a_device_id bigint, | |
| _interface_b_device_id bigint, | |
| interface_a_id bigint NOT NULL, | |
| interface_b_id bigint NOT NULL, | |
| tenant_id bigint, | |
| comments text NOT NULL, | |
| _abs_distance numeric(13,4), | |
| distance numeric(8,2), | |
| distance_unit character varying(50), | |
| owner_id bigint | |
| ); | |
| ALTER TABLE public.wireless_wirelesslink OWNER TO netbox; | |
| -- | |
| -- Name: wireless_wirelesslink_id_seq; Type: SEQUENCE; Schema: public; Owner: netbox | |
| -- | |
| ALTER TABLE public.wireless_wirelesslink ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( | |
| SEQUENCE NAME public.wireless_wirelesslink_id_seq | |
| START WITH 1 | |
| INCREMENT BY 1 | |
| NO MINVALUE | |
| NO MAXVALUE | |
| CACHE 1 | |
| ); | |
| -- | |
| -- Data for Name: auth_group; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.auth_group (id, name) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: auth_group_permissions; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.auth_group_permissions (id, group_id, permission_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: auth_permission; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.auth_permission (id, name, content_type_id, codename) FROM stdin; | |
| 1 Can add permission 14 add_permission | |
| 2 Can change permission 14 change_permission | |
| 3 Can delete permission 14 delete_permission | |
| 4 Can view permission 14 view_permission | |
| 5 Can add group 15 add_group | |
| 6 Can change group 15 change_group | |
| 7 Can delete group 15 delete_group | |
| 8 Can view group 15 view_group | |
| 9 Can add content type 16 add_contenttype | |
| 10 Can change content type 16 change_contenttype | |
| 11 Can delete content type 16 delete_contenttype | |
| 12 Can view content type 16 view_contenttype | |
| 13 Can add session 17 add_session | |
| 14 Can change session 17 change_session | |
| 15 Can delete session 17 delete_session | |
| 16 Can view session 17 view_session | |
| 17 Can add association 20 add_association | |
| 18 Can change association 20 change_association | |
| 19 Can delete association 20 delete_association | |
| 20 Can view association 20 view_association | |
| 21 Can add code 21 add_code | |
| 22 Can change code 21 change_code | |
| 23 Can delete code 21 delete_code | |
| 24 Can view code 21 view_code | |
| 25 Can add nonce 19 add_nonce | |
| 26 Can change nonce 19 change_nonce | |
| 27 Can delete nonce 19 delete_nonce | |
| 28 Can view nonce 19 view_nonce | |
| 29 Can add user social auth 18 add_usersocialauth | |
| 30 Can change user social auth 18 change_usersocialauth | |
| 31 Can delete user social auth 18 delete_usersocialauth | |
| 32 Can view user social auth 18 view_usersocialauth | |
| 33 Can add partial 22 add_partial | |
| 34 Can change partial 22 change_partial | |
| 35 Can delete partial 22 delete_partial | |
| 36 Can view partial 22 view_partial | |
| 37 Can add kv store 23 add_kvstore | |
| 38 Can change kv store 23 change_kvstore | |
| 39 Can delete kv store 23 delete_kvstore | |
| 40 Can view kv store 23 view_kvstore | |
| 41 Can add tag 24 add_tag | |
| 42 Can change tag 24 change_tag | |
| 43 Can delete tag 24 delete_tag | |
| 44 Can view tag 24 view_tag | |
| 45 Can add tagged item 25 add_taggeditem | |
| 46 Can change tagged item 25 change_taggeditem | |
| 47 Can delete tagged item 25 delete_taggeditem | |
| 48 Can view tagged item 25 view_taggeditem | |
| 49 Can add data source 29 add_datasource | |
| 50 Can change data source 29 change_datasource | |
| 51 Can delete data source 29 delete_datasource | |
| 52 Can view data source 29 view_datasource | |
| 53 Can add data file 30 add_datafile | |
| 54 Can change data file 30 change_datafile | |
| 55 Can delete data file 30 delete_datafile | |
| 56 Can view data file 30 view_datafile | |
| 57 Can add auto sync record 31 add_autosyncrecord | |
| 58 Can change auto sync record 31 change_autosyncrecord | |
| 59 Can delete auto sync record 31 delete_autosyncrecord | |
| 60 Can view auto sync record 31 view_autosyncrecord | |
| 61 Can add managed file 5 add_managedfile | |
| 62 Can change managed file 5 change_managedfile | |
| 63 Can delete managed file 5 delete_managedfile | |
| 64 Can view managed file 5 view_managedfile | |
| 65 Can add job 32 add_job | |
| 66 Can change job 32 change_job | |
| 67 Can delete job 32 delete_job | |
| 68 Can view job 32 view_job | |
| 69 Can add config revision 28 add_configrevision | |
| 70 Can change config revision 28 change_configrevision | |
| 71 Can delete config revision 28 delete_configrevision | |
| 72 Can view config revision 28 view_configrevision | |
| 73 Can add object change 27 add_objectchange | |
| 74 Can change object change 27 change_objectchange | |
| 75 Can delete object change 27 delete_objectchange | |
| 76 Can view object change 27 view_objectchange | |
| 77 Can add object type 26 add_objecttype | |
| 78 Can change object type 26 change_objecttype | |
| 79 Can delete object type 26 delete_objecttype | |
| 80 Can view object type 26 view_objecttype | |
| 81 Can add token 33 add_usertoken | |
| 82 Can change token 33 change_usertoken | |
| 83 Can delete token 33 delete_usertoken | |
| 84 Can view token 33 view_usertoken | |
| 85 Can add circuit 10 add_circuit | |
| 86 Can change circuit 10 change_circuit | |
| 87 Can delete circuit 10 delete_circuit | |
| 88 Can view circuit 10 view_circuit | |
| 89 Can add circuit termination 37 add_circuittermination | |
| 90 Can change circuit termination 37 change_circuittermination | |
| 91 Can delete circuit termination 37 delete_circuittermination | |
| 92 Can view circuit termination 37 view_circuittermination | |
| 93 Can add circuit type 34 add_circuittype | |
| 94 Can change circuit type 34 change_circuittype | |
| 95 Can delete circuit type 34 delete_circuittype | |
| 96 Can view circuit type 34 view_circuittype | |
| 97 Can add provider 38 add_provider | |
| 98 Can change provider 38 change_provider | |
| 99 Can delete provider 38 delete_provider | |
| 100 Can view provider 38 view_provider | |
| 101 Can add provider network 9 add_providernetwork | |
| 102 Can change provider network 9 change_providernetwork | |
| 103 Can delete provider network 9 delete_providernetwork | |
| 104 Can view provider network 9 view_providernetwork | |
| 105 Can add provider account 39 add_provideraccount | |
| 106 Can change provider account 39 change_provideraccount | |
| 107 Can delete provider account 39 delete_provideraccount | |
| 108 Can view provider account 39 view_provideraccount | |
| 109 Can add Circuit group 35 add_circuitgroup | |
| 110 Can change Circuit group 35 change_circuitgroup | |
| 111 Can delete Circuit group 35 delete_circuitgroup | |
| 112 Can view Circuit group 35 view_circuitgroup | |
| 113 Can add Circuit group assignment 36 add_circuitgroupassignment | |
| 114 Can change Circuit group assignment 36 change_circuitgroupassignment | |
| 115 Can delete Circuit group assignment 36 delete_circuitgroupassignment | |
| 116 Can view Circuit group assignment 36 view_circuitgroupassignment | |
| 117 Can add virtual circuit type 40 add_virtualcircuittype | |
| 118 Can change virtual circuit type 40 change_virtualcircuittype | |
| 119 Can delete virtual circuit type 40 delete_virtualcircuittype | |
| 120 Can view virtual circuit type 40 view_virtualcircuittype | |
| 121 Can add circuit 41 add_virtualcircuit | |
| 122 Can change circuit 41 change_virtualcircuit | |
| 123 Can delete circuit 41 delete_virtualcircuit | |
| 124 Can view circuit 41 view_virtualcircuit | |
| 125 Can add virtual circuit termination 42 add_virtualcircuittermination | |
| 126 Can change virtual circuit termination 42 change_virtualcircuittermination | |
| 127 Can delete virtual circuit termination 42 delete_virtualcircuittermination | |
| 128 Can view virtual circuit termination 42 view_virtualcircuittermination | |
| 129 Can add cable 54 add_cable | |
| 130 Can change cable 54 change_cable | |
| 131 Can delete cable 54 delete_cable | |
| 132 Can view cable 54 view_cable | |
| 133 Can add cable path 56 add_cablepath | |
| 134 Can change cable path 56 change_cablepath | |
| 135 Can delete cable path 56 delete_cablepath | |
| 136 Can view cable path 56 view_cablepath | |
| 137 Can add console port 43 add_consoleport | |
| 138 Can change console port 43 change_consoleport | |
| 139 Can delete console port 43 delete_consoleport | |
| 140 Can view console port 43 view_consoleport | |
| 141 Can add console port template 57 add_consoleporttemplate | |
| 142 Can change console port template 57 change_consoleporttemplate | |
| 143 Can delete console port template 57 delete_consoleporttemplate | |
| 144 Can view console port template 57 view_consoleporttemplate | |
| 145 Can add console server port 44 add_consoleserverport | |
| 146 Can change console server port 44 change_consoleserverport | |
| 147 Can delete console server port 44 delete_consoleserverport | |
| 148 Can view console server port 44 view_consoleserverport | |
| 149 Can add console server port template 58 add_consoleserverporttemplate | |
| 150 Can change console server port template 58 change_consoleserverporttemplate | |
| 151 Can delete console server port template 58 delete_consoleserverporttemplate | |
| 152 Can view console server port template 58 view_consoleserverporttemplate | |
| 153 Can add device 12 add_device | |
| 154 Can change device 12 change_device | |
| 155 Can delete device 12 delete_device | |
| 156 Can view device 12 view_device | |
| 157 Can add device bay 51 add_devicebay | |
| 158 Can change device bay 51 change_devicebay | |
| 159 Can delete device bay 51 delete_devicebay | |
| 160 Can view device bay 51 view_devicebay | |
| 161 Can add device bay template 66 add_devicebaytemplate | |
| 162 Can change device bay template 66 change_devicebaytemplate | |
| 163 Can delete device bay template 66 delete_devicebaytemplate | |
| 164 Can view device bay template 66 view_devicebaytemplate | |
| 165 Can add device role 72 add_devicerole | |
| 166 Can change device role 72 change_devicerole | |
| 167 Can delete device role 72 delete_devicerole | |
| 168 Can view device role 72 view_devicerole | |
| 169 Can add device type 71 add_devicetype | |
| 170 Can change device type 71 change_devicetype | |
| 171 Can delete device type 71 delete_devicetype | |
| 172 Can view device type 71 view_devicetype | |
| 173 Can add front port 48 add_frontport | |
| 174 Can change front port 48 change_frontport | |
| 175 Can delete front port 48 delete_frontport | |
| 176 Can view front port 48 view_frontport | |
| 177 Can add front port template 63 add_frontporttemplate | |
| 178 Can change front port template 63 change_frontporttemplate | |
| 179 Can delete front port template 63 delete_frontporttemplate | |
| 180 Can view front port template 63 view_frontporttemplate | |
| 181 Can add interface 7 add_interface | |
| 182 Can change interface 7 change_interface | |
| 183 Can delete interface 7 delete_interface | |
| 184 Can view interface 7 view_interface | |
| 185 Can add interface template 61 add_interfacetemplate | |
| 186 Can change interface template 61 change_interfacetemplate | |
| 187 Can delete interface template 61 delete_interfacetemplate | |
| 188 Can view interface template 61 view_interfacetemplate | |
| 189 Can add inventory item 53 add_inventoryitem | |
| 190 Can change inventory item 53 change_inventoryitem | |
| 191 Can delete inventory item 53 delete_inventoryitem | |
| 192 Can view inventory item 53 view_inventoryitem | |
| 193 Can add location 85 add_location | |
| 194 Can change location 85 change_location | |
| 195 Can delete location 85 delete_location | |
| 196 Can view location 85 view_location | |
| 197 Can add manufacturer 70 add_manufacturer | |
| 198 Can change manufacturer 70 change_manufacturer | |
| 199 Can delete manufacturer 70 delete_manufacturer | |
| 200 Can view manufacturer 70 view_manufacturer | |
| 201 Can add platform 73 add_platform | |
| 202 Can change platform 73 change_platform | |
| 203 Can delete platform 73 delete_platform | |
| 204 Can view platform 73 view_platform | |
| 205 Can add power feed 78 add_powerfeed | |
| 206 Can change power feed 78 change_powerfeed | |
| 207 Can delete power feed 78 delete_powerfeed | |
| 208 Can view power feed 78 view_powerfeed | |
| 209 Can add power outlet 46 add_poweroutlet | |
| 210 Can change power outlet 46 change_poweroutlet | |
| 211 Can delete power outlet 46 delete_poweroutlet | |
| 212 Can view power outlet 46 view_poweroutlet | |
| 213 Can add power outlet template 60 add_poweroutlettemplate | |
| 214 Can change power outlet template 60 change_poweroutlettemplate | |
| 215 Can delete power outlet template 60 delete_poweroutlettemplate | |
| 216 Can view power outlet template 60 view_poweroutlettemplate | |
| 217 Can add power panel 77 add_powerpanel | |
| 218 Can change power panel 77 change_powerpanel | |
| 219 Can delete power panel 77 delete_powerpanel | |
| 220 Can view power panel 77 view_powerpanel | |
| 221 Can add power port 45 add_powerport | |
| 222 Can change power port 45 change_powerport | |
| 223 Can delete power port 45 delete_powerport | |
| 224 Can view power port 45 view_powerport | |
| 225 Can add power port template 59 add_powerporttemplate | |
| 226 Can change power port template 59 change_powerporttemplate | |
| 227 Can delete power port template 59 delete_powerporttemplate | |
| 228 Can view power port template 59 view_powerporttemplate | |
| 229 Can add rack 81 add_rack | |
| 230 Can change rack 81 change_rack | |
| 231 Can delete rack 81 delete_rack | |
| 232 Can view rack 81 view_rack | |
| 233 Can add rack reservation 82 add_rackreservation | |
| 234 Can change rack reservation 82 change_rackreservation | |
| 235 Can delete rack reservation 82 delete_rackreservation | |
| 236 Can view rack reservation 82 view_rackreservation | |
| 237 Can add rack role 80 add_rackrole | |
| 238 Can change rack role 80 change_rackrole | |
| 239 Can delete rack role 80 delete_rackrole | |
| 240 Can view rack role 80 view_rackrole | |
| 241 Can add rear port 49 add_rearport | |
| 242 Can change rear port 49 change_rearport | |
| 243 Can delete rear port 49 delete_rearport | |
| 244 Can view rear port 49 view_rearport | |
| 245 Can add rear port template 64 add_rearporttemplate | |
| 246 Can change rear port template 64 change_rearporttemplate | |
| 247 Can delete rear port template 64 delete_rearporttemplate | |
| 248 Can view rear port template 64 view_rearporttemplate | |
| 249 Can add region 83 add_region | |
| 250 Can change region 83 change_region | |
| 251 Can delete region 83 delete_region | |
| 252 Can view region 83 view_region | |
| 253 Can add site 6 add_site | |
| 254 Can change site 6 change_site | |
| 255 Can delete site 6 delete_site | |
| 256 Can view site 6 view_site | |
| 257 Can add site group 84 add_sitegroup | |
| 258 Can change site group 84 change_sitegroup | |
| 259 Can delete site group 84 delete_sitegroup | |
| 260 Can view site group 84 view_sitegroup | |
| 261 Can add virtual chassis 74 add_virtualchassis | |
| 262 Can change virtual chassis 74 change_virtualchassis | |
| 263 Can delete virtual chassis 74 delete_virtualchassis | |
| 264 Can view virtual chassis 74 view_virtualchassis | |
| 265 Can add module type 68 add_moduletype | |
| 266 Can change module type 68 change_moduletype | |
| 267 Can delete module type 68 delete_moduletype | |
| 268 Can view module type 68 view_moduletype | |
| 269 Can add module bay 50 add_modulebay | |
| 270 Can change module bay 50 change_modulebay | |
| 271 Can delete module bay 50 delete_modulebay | |
| 272 Can view module bay 50 view_modulebay | |
| 273 Can add module 69 add_module | |
| 274 Can change module 69 change_module | |
| 275 Can delete module 69 delete_module | |
| 276 Can view module 69 view_module | |
| 277 Can add inventory item role 52 add_inventoryitemrole | |
| 278 Can change inventory item role 52 change_inventoryitemrole | |
| 279 Can delete inventory item role 52 delete_inventoryitemrole | |
| 280 Can view inventory item role 52 view_inventoryitemrole | |
| 281 Can add inventory item template 67 add_inventoryitemtemplate | |
| 282 Can change inventory item template 67 change_inventoryitemtemplate | |
| 283 Can delete inventory item template 67 delete_inventoryitemtemplate | |
| 284 Can view inventory item template 67 view_inventoryitemtemplate | |
| 285 Can add module bay template 65 add_modulebaytemplate | |
| 286 Can change module bay template 65 change_modulebaytemplate | |
| 287 Can delete module bay template 65 delete_modulebaytemplate | |
| 288 Can view module bay template 65 view_modulebaytemplate | |
| 289 Can add cable termination 55 add_cabletermination | |
| 290 Can change cable termination 55 change_cabletermination | |
| 291 Can delete cable termination 55 delete_cabletermination | |
| 292 Can view cable termination 55 view_cabletermination | |
| 293 Can add virtual device context 75 add_virtualdevicecontext | |
| 294 Can change virtual device context 75 change_virtualdevicecontext | |
| 295 Can delete virtual device context 75 delete_virtualdevicecontext | |
| 296 Can view virtual device context 75 view_virtualdevicecontext | |
| 297 Can add racktype 79 add_racktype | |
| 298 Can change racktype 79 change_racktype | |
| 299 Can delete racktype 79 delete_racktype | |
| 300 Can view racktype 79 view_racktype | |
| 301 Can add MAC address 76 add_macaddress | |
| 302 Can change MAC address 76 change_macaddress | |
| 303 Can delete MAC address 76 delete_macaddress | |
| 304 Can view MAC address 76 view_macaddress | |
| 305 Can add module type profile 8 add_moduletypeprofile | |
| 306 Can change module type profile 8 change_moduletypeprofile | |
| 307 Can delete module type profile 8 delete_moduletypeprofile | |
| 308 Can view module type profile 8 view_moduletypeprofile | |
| 309 Can add port template mapping 62 add_porttemplatemapping | |
| 310 Can change port template mapping 62 change_porttemplatemapping | |
| 311 Can delete port template mapping 62 delete_porttemplatemapping | |
| 312 Can view port template mapping 62 view_porttemplatemapping | |
| 313 Can add port mapping 47 add_portmapping | |
| 314 Can change port mapping 47 change_portmapping | |
| 315 Can delete port mapping 47 delete_portmapping | |
| 316 Can view port mapping 47 view_portmapping | |
| 317 Can add aggregate 93 add_aggregate | |
| 318 Can change aggregate 93 change_aggregate | |
| 319 Can delete aggregate 93 delete_aggregate | |
| 320 Can view aggregate 93 view_aggregate | |
| 321 Can add IP address 97 add_ipaddress | |
| 322 Can change IP address 97 change_ipaddress | |
| 323 Can delete IP address 97 delete_ipaddress | |
| 324 Can view IP address 97 view_ipaddress | |
| 325 Can add prefix 95 add_prefix | |
| 326 Can change prefix 95 change_prefix | |
| 327 Can delete prefix 95 delete_prefix | |
| 328 Can view prefix 95 view_prefix | |
| 329 Can add RIR 92 add_rir | |
| 330 Can change RIR 92 change_rir | |
| 331 Can delete RIR 92 delete_rir | |
| 332 Can view RIR 92 view_rir | |
| 333 Can add role 94 add_role | |
| 334 Can change role 94 change_role | |
| 335 Can delete role 94 delete_role | |
| 336 Can view role 94 view_role | |
| 337 Can add route target 91 add_routetarget | |
| 338 Can change route target 91 change_routetarget | |
| 339 Can delete route target 91 delete_routetarget | |
| 340 Can view route target 91 view_routetarget | |
| 341 Can add VRF 90 add_vrf | |
| 342 Can change VRF 90 change_vrf | |
| 343 Can delete VRF 90 delete_vrf | |
| 344 Can view VRF 90 view_vrf | |
| 345 Can add VLAN group 100 add_vlangroup | |
| 346 Can change VLAN group 100 change_vlangroup | |
| 347 Can delete VLAN group 100 delete_vlangroup | |
| 348 Can view VLAN group 100 view_vlangroup | |
| 349 Can add VLAN 101 add_vlan | |
| 350 Can change VLAN 101 change_vlan | |
| 351 Can delete VLAN 101 delete_vlan | |
| 352 Can view VLAN 101 view_vlan | |
| 353 Can add service 99 add_service | |
| 354 Can change service 99 change_service | |
| 355 Can delete service 99 delete_service | |
| 356 Can view service 99 view_service | |
| 357 Can add IP range 96 add_iprange | |
| 358 Can change IP range 96 change_iprange | |
| 359 Can delete IP range 96 delete_iprange | |
| 360 Can view IP range 96 view_iprange | |
| 361 Can add FHRP group 88 add_fhrpgroup | |
| 362 Can change FHRP group 88 change_fhrpgroup | |
| 363 Can delete FHRP group 88 delete_fhrpgroup | |
| 364 Can view FHRP group 88 view_fhrpgroup | |
| 365 Can add FHRP group assignment 89 add_fhrpgroupassignment | |
| 366 Can change FHRP group assignment 89 change_fhrpgroupassignment | |
| 367 Can delete FHRP group assignment 89 delete_fhrpgroupassignment | |
| 368 Can view FHRP group assignment 89 view_fhrpgroupassignment | |
| 369 Can add ASN 87 add_asn | |
| 370 Can change ASN 87 change_asn | |
| 371 Can delete ASN 87 delete_asn | |
| 372 Can view ASN 87 view_asn | |
| 373 Can add service template 98 add_servicetemplate | |
| 374 Can change service template 98 change_servicetemplate | |
| 375 Can delete service template 98 delete_servicetemplate | |
| 376 Can view service template 98 view_servicetemplate | |
| 377 Can add ASN range 86 add_asnrange | |
| 378 Can change ASN range 86 change_asnrange | |
| 379 Can delete ASN range 86 delete_asnrange | |
| 380 Can view ASN range 86 view_asnrange | |
| 381 Can add VLAN translation policy 102 add_vlantranslationpolicy | |
| 382 Can change VLAN translation policy 102 change_vlantranslationpolicy | |
| 383 Can delete VLAN translation policy 102 delete_vlantranslationpolicy | |
| 384 Can view VLAN translation policy 102 view_vlantranslationpolicy | |
| 385 Can add VLAN translation rule 103 add_vlantranslationrule | |
| 386 Can change VLAN translation rule 103 change_vlantranslationrule | |
| 387 Can delete VLAN translation rule 103 delete_vlantranslationrule | |
| 388 Can view VLAN translation rule 103 view_vlantranslationrule | |
| 389 Can add script 2 add_script | |
| 390 Can change script 2 change_script | |
| 391 Can delete script 2 delete_script | |
| 392 Can view script 2 view_script | |
| 393 Can add config context 107 add_configcontext | |
| 394 Can change config context 107 change_configcontext | |
| 395 Can delete config context 107 delete_configcontext | |
| 396 Can view config context 107 view_configcontext | |
| 397 Can add tag 104 add_tag | |
| 398 Can change tag 104 change_tag | |
| 399 Can delete tag 104 delete_tag | |
| 400 Can view tag 104 view_tag | |
| 401 Can add webhook 1 add_webhook | |
| 402 Can change webhook 1 change_webhook | |
| 403 Can delete webhook 1 delete_webhook | |
| 404 Can view webhook 1 view_webhook | |
| 405 Can add tagged item 105 add_taggeditem | |
| 406 Can change tagged item 105 change_taggeditem | |
| 407 Can delete tagged item 105 delete_taggeditem | |
| 408 Can view tagged item 105 view_taggeditem | |
| 409 Can add journal entry 118 add_journalentry | |
| 410 Can change journal entry 118 change_journalentry | |
| 411 Can delete journal entry 118 delete_journalentry | |
| 412 Can view journal entry 118 view_journalentry | |
| 413 Can add image attachment 117 add_imageattachment | |
| 414 Can change image attachment 117 change_imageattachment | |
| 415 Can delete image attachment 117 delete_imageattachment | |
| 416 Can view image attachment 117 view_imageattachment | |
| 417 Can add export template 114 add_exporttemplate | |
| 418 Can change export template 114 change_exporttemplate | |
| 419 Can delete export template 114 delete_exporttemplate | |
| 420 Can view export template 114 view_exporttemplate | |
| 421 Can add custom link 113 add_customlink | |
| 422 Can change custom link 113 change_customlink | |
| 423 Can delete custom link 113 delete_customlink | |
| 424 Can view custom link 113 view_customlink | |
| 425 Can add custom field 109 add_customfield | |
| 426 Can change custom field 109 change_customfield | |
| 427 Can delete custom field 109 delete_customfield | |
| 428 Can view custom field 109 view_customfield | |
| 429 Can add saved filter 115 add_savedfilter | |
| 430 Can change saved filter 115 change_savedfilter | |
| 431 Can delete saved filter 115 delete_savedfilter | |
| 432 Can view saved filter 115 view_savedfilter | |
| 433 Can add cached value 123 add_cachedvalue | |
| 434 Can change cached value 123 change_cachedvalue | |
| 435 Can delete cached value 123 delete_cachedvalue | |
| 436 Can view cached value 123 view_cachedvalue | |
| 437 Can add config template 108 add_configtemplate | |
| 438 Can change config template 108 change_configtemplate | |
| 439 Can delete config template 108 delete_configtemplate | |
| 440 Can view config template 108 view_configtemplate | |
| 441 Can add dashboard 111 add_dashboard | |
| 442 Can change dashboard 111 change_dashboard | |
| 443 Can delete dashboard 111 delete_dashboard | |
| 444 Can view dashboard 111 view_dashboard | |
| 445 Can add script module 3 add_scriptmodule | |
| 446 Can change script module 3 change_scriptmodule | |
| 447 Can delete script module 3 delete_scriptmodule | |
| 448 Can view script module 3 view_scriptmodule | |
| 449 Can add bookmark 119 add_bookmark | |
| 450 Can change bookmark 119 change_bookmark | |
| 451 Can delete bookmark 119 delete_bookmark | |
| 452 Can view bookmark 119 view_bookmark | |
| 453 Can add custom field choice set 110 add_customfieldchoiceset | |
| 454 Can change custom field choice set 110 change_customfieldchoiceset | |
| 455 Can delete custom field choice set 110 delete_customfieldchoiceset | |
| 456 Can view custom field choice set 110 view_customfieldchoiceset | |
| 457 Can add eventrule 112 add_eventrule | |
| 458 Can change eventrule 112 change_eventrule | |
| 459 Can delete eventrule 112 delete_eventrule | |
| 460 Can view eventrule 112 view_eventrule | |
| 461 Can add notification group 121 add_notificationgroup | |
| 462 Can change notification group 121 change_notificationgroup | |
| 463 Can delete notification group 121 delete_notificationgroup | |
| 464 Can view notification group 121 view_notificationgroup | |
| 465 Can add subscription 122 add_subscription | |
| 466 Can change subscription 122 change_subscription | |
| 467 Can delete subscription 122 delete_subscription | |
| 468 Can view subscription 122 view_subscription | |
| 469 Can add notification 120 add_notification | |
| 470 Can change notification 120 change_notification | |
| 471 Can delete notification 120 delete_notification | |
| 472 Can view notification 120 view_notification | |
| 473 Can add table config 116 add_tableconfig | |
| 474 Can change table config 116 change_tableconfig | |
| 475 Can delete table config 116 delete_tableconfig | |
| 476 Can view table config 116 view_tableconfig | |
| 477 Can add config context profile 106 add_configcontextprofile | |
| 478 Can change config context profile 106 change_configcontextprofile | |
| 479 Can delete config context profile 106 delete_configcontextprofile | |
| 480 Can view config context profile 106 view_configcontextprofile | |
| 481 Can add tenant group 128 add_tenantgroup | |
| 482 Can change tenant group 128 change_tenantgroup | |
| 483 Can delete tenant group 128 delete_tenantgroup | |
| 484 Can view tenant group 128 view_tenantgroup | |
| 485 Can add tenant 129 add_tenant | |
| 486 Can change tenant 129 change_tenant | |
| 487 Can delete tenant 129 delete_tenant | |
| 488 Can view tenant 129 view_tenant | |
| 489 Can add contact role 125 add_contactrole | |
| 490 Can change contact role 125 change_contactrole | |
| 491 Can delete contact role 125 delete_contactrole | |
| 492 Can view contact role 125 view_contactrole | |
| 493 Can add contact group 124 add_contactgroup | |
| 494 Can change contact group 124 change_contactgroup | |
| 495 Can delete contact group 124 delete_contactgroup | |
| 496 Can view contact group 124 view_contactgroup | |
| 497 Can add contact 126 add_contact | |
| 498 Can change contact 126 change_contact | |
| 499 Can delete contact 126 delete_contact | |
| 500 Can view contact 126 view_contact | |
| 501 Can add contact assignment 127 add_contactassignment | |
| 502 Can change contact assignment 127 change_contactassignment | |
| 503 Can delete contact assignment 127 delete_contactassignment | |
| 504 Can view contact assignment 127 view_contactassignment | |
| 505 Can add user 131 add_user | |
| 506 Can change user 131 change_user | |
| 507 Can delete user 131 delete_user | |
| 508 Can view user 131 view_user | |
| 509 Can add User Preferences 132 add_userconfig | |
| 510 Can change User Preferences 132 change_userconfig | |
| 511 Can delete User Preferences 132 delete_userconfig | |
| 512 Can view User Preferences 132 view_userconfig | |
| 513 Can add token 133 add_token | |
| 514 Can change token 133 change_token | |
| 515 Can delete token 133 delete_token | |
| 516 Can view token 133 view_token | |
| 517 Can add permission 134 add_objectpermission | |
| 518 Can change permission 134 change_objectpermission | |
| 519 Can delete permission 134 delete_objectpermission | |
| 520 Can view permission 134 view_objectpermission | |
| 521 Can add group 130 add_group | |
| 522 Can change group 130 change_group | |
| 523 Can delete group 130 delete_group | |
| 524 Can view group 130 view_group | |
| 525 Can add owner group 135 add_ownergroup | |
| 526 Can change owner group 135 change_ownergroup | |
| 527 Can delete owner group 135 delete_ownergroup | |
| 528 Can view owner group 135 view_ownergroup | |
| 529 Can add owner 136 add_owner | |
| 530 Can change owner 136 change_owner | |
| 531 Can delete owner 136 delete_owner | |
| 532 Can view owner 136 view_owner | |
| 533 Can add cluster 139 add_cluster | |
| 534 Can change cluster 139 change_cluster | |
| 535 Can delete cluster 139 delete_cluster | |
| 536 Can view cluster 139 view_cluster | |
| 537 Can add cluster group 138 add_clustergroup | |
| 538 Can change cluster group 138 change_clustergroup | |
| 539 Can delete cluster group 138 delete_clustergroup | |
| 540 Can view cluster group 138 view_clustergroup | |
| 541 Can add cluster type 137 add_clustertype | |
| 542 Can change cluster type 137 change_clustertype | |
| 543 Can delete cluster type 137 delete_clustertype | |
| 544 Can view cluster type 137 view_clustertype | |
| 545 Can add virtual machine 13 add_virtualmachine | |
| 546 Can change virtual machine 13 change_virtualmachine | |
| 547 Can delete virtual machine 13 delete_virtualmachine | |
| 548 Can view virtual machine 13 view_virtualmachine | |
| 549 Can add interface 11 add_vminterface | |
| 550 Can change interface 11 change_vminterface | |
| 551 Can delete interface 11 delete_vminterface | |
| 552 Can view interface 11 view_vminterface | |
| 553 Can add virtual disk 140 add_virtualdisk | |
| 554 Can change virtual disk 140 change_virtualdisk | |
| 555 Can delete virtual disk 140 delete_virtualdisk | |
| 556 Can view virtual disk 140 view_virtualdisk | |
| 557 Can add IKE proposal 141 add_ikeproposal | |
| 558 Can change IKE proposal 141 change_ikeproposal | |
| 559 Can delete IKE proposal 141 delete_ikeproposal | |
| 560 Can view IKE proposal 141 view_ikeproposal | |
| 561 Can add IKE policy 142 add_ikepolicy | |
| 562 Can change IKE policy 142 change_ikepolicy | |
| 563 Can delete IKE policy 142 delete_ikepolicy | |
| 564 Can view IKE policy 142 view_ikepolicy | |
| 565 Can add IPSec proposal 143 add_ipsecproposal | |
| 566 Can change IPSec proposal 143 change_ipsecproposal | |
| 567 Can delete IPSec proposal 143 delete_ipsecproposal | |
| 568 Can view IPSec proposal 143 view_ipsecproposal | |
| 569 Can add IPSec policy 144 add_ipsecpolicy | |
| 570 Can change IPSec policy 144 change_ipsecpolicy | |
| 571 Can delete IPSec policy 144 delete_ipsecpolicy | |
| 572 Can view IPSec policy 144 view_ipsecpolicy | |
| 573 Can add IPSec profile 145 add_ipsecprofile | |
| 574 Can change IPSec profile 145 change_ipsecprofile | |
| 575 Can delete IPSec profile 145 delete_ipsecprofile | |
| 576 Can view IPSec profile 145 view_ipsecprofile | |
| 577 Can add tunnel group 148 add_tunnelgroup | |
| 578 Can change tunnel group 148 change_tunnelgroup | |
| 579 Can delete tunnel group 148 delete_tunnelgroup | |
| 580 Can view tunnel group 148 view_tunnelgroup | |
| 581 Can add tunnel 149 add_tunnel | |
| 582 Can change tunnel 149 change_tunnel | |
| 583 Can delete tunnel 149 delete_tunnel | |
| 584 Can view tunnel 149 view_tunnel | |
| 585 Can add tunnel termination 150 add_tunneltermination | |
| 586 Can change tunnel termination 150 change_tunneltermination | |
| 587 Can delete tunnel termination 150 delete_tunneltermination | |
| 588 Can view tunnel termination 150 view_tunneltermination | |
| 589 Can add L2VPN 146 add_l2vpn | |
| 590 Can change L2VPN 146 change_l2vpn | |
| 591 Can delete L2VPN 146 delete_l2vpn | |
| 592 Can view L2VPN 146 view_l2vpn | |
| 593 Can add L2VPN termination 147 add_l2vpntermination | |
| 594 Can change L2VPN termination 147 change_l2vpntermination | |
| 595 Can delete L2VPN termination 147 delete_l2vpntermination | |
| 596 Can view L2VPN termination 147 view_l2vpntermination | |
| 597 Can add Wireless LAN Group 151 add_wirelesslangroup | |
| 598 Can change Wireless LAN Group 151 change_wirelesslangroup | |
| 599 Can delete Wireless LAN Group 151 delete_wirelesslangroup | |
| 600 Can view Wireless LAN Group 151 view_wirelesslangroup | |
| 601 Can add Wireless LAN 152 add_wirelesslan | |
| 602 Can change Wireless LAN 152 change_wirelesslan | |
| 603 Can delete Wireless LAN 152 delete_wirelesslan | |
| 604 Can view Wireless LAN 152 view_wirelesslan | |
| 605 Can add wireless link 153 add_wirelesslink | |
| 606 Can change wireless link 153 change_wirelesslink | |
| 607 Can delete wireless link 153 delete_wirelesslink | |
| 608 Can view wireless link 153 view_wirelesslink | |
| 609 Access admin page 154 view | |
| \. | |
| -- | |
| -- Data for Name: circuits_circuit; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_circuit (created, last_updated, custom_field_data, id, cid, status, install_date, commit_rate, description, comments, provider_id, tenant_id, termination_a_id, termination_z_id, type_id, termination_date, provider_account_id, _abs_distance, distance, distance_unit, owner_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_circuitgroup; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_circuitgroup (id, created, last_updated, custom_field_data, name, slug, description, tenant_id, owner_id, comments) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_circuitgroupassignment; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_circuitgroupassignment (id, created, last_updated, custom_field_data, priority, member_id, group_id, member_type_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_circuittermination; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_circuittermination (created, last_updated, id, mark_connected, term_side, port_speed, upstream_speed, xconnect_id, pp_info, description, cable_id, circuit_id, _provider_network_id, custom_field_data, cable_end, termination_id, termination_type_id, _location_id, _region_id, _site_id, _site_group_id, cable_connector, cable_positions) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_circuittype; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_circuittype (created, last_updated, custom_field_data, id, name, slug, description, color, owner_id, comments) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_provider; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_provider (created, last_updated, custom_field_data, id, name, slug, comments, description, owner_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_provider_asns; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_provider_asns (id, provider_id, asn_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_provideraccount; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_provideraccount (id, created, last_updated, custom_field_data, description, comments, account, name, provider_id, owner_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_providernetwork; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_providernetwork (created, last_updated, custom_field_data, id, name, description, comments, provider_id, service_id, owner_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_virtualcircuit; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_virtualcircuit (id, created, last_updated, custom_field_data, description, comments, cid, status, provider_account_id, provider_network_id, type_id, tenant_id, owner_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_virtualcircuittermination; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_virtualcircuittermination (id, created, last_updated, custom_field_data, role, description, interface_id, virtual_circuit_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: circuits_virtualcircuittype; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.circuits_virtualcircuittype (id, created, last_updated, custom_field_data, name, slug, description, color, owner_id, comments) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_autosyncrecord; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_autosyncrecord (id, object_id, datafile_id, object_type_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_configrevision; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_configrevision (id, created, comment, data, active) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_datafile; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_datafile (id, created, last_updated, path, size, hash, data, source_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_datasource; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_datasource (id, created, last_updated, custom_field_data, description, comments, name, type, source_url, status, enabled, ignore_rules, parameters, last_synced, sync_interval, owner_id) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_job; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_job (id, object_id, name, created, scheduled, "interval", started, completed, status, data, job_id, object_type_id, user_id, error, log_entries) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_managedfile; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_managedfile (id, data_path, data_synced, created, last_updated, file_root, file_path, data_file_id, data_source_id, auto_sync_enabled) FROM stdin; | |
| \. | |
| -- | |
| -- Data for Name: core_objectchange; Type: TABLE DATA; Schema: public; Owner: netbox | |
| -- | |
| COPY public.core_objectchange (id, "time", user_name, request_id, action, changed_object_id, related_object_id, object_repr, prechange_data, postchange_data, changed_object_type_id, related_object_type_id, user_id, message) FROM stdin; | |
| 1 2026-02-16 20:24:08.643018+00 radmin 1aa3b3b4-c8f9-4d37-a3e1-d72b7fb01668 create 1 \N default-devices \N {"asns": [], "name": "default-devices", "slug": "default-devices", "tags": [], "group": null, "owner": null, "region": null, "status": "active", "tenant": null, "created": "2026-02-16T20:24:08.630Z", "comments": "", "facility": "", "latitude": null, "longitude": null, "time_zone": null, "description": "", "custom_fields": {}, "physical_address": "", "shipping_address": ""} 6 \N 1 | |
| 2 2026-02-16 20:24:30.030074+00 radmin 7e2c837a-e46d-4bca-8786-da25a4dc9384 create 1 \N ndevice \N {"lft": 1, "name": "ndevice", "rght": 2, "slug": "ndevice", "tags": [], "color": "9e9e9e", "level": 0, "owner": null, "parent": null, "created": "2026-02-16T20:24:30.023Z", "tree_id": 1, "vm_role": true, "comments": "", "description": "", "custom_fields": {}, "config_template": null} 72 \N 1 | |
| 3 2026-02-16 20:24:50.948827+00 radmin c28b8974-f4ad-44a1-9411-40f455d117b9 create 1 \N default-man \N {"name": "default-man", "slug": "default-man", "tags": [], "owner": null, "created": "2026-02-16T20:24:50.944Z", "comments": "", "description": "", "custom_fields": {}} 70 \N 1 | |
| 4 2026-02-16 20:24:57.776566+00 radmin a19b3862-5379-41dc-805b-b1839d8caf2f create 1 \N newmodel \N {"slug": "newmodel", "tags": [], "model": "newmodel", "owner": null, "weight": null, "airflow": null, "created": "2026-02-16T20:24:57.771Z", "comments": "", "u_height": "1.0", "rear_image": "", "_abs_weight": null, "description": "", "front_image": "", "part_number": "", "weight_unit": null, "device_count": 0, "manufacturer": 1, "custom_fields": {}, "is_full_depth": true, "subdevice_role": null, "default_platform": null, "exclude_from_utilization": false, "interface_template_count": 0, "rear_port_template_count": 0, "device_bay_template_count": 0, "front_port_template_count": 0, "module_bay_template_count": 0, "power_port_template_count": 0, "console_port_template_count": 0, "power_outlet_template_count": 0, "inventory_item_template_count": 0, "console_server_port_template_count": 0} 71 \N 1 | |
| 5 2026-02-16 20:29:09.930878+00 radmin 699bf917-6c38-41ad-bf80-8757d43e99ab create 1 \N Unknown-10.0.1.10 \N {"face": "", "name": "Unknown-10.0.1.10", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:09.925Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.10", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 6 2026-02-16 20:29:10.169452+00 radmin b30a2a43-f155-4454-8ae6-5e68c33b1ac2 create 1 1 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 1, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:10.153Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 7 2026-02-16 20:29:10.663933+00 radmin a92aeaef-ce4b-48b3-a609-dd9f0d317e8a create 2 \N Unknown-10.0.1.100 \N {"face": "", "name": "Unknown-10.0.1.100", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:10.660Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.100", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 8 2026-02-16 20:29:10.894278+00 radmin ece4eb46-f46e-4283-ab3a-45a038eb6646 create 2 2 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 2, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:10.881Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 9 2026-02-16 20:29:11.358628+00 radmin b94e729d-9b68-4c20-a654-970e5f3e712d create 3 \N Unknown-10.0.1.104 \N {"face": "", "name": "Unknown-10.0.1.104", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:11.355Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.104", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 439 2026-02-16 21:54:31.628442+00 radmin b13654bb-9078-4cf2-9c01-03fd7b3f439e create 13 \N D4:F5:EF:72:C7:D0 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:31.625Z", "comments": "", "description": "", "mac_address": "D4:F5:EF:72:C7:D0", "custom_fields": {}, "assigned_object_id": 161, "assigned_object_type": 7} 76 \N 1 | |
| 10 2026-02-16 20:29:11.561205+00 radmin 2153593d-f1e8-4d28-9d55-e54595665c41 create 3 3 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 3, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:11.550Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 11 2026-02-16 20:29:12.391872+00 radmin e9103580-4937-476a-921c-eb8d591d28d6 create 4 \N Unknown-10.0.1.106 \N {"face": "", "name": "Unknown-10.0.1.106", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:12.388Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.106", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 12 2026-02-16 20:29:12.593951+00 radmin 1045f933-1c21-4592-8529-dfb757dbcef0 create 4 4 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 4, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:12.584Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 13 2026-02-16 20:29:12.966205+00 radmin f3731ee4-329b-43c7-b6e0-10c438224dd5 create 5 \N Unknown-10.0.1.107 \N {"face": "", "name": "Unknown-10.0.1.107", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:12.964Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.107", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 14 2026-02-16 20:29:13.092855+00 radmin 69db2e38-9bf8-4357-81af-f87aa6638f4e create 5 5 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 5, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:13.087Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 15 2026-02-16 20:29:45.596787+00 radmin 856aa997-b42b-467b-9d25-972c8228c192 create 6 \N Unknown-10.0.1.101 \N {"face": "", "name": "Unknown-10.0.1.101", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:45.593Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.101", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 16 2026-02-16 20:29:45.841369+00 radmin 40eb0e0b-e9c6-4e29-a515-0aed3cf6f711 create 6 6 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 6, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:45.825Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 956 2026-02-16 23:18:37.92142+00 radmin 79391570-ecd5-40d5-9da0-585ae7276a4a delete 88 \N FC:EC:DA:10:E0:48 {"tags": [], "owner": null, "created": "2026-02-16T21:58:54.853Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:10:E0:48", "custom_fields": {}, "assigned_object_id": 237, "assigned_object_type": 7} \N 76 \N 1 | |
| 17 2026-02-16 20:29:46.579468+00 radmin 024feec2-2f79-49b9-b960-867eda422aa9 create 7 \N Unknown-10.0.1.105 \N {"face": "", "name": "Unknown-10.0.1.105", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:46.575Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.105", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 18 2026-02-16 20:29:46.805448+00 radmin db8fe8de-7f42-49f6-8d18-d34f52c98619 create 7 7 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 7, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:46.792Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 19 2026-02-16 20:29:47.498475+00 radmin 275ef77d-327e-4289-9176-eebbbea8606d create 8 \N Unknown-10.0.1.112 \N {"face": "", "name": "Unknown-10.0.1.112", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:47.496Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.112", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 20 2026-02-16 20:29:47.634625+00 radmin 6a559bcf-f3c1-4b2c-b2fb-89d8fd0a6d92 create 8 8 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 8, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:47.628Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 21 2026-02-16 20:29:47.932409+00 radmin 786dff51-6fe9-409d-b998-db76faa3319a create 9 \N Unknown-10.0.1.116 \N {"face": "", "name": "Unknown-10.0.1.116", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:47.930Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.116", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 22 2026-02-16 20:29:48.065423+00 radmin 9c8745d5-b103-4a82-8f17-ce4543485855 create 9 9 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 9, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:48.060Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 23 2026-02-16 20:29:48.375752+00 radmin 15e34c6e-5ed9-4f30-859b-fc10d3eccd2f create 10 \N Unknown-10.0.1.12 \N {"face": "", "name": "Unknown-10.0.1.12", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:48.373Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.12", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 1089 2026-02-16 23:18:44.4006+00 radmin 79391570-ecd5-40d5-9da0-585ae7276a4a delete 6 \N 2C:4D:54:30:BC:BD {"tags": [], "owner": null, "created": "2026-02-16T21:02:44.306Z", "comments": "", "description": "", "mac_address": "2C:4D:54:30:BC:BD", "custom_fields": {}, "assigned_object_id": 154, "assigned_object_type": 7} \N 76 \N 1 | |
| 24 2026-02-16 20:29:48.50766+00 radmin f88ce028-73a4-4896-a3ad-9e344262580e create 10 10 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 10, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:48.502Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 25 2026-02-16 20:29:48.835027+00 radmin 6de3658f-3438-4566-a25d-bf9579ee05d5 create 11 \N Unknown-10.0.1.124 \N {"face": "", "name": "Unknown-10.0.1.124", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:48.832Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.124", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 26 2026-02-16 20:29:49.018766+00 radmin e535ccca-de37-4e37-adbd-96d9b08417fd create 11 11 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 11, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:49.008Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 27 2026-02-16 20:29:49.817882+00 radmin 6a19367d-30c7-4cba-bc0b-9e0856fe0fa0 create 12 \N Unknown-10.0.1.128 \N {"face": "", "name": "Unknown-10.0.1.128", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:49.816Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.128", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 28 2026-02-16 20:29:49.942407+00 radmin 677ba527-f726-4c68-8d10-045aa5984343 create 12 12 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 12, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:49.937Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 29 2026-02-16 20:29:50.232889+00 radmin 641b5200-4381-4cb8-8b5f-f6a075cfda87 create 13 \N Unknown-10.0.1.13 \N {"face": "", "name": "Unknown-10.0.1.13", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:50.231Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.13", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 30 2026-02-16 20:29:50.358306+00 radmin fa2de521-cee1-4a1f-a698-a298eb62fc5d create 13 13 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 13, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:50.353Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 31 2026-02-16 20:29:50.655297+00 radmin b5097a06-c8bd-4030-96e9-3bf6c8d3c150 create 14 \N Unknown-10.0.1.131 \N {"face": "", "name": "Unknown-10.0.1.131", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:50.653Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.131", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 32 2026-02-16 20:29:50.791897+00 radmin 28e13b25-22b3-46b4-b412-40c8ee072c5d create 14 14 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 14, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:50.785Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 33 2026-02-16 20:29:51.15227+00 radmin 8131c14a-840f-4b86-8375-8d8542344149 create 15 \N Unknown-10.0.1.133 \N {"face": "", "name": "Unknown-10.0.1.133", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:51.148Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.133", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 34 2026-02-16 20:29:51.366764+00 radmin f55807cb-c6dd-428e-945b-feea5b96bce5 create 15 15 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 15, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:51.354Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 35 2026-02-16 20:29:51.839885+00 radmin 16e7315c-eebe-4084-82a2-6bedf8f45e83 create 16 \N Unknown-10.0.1.137 \N {"face": "", "name": "Unknown-10.0.1.137", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:51.835Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.137", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 36 2026-02-16 20:29:52.059465+00 radmin 9d21d416-e3af-4884-916f-e2a0ff215b9e create 16 16 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 16, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:52.046Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 37 2026-02-16 20:29:52.534357+00 radmin cabd474b-711f-4e63-b070-96bcf9a7300d create 17 \N Unknown-10.0.1.14 \N {"face": "", "name": "Unknown-10.0.1.14", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:52.531Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.14", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 38 2026-02-16 20:29:52.738422+00 radmin 6ced4fdf-1e5f-416f-8dcb-b7c8f742dbd5 create 17 17 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 17, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:52.727Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 39 2026-02-16 20:29:53.181848+00 radmin 3f44c3a6-f803-45db-8d63-8d8639669d43 create 18 \N Unknown-10.0.1.15 \N {"face": "", "name": "Unknown-10.0.1.15", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:53.179Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.15", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 40 2026-02-16 20:29:53.329277+00 radmin 18ab2b02-204f-450d-bd09-5dd033f2ad52 create 18 18 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 18, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:53.324Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 41 2026-02-16 20:29:53.613768+00 radmin 430655f4-a516-42fa-8453-da51370f5182 create 19 \N Unknown-10.0.1.152 \N {"face": "", "name": "Unknown-10.0.1.152", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:53.612Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.152", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 42 2026-02-16 20:29:53.735479+00 radmin 938dba60-1fef-4820-8b45-f037e2ac0a38 create 19 19 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 19, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:53.730Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 43 2026-02-16 20:29:54.045448+00 radmin d212fe7c-b54b-468b-b65e-298a9d72d5a6 create 20 \N Unknown-10.0.1.154 \N {"face": "", "name": "Unknown-10.0.1.154", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:54.043Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.154", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 44 2026-02-16 20:29:54.198782+00 radmin dc7dbeba-ccd4-49c1-9c17-289b60110715 create 20 20 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 20, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:54.192Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 45 2026-02-16 20:29:54.50522+00 radmin 0d4903a7-ed82-471c-ab77-5f7f80c2623b create 21 \N Unknown-10.0.1.156 \N {"face": "", "name": "Unknown-10.0.1.156", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:54.503Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.156", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 46 2026-02-16 20:29:54.642357+00 radmin 482cde0b-cda4-47ac-a6f1-5085820eab18 create 21 21 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 21, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:54.636Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 47 2026-02-16 20:29:54.995785+00 radmin 8ad3f264-e733-472c-88ef-99f6952c9964 create 22 \N Unknown-10.0.1.158 \N {"face": "", "name": "Unknown-10.0.1.158", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:54.992Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.158", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 48 2026-02-16 20:29:55.200427+00 radmin 7e80e632-b98f-4720-8d75-a5e67cdc828d create 22 22 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 22, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:55.189Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 49 2026-02-16 20:29:55.616859+00 radmin 5d440418-7df8-4450-b25d-43abd58b270d create 23 \N Unknown-10.0.1.16 \N {"face": "", "name": "Unknown-10.0.1.16", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:55.614Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.16", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 50 2026-02-16 20:29:55.782898+00 radmin 095bb951-9abd-413a-aa1c-63f055af7fba create 23 23 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 23, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:55.776Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 51 2026-02-16 20:29:56.108583+00 radmin 6349c762-f523-48c8-945f-6734d57e2706 create 24 \N Unknown-10.0.1.160 \N {"face": "", "name": "Unknown-10.0.1.160", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:56.106Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.160", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 52 2026-02-16 20:29:56.25127+00 radmin ff25d79b-eaf4-470e-8274-3efcd6e8f920 create 24 24 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 24, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:56.245Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 53 2026-02-16 20:29:56.568484+00 radmin 9421ea39-446c-4000-9729-7fb4a4ff9b2f create 25 \N Unknown-10.0.1.162 \N {"face": "", "name": "Unknown-10.0.1.162", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:56.566Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.162", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 54 2026-02-16 20:29:56.708348+00 radmin 9928beac-ef3b-4c91-8903-3e2b331e38dc create 25 25 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 25, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:56.702Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 55 2026-02-16 20:29:57.085436+00 radmin 0ddc694c-540b-4407-8b69-180fc803e8b4 create 26 \N Unknown-10.0.1.164 \N {"face": "", "name": "Unknown-10.0.1.164", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:57.081Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.164", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 56 2026-02-16 20:29:57.268223+00 radmin 4d5f69c3-e962-4446-bb34-ed3d39c8d4df create 26 26 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 26, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:57.261Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 57 2026-02-16 20:29:57.958047+00 radmin 36efb11a-14fe-4b9a-a620-4df9b2275de4 create 27 \N Unknown-10.0.1.165 \N {"face": "", "name": "Unknown-10.0.1.165", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:57.956Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.165", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 58 2026-02-16 20:29:58.088855+00 radmin cd5bacf5-0cf8-4bd9-8ffb-c01839b71c06 create 27 27 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 27, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:58.082Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 59 2026-02-16 20:29:58.393906+00 radmin 885c31ab-b715-40f8-af1e-91d6f96b3e89 create 28 \N Unknown-10.0.1.169 \N {"face": "", "name": "Unknown-10.0.1.169", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:58.392Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.169", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 60 2026-02-16 20:29:58.527014+00 radmin 9d17573c-4794-47d3-be49-ad01fbffd877 create 28 28 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 28, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:58.521Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 61 2026-02-16 20:29:58.828357+00 radmin 317c1281-cb18-4016-88d7-7844b9d69ca6 create 29 \N Unknown-10.0.1.17 \N {"face": "", "name": "Unknown-10.0.1.17", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:58.826Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.17", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 62 2026-02-16 20:29:58.957986+00 radmin 87af4e17-955a-4457-af81-d5fff6a2c913 create 29 29 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 29, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:58.952Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 63 2026-02-16 20:29:59.317387+00 radmin eda9b984-bd7c-49cf-a2e8-6db753aed0da create 30 \N Unknown-10.0.1.170 \N {"face": "", "name": "Unknown-10.0.1.170", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:59.313Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.170", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 64 2026-02-16 20:29:59.542644+00 radmin 05c8fc4e-b535-438f-bca6-a26c462cca26 create 30 30 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 30, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:59.531Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 65 2026-02-16 20:29:59.893744+00 radmin 5caf7caf-854c-49e8-98b7-003a02948144 create 31 \N Unknown-10.0.1.172 \N {"face": "", "name": "Unknown-10.0.1.172", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:59.891Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.172", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 66 2026-02-16 20:30:00.025931+00 radmin e8b9d36e-c8f5-471b-b4d9-0d16e3f8e048 create 31 31 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 31, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:00.020Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 67 2026-02-16 20:30:00.402298+00 radmin f6206ec2-f9f9-4caf-8077-ab11262d582e create 32 \N Unknown-10.0.1.174 \N {"face": "", "name": "Unknown-10.0.1.174", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:00.398Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.174", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 68 2026-02-16 20:30:00.613745+00 radmin f7321dfc-5d50-4501-94d1-1ac3985fc058 create 32 32 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 32, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:00.604Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 69 2026-02-16 20:30:00.956886+00 radmin bc12dd57-0ec0-410c-b376-047dbcabe0d7 create 33 \N Unknown-10.0.1.175 \N {"face": "", "name": "Unknown-10.0.1.175", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:00.955Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.175", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 70 2026-02-16 20:30:01.078076+00 radmin 1dbc3a2b-ffb4-4c1a-91a7-c10f3f081d18 create 33 33 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 33, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:01.073Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 71 2026-02-16 20:30:01.391179+00 radmin 3c7c1264-32a7-424f-b914-b343deda4a99 create 34 \N Unknown-10.0.1.176 \N {"face": "", "name": "Unknown-10.0.1.176", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:01.388Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.176", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 72 2026-02-16 20:30:01.536245+00 radmin 37e47c06-81c3-49bd-8bd5-9747e12ae863 create 34 34 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 34, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:01.529Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 73 2026-02-16 20:30:01.965779+00 radmin bda4f600-e1fd-455b-a9ae-9e97295060e3 create 35 \N Unknown-10.0.1.177 \N {"face": "", "name": "Unknown-10.0.1.177", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:01.962Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.177", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 74 2026-02-16 20:30:02.178428+00 radmin 7fa405fb-67ef-416f-841c-25e376ef8128 create 35 35 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 35, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:02.166Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 75 2026-02-16 20:30:02.636688+00 radmin 58553ebd-1ab6-4059-bca9-4fa253cd6f13 create 36 \N Unknown-10.0.1.178 \N {"face": "", "name": "Unknown-10.0.1.178", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:02.633Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.178", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 76 2026-02-16 20:30:02.808918+00 radmin 8f35bf3b-2c1e-43e9-b762-65e5faea5aca create 36 36 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 36, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:02.801Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 77 2026-02-16 20:30:03.165697+00 radmin a75fefd2-3d4a-405e-a92f-efbbb9c6decf create 37 \N Unknown-10.0.1.179 \N {"face": "", "name": "Unknown-10.0.1.179", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:03.162Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.179", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 78 2026-02-16 20:30:03.340808+00 radmin 050f2dc4-612d-44f1-bc0d-d4102899d9d7 create 37 37 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 37, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:03.333Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 79 2026-02-16 20:30:03.735754+00 radmin 18cf7b63-a928-4621-9364-b7f67c58ceaa create 38 \N Unknown-10.0.1.18 \N {"face": "", "name": "Unknown-10.0.1.18", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:03.732Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.18", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 80 2026-02-16 20:30:03.925017+00 radmin 61ba7609-571d-47bc-88cf-29597ac8365e create 38 38 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 38, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:03.916Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 81 2026-02-16 20:30:04.341362+00 radmin afbcdfb8-9ab1-45d1-803a-7d029cabcb57 create 39 \N Unknown-10.0.1.180 \N {"face": "", "name": "Unknown-10.0.1.180", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:04.337Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.180", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 82 2026-02-16 20:30:04.555099+00 radmin a127b698-bc13-4877-8a4d-20dd5ac220d0 create 39 39 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 39, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:04.543Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 83 2026-02-16 20:30:05.005697+00 radmin 2cc28bdc-270b-4393-8d02-e7949ef118ba create 40 \N Unknown-10.0.1.182 \N {"face": "", "name": "Unknown-10.0.1.182", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:05.001Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.182", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 84 2026-02-16 20:30:05.156658+00 radmin 5df8aa54-75c3-4731-8095-7d01b5540038 create 40 40 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 40, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:05.151Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 85 2026-02-16 20:30:05.446282+00 radmin 66ede311-6bd6-40f5-a485-d9fbcfdbe2ca create 41 \N Unknown-10.0.1.183 \N {"face": "", "name": "Unknown-10.0.1.183", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:05.444Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.183", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 86 2026-02-16 20:30:05.578462+00 radmin 9e171929-01a0-4f71-b2a4-28570737de22 create 41 41 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 41, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:05.573Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 87 2026-02-16 20:30:06.344718+00 radmin 7ed4d2c0-5567-46cf-9e9a-7f04eabe837e create 42 \N Unknown-10.0.1.184 \N {"face": "", "name": "Unknown-10.0.1.184", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:06.342Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.184", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 88 2026-02-16 20:30:06.471062+00 radmin d135ef53-213a-438b-bf75-fd23ffc7e425 create 42 42 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 42, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:06.466Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 89 2026-02-16 20:30:06.759108+00 radmin 3be07841-fb6f-4805-8fdc-8b263fc8bd80 create 43 \N Unknown-10.0.1.185 \N {"face": "", "name": "Unknown-10.0.1.185", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:06.757Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.185", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 90 2026-02-16 20:30:06.886663+00 radmin a67de07a-8f0c-41db-93fd-0ec184deefd4 create 43 43 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 43, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:06.881Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 91 2026-02-16 20:30:07.19278+00 radmin 0779ca97-a063-4389-8768-c7cbc3c65068 create 44 \N Unknown-10.0.1.187 \N {"face": "", "name": "Unknown-10.0.1.187", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:07.191Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.187", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 92 2026-02-16 20:30:07.32996+00 radmin 6ce4be33-56c9-40ec-8cc4-9d2361d1f396 create 44 44 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 44, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:07.324Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 93 2026-02-16 20:30:07.699582+00 radmin 5494e04c-2a6b-4be9-afac-c92e0627b96c create 45 \N Unknown-10.0.1.188 \N {"face": "", "name": "Unknown-10.0.1.188", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:07.695Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.188", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 94 2026-02-16 20:30:07.913903+00 radmin af823eb9-20a0-4e18-ad5b-b37e1bef84fb create 45 45 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 45, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:07.904Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 95 2026-02-16 20:30:08.36173+00 radmin 43c163ee-d115-4c34-a3f8-7a189adc9e57 create 46 \N Unknown-10.0.1.189 \N {"face": "", "name": "Unknown-10.0.1.189", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:08.358Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.189", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 96 2026-02-16 20:30:08.569797+00 radmin 2eceb08e-0f47-4ae0-87cc-2eff091e0065 create 46 46 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 46, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:08.563Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 97 2026-02-16 20:30:08.967212+00 radmin bca6999e-be88-4df9-9ebd-ea5c9df92750 create 47 \N Unknown-10.0.1.19 \N {"face": "", "name": "Unknown-10.0.1.19", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:08.963Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.19", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 98 2026-02-16 20:30:09.164879+00 radmin cc8205dc-caa8-47eb-aaa7-1481fc019b5c create 47 47 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 47, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:09.157Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 99 2026-02-16 20:30:09.474594+00 radmin 30f9dcac-769e-4786-a315-309b73c68f8d create 48 \N Unknown-10.0.1.190 \N {"face": "", "name": "Unknown-10.0.1.190", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:09.472Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.190", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 100 2026-02-16 20:30:09.599685+00 radmin 68e82129-18a1-4a0d-8a5f-cd31794ea79c create 48 48 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 48, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:09.595Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 101 2026-02-16 20:30:09.892809+00 radmin 7f402b2f-c41d-4f9e-991d-cc411040af91 create 49 \N Unknown-10.0.1.191 \N {"face": "", "name": "Unknown-10.0.1.191", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:09.890Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.191", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 102 2026-02-16 20:30:10.038868+00 radmin c029dbde-ae9c-42f3-9a06-bad8f35cac9c create 49 49 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 49, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:10.032Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 103 2026-02-16 20:30:10.473093+00 radmin 4432e297-7058-43d4-8917-53ee3b2673d7 create 50 \N Unknown-10.0.1.194 \N {"face": "", "name": "Unknown-10.0.1.194", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:10.468Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.194", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 104 2026-02-16 20:30:10.698256+00 radmin ace8b081-cff9-43d0-930a-83ef3eb3b5a2 create 50 50 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 50, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:10.687Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 105 2026-02-16 20:30:11.115485+00 radmin dffcfa48-a94e-4e9c-aaf2-9127e068ec72 create 51 \N Unknown-10.0.1.195 \N {"face": "", "name": "Unknown-10.0.1.195", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:11.112Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.195", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 106 2026-02-16 20:30:11.303774+00 radmin 701f3201-1c7d-4dce-aa5c-3478d1f7f001 create 51 51 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 51, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:11.294Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 107 2026-02-16 20:30:11.752574+00 radmin ce4474b0-74ff-4d12-9d60-e6b93b962d09 create 52 \N Unknown-10.0.1.196 \N {"face": "", "name": "Unknown-10.0.1.196", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:11.748Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.196", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 108 2026-02-16 20:30:11.939834+00 radmin 75e6fa64-5ac5-408f-b9b8-27488cbd9abc create 52 52 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 52, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:11.931Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 109 2026-02-16 20:30:12.347324+00 radmin e9d5c0b2-a5bc-4680-899e-742c79bad46c create 53 \N Unknown-10.0.1.197 \N {"face": "", "name": "Unknown-10.0.1.197", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:12.343Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.197", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 110 2026-02-16 20:30:12.568027+00 radmin bd098fc0-3d62-49d0-99aa-b09e1d2eff68 create 53 53 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 53, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:12.556Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 111 2026-02-16 20:30:13.033609+00 radmin 7f08c629-bd7b-4a3d-a127-d569a1c1f2e6 create 54 \N Unknown-10.0.1.198 \N {"face": "", "name": "Unknown-10.0.1.198", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:13.030Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.198", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 112 2026-02-16 20:30:13.220895+00 radmin 8a38b216-8ddb-43e1-89aa-f80b2560ea14 create 54 54 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 54, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:13.213Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 113 2026-02-16 20:30:13.651579+00 radmin 80784208-9eed-4c3b-a68b-25d23b7ed9d4 create 55 \N Unknown-10.0.1.199 \N {"face": "", "name": "Unknown-10.0.1.199", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:13.647Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.199", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 114 2026-02-16 20:30:13.868339+00 radmin 6c8fd387-7943-4405-b894-e840ac152524 create 55 55 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 55, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:13.856Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 115 2026-02-16 20:30:14.316798+00 radmin 75fb34ac-0a57-4de7-93f9-fd6b3b10443f create 56 \N Unknown-10.0.1.2 \N {"face": "", "name": "Unknown-10.0.1.2", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:14.313Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.2", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 116 2026-02-16 20:30:14.494211+00 radmin 52430ed8-7db9-4f42-8103-018e35b524d4 create 56 56 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 56, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:14.486Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 117 2026-02-16 20:30:15.246714+00 radmin 1413a211-18d4-496a-bd9f-b4406a4638d7 create 57 \N Unknown-10.0.1.20 \N {"face": "", "name": "Unknown-10.0.1.20", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:15.244Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.20", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 118 2026-02-16 20:30:15.377755+00 radmin e0744da5-0799-4750-9f8c-189fd02de917 create 57 57 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 57, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:15.372Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 119 2026-02-16 20:30:15.685031+00 radmin 0ba0b338-6397-47dc-9474-4cfe6cbb6540 create 58 \N Unknown-10.0.1.200 \N {"face": "", "name": "Unknown-10.0.1.200", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:15.683Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.200", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 120 2026-02-16 20:30:15.818524+00 radmin 222915b0-570f-4dd5-b4e6-74c639db5224 create 58 58 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 58, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:15.812Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 121 2026-02-16 20:30:16.19855+00 radmin 0d033202-a222-42b7-b62c-0fd47d009e5e create 59 \N Unknown-10.0.1.202 \N {"face": "", "name": "Unknown-10.0.1.202", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:16.194Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.202", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 122 2026-02-16 20:30:16.421384+00 radmin 131cbaef-a239-4461-b138-22d1e9c4477f create 59 59 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 59, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:16.411Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 123 2026-02-16 20:30:16.885366+00 radmin 423370e5-f723-460f-b98f-77290debb720 create 60 \N Unknown-10.0.1.205 \N {"face": "", "name": "Unknown-10.0.1.205", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:16.881Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.205", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 124 2026-02-16 20:30:17.043586+00 radmin 35337dcf-2b2e-46e5-add4-09b62cfde099 create 60 60 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 60, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:17.038Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 125 2026-02-16 20:30:17.334151+00 radmin 1fc5f261-e4c0-4ad9-93fb-76a056431ca1 create 61 \N Unknown-10.0.1.207 \N {"face": "", "name": "Unknown-10.0.1.207", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:17.332Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.207", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 126 2026-02-16 20:30:17.467794+00 radmin 95336e49-b7ad-4ada-bbf2-852a9d0a8790 create 61 61 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 61, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:17.461Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 127 2026-02-16 20:30:17.838699+00 radmin f58c4faa-d0e4-40cd-8b64-bdcc42ce8a4b create 62 \N Unknown-10.0.1.208 \N {"face": "", "name": "Unknown-10.0.1.208", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:17.834Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.208", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 128 2026-02-16 20:30:18.060498+00 radmin 790d08a3-c323-4a39-b682-a5878b814a2d create 62 62 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 62, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:18.048Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 129 2026-02-16 20:30:18.543618+00 radmin 825cd068-fbd9-4374-9420-0cfc434188fa create 63 \N Unknown-10.0.1.209 \N {"face": "", "name": "Unknown-10.0.1.209", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:18.539Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.209", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 130 2026-02-16 20:30:18.754249+00 radmin 8a7762a5-95e5-4fc1-b4a2-3511cd05fccd create 63 63 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 63, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:18.746Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 131 2026-02-16 20:30:19.166802+00 radmin 86cefd21-5ed8-4810-aa71-57e20cb99692 create 64 \N Unknown-10.0.1.21 \N {"face": "", "name": "Unknown-10.0.1.21", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:19.162Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.21", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 132 2026-02-16 20:30:19.383522+00 radmin 6e0fba55-bcae-4ad3-897a-20659070cc29 create 64 64 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 64, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:19.371Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 133 2026-02-16 20:30:19.80625+00 radmin f92190e5-338d-46d9-ad55-e271a88ced00 create 65 \N Unknown-10.0.1.211 \N {"face": "", "name": "Unknown-10.0.1.211", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:19.803Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.211", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 134 2026-02-16 20:30:19.941549+00 radmin fa8a2b0e-f9f1-4e82-87de-3706ec2a507d create 65 65 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 65, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:19.935Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 135 2026-02-16 20:30:20.293062+00 radmin 1c731507-f1ba-4ba9-9d47-f5a30f4ed9b8 create 66 \N Unknown-10.0.1.212 \N {"face": "", "name": "Unknown-10.0.1.212", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:20.288Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.212", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 136 2026-02-16 20:30:20.514725+00 radmin a98b79d0-809d-4b55-8507-f491e4e2ee7b create 66 66 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 66, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:20.501Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 137 2026-02-16 20:30:20.946043+00 radmin 0d880380-27d4-40d9-9889-ac3b4d9ab7e0 create 67 \N Unknown-10.0.1.213 \N {"face": "", "name": "Unknown-10.0.1.213", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:20.943Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.213", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 138 2026-02-16 20:30:21.08308+00 radmin 7039b03b-7b06-42d7-91cc-6635cb2e0a07 create 67 67 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 67, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:21.078Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 139 2026-02-16 20:30:21.377681+00 radmin a19ef46b-3a53-418a-b80e-e0e79215087a create 68 \N Unknown-10.0.1.214 \N {"face": "", "name": "Unknown-10.0.1.214", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:21.375Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.214", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 140 2026-02-16 20:30:21.501258+00 radmin 5e4002e4-5874-442b-85c1-c4c274e2ac31 create 68 68 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 68, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:21.496Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 141 2026-02-16 20:30:21.79708+00 radmin 56b7c702-ac74-478d-b7c0-0dca95fb041a create 69 \N Unknown-10.0.1.215 \N {"face": "", "name": "Unknown-10.0.1.215", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:21.795Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.215", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 142 2026-02-16 20:30:21.915375+00 radmin 6589ed80-75d7-41ef-bec2-6dcd489609fd create 69 69 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 69, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:21.910Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 143 2026-02-16 20:30:22.224188+00 radmin 0daf2d1d-5d3f-4542-9a90-c895f17bdb5c create 70 \N Unknown-10.0.1.216 \N {"face": "", "name": "Unknown-10.0.1.216", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:22.221Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.216", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 144 2026-02-16 20:30:22.407104+00 radmin 3c9e7dee-d78f-480e-8439-804754e845a4 create 70 70 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 70, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:22.394Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 145 2026-02-16 20:30:22.874953+00 radmin c56c4b9d-58a6-4f09-affc-754d4f82770b create 71 \N Unknown-10.0.1.217 \N {"face": "", "name": "Unknown-10.0.1.217", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:22.871Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.217", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 146 2026-02-16 20:30:23.079953+00 radmin 27d3330f-363a-4870-a888-c1506eb76f3c create 71 71 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 71, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:23.071Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 147 2026-02-16 20:30:23.857851+00 radmin 7fe36309-23ef-491f-a1cf-eb2d23640561 create 72 \N Unknown-10.0.1.218 \N {"face": "", "name": "Unknown-10.0.1.218", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:23.856Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.218", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 148 2026-02-16 20:30:23.991657+00 radmin dc0a31a7-00ec-4aea-86f2-e62b8471b932 create 72 72 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 72, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:23.985Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 149 2026-02-16 20:30:24.297162+00 radmin e883559b-5921-45ca-9b54-3745cd0ab427 create 73 \N Unknown-10.0.1.22 \N {"face": "", "name": "Unknown-10.0.1.22", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:24.295Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.22", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 150 2026-02-16 20:30:24.424213+00 radmin 41e814d4-4793-4606-99f5-9d2a1e3b8317 create 73 73 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 73, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:24.418Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 151 2026-02-16 20:30:24.726228+00 radmin c615d2b3-2b10-44fa-b5e0-453597b9b3f2 create 74 \N Unknown-10.0.1.220 \N {"face": "", "name": "Unknown-10.0.1.220", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:24.724Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.220", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 152 2026-02-16 20:30:24.867014+00 radmin 7bd813c5-fd55-43d3-8cb4-7a820f5d7b9e create 74 74 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 74, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:24.861Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 153 2026-02-16 20:30:25.217245+00 radmin 31efda82-c9dc-4238-a184-53a5b6a20e2f create 75 \N Unknown-10.0.1.221 \N {"face": "", "name": "Unknown-10.0.1.221", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:25.213Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.221", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 154 2026-02-16 20:30:25.437007+00 radmin b5e4409f-c782-44b5-95ce-73cab31f4068 create 75 75 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 75, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:25.425Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 155 2026-02-16 20:30:25.899994+00 radmin fa5289f3-9022-4c1d-b6c3-38612c8b011e create 76 \N Unknown-10.0.1.236 \N {"face": "", "name": "Unknown-10.0.1.236", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:25.896Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.236", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 156 2026-02-16 20:30:26.052109+00 radmin 9b05c792-29e8-4e97-8b3b-a7b6d75aa867 create 76 76 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 76, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:26.046Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 157 2026-02-16 20:30:26.422893+00 radmin a3aa04b8-80ee-42e7-9731-906c99d397ed create 77 \N Unknown-10.0.1.24 \N {"face": "", "name": "Unknown-10.0.1.24", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:26.419Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.24", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 158 2026-02-16 20:30:26.646732+00 radmin b60f57d8-cf8b-4c65-9171-f16c91db9c06 create 77 77 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 77, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:26.634Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 159 2026-02-16 20:30:27.114953+00 radmin 97193293-551a-4f62-8318-a62943700b6e create 78 \N Unknown-10.0.1.25 \N {"face": "", "name": "Unknown-10.0.1.25", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:27.111Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.25", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 160 2026-02-16 20:30:27.331738+00 radmin 7f13fb2f-014e-4bc8-b181-aafd13030a7d create 78 78 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 78, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:27.321Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 161 2026-02-16 20:30:27.779336+00 radmin f4ef920e-6f61-4f90-a921-36fe8b3e6aa7 create 79 \N Unknown-10.0.1.250 \N {"face": "", "name": "Unknown-10.0.1.250", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:27.775Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.250", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 162 2026-02-16 20:30:27.995937+00 radmin 727fdced-29ad-44ca-a481-fe9d4ecafb02 create 79 79 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 79, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:27.984Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 163 2026-02-16 20:30:28.35942+00 radmin c6a4d9d0-e982-46b7-8091-cd6b843ec0f8 create 80 \N Unknown-10.0.1.26 \N {"face": "", "name": "Unknown-10.0.1.26", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:28.357Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.26", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 164 2026-02-16 20:30:28.496163+00 radmin e63cec05-b99d-43f0-afde-77908011c24d create 80 80 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 80, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:28.490Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 165 2026-02-16 20:30:28.850024+00 radmin 8b74d59e-770d-4237-825d-93f9f1e60aae create 81 \N Unknown-10.0.1.27 \N {"face": "", "name": "Unknown-10.0.1.27", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:28.846Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.27", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 166 2026-02-16 20:30:29.027541+00 radmin 8d1e1bd6-023d-414b-842a-4ee2a7acd033 create 81 81 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 81, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:29.018Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 167 2026-02-16 20:30:29.349947+00 radmin 7fcdceb9-cd0f-405b-8209-f46c38227584 create 82 \N Unknown-10.0.1.28 \N {"face": "", "name": "Unknown-10.0.1.28", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:29.348Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.28", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 168 2026-02-16 20:30:29.476184+00 radmin e8a4a052-c4c6-4206-9213-8747550b29a0 create 82 82 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 82, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:29.471Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 169 2026-02-16 20:30:29.780488+00 radmin 3ae407c3-d8d1-43b4-9f9e-849d3c66660a create 83 \N Unknown-10.0.1.29 \N {"face": "", "name": "Unknown-10.0.1.29", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:29.778Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.29", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 170 2026-02-16 20:30:29.931972+00 radmin 3d757882-ca65-4fa4-8cbd-592d8ba5dbfd create 83 83 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 83, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:29.924Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 171 2026-02-16 20:30:30.361703+00 radmin cf8a6839-fb57-44f5-a15f-7e96684afe89 create 84 \N Unknown-10.0.1.3 \N {"face": "", "name": "Unknown-10.0.1.3", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:30.357Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.3", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 172 2026-02-16 20:30:30.535788+00 radmin 517b0d23-287f-4cdb-a626-ff344ef756fc create 84 84 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 84, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:30.530Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 173 2026-02-16 20:30:30.846314+00 radmin 0517c6b7-b74a-4098-bee6-e2506aecda69 create 85 \N Unknown-10.0.1.31 \N {"face": "", "name": "Unknown-10.0.1.31", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:30.844Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.31", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 174 2026-02-16 20:30:30.9846+00 radmin 0558f236-e80c-4617-beb9-0dc0fe0333d3 create 85 85 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 85, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:30.978Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 175 2026-02-16 20:30:31.293284+00 radmin a4f1788c-1b0a-4f1f-8b57-45c587d354b4 create 86 \N Unknown-10.0.1.32 \N {"face": "", "name": "Unknown-10.0.1.32", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:31.291Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.32", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 176 2026-02-16 20:30:31.420343+00 radmin 7d959d63-0929-41ad-9903-32e553ac6b9e create 86 86 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 86, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:31.415Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 177 2026-02-16 20:30:32.106314+00 radmin 6d299cda-337f-4a30-9323-9a47da1ac78d create 87 \N Unknown-10.0.1.33 \N {"face": "", "name": "Unknown-10.0.1.33", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:32.104Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.33", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 178 2026-02-16 20:30:32.226086+00 radmin 716620b7-9572-4795-9f49-9e5f89ea36b9 create 87 87 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 87, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:32.221Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 179 2026-02-16 20:30:32.518331+00 radmin 40d17eb4-369c-42f7-801b-84ccde2b2c3b create 88 \N Unknown-10.0.1.34 \N {"face": "", "name": "Unknown-10.0.1.34", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:32.516Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.34", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 180 2026-02-16 20:30:32.643372+00 radmin 1c81aff9-f277-40e7-b2fd-eccce422a4b9 create 88 88 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 88, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:32.637Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 181 2026-02-16 20:30:32.930781+00 radmin b5e1ec52-e05f-4dc6-bfc7-d010a787bcf5 create 89 \N Unknown-10.0.1.35 \N {"face": "", "name": "Unknown-10.0.1.35", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:32.928Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.35", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 182 2026-02-16 20:30:33.052976+00 radmin a3f8393b-bd67-4a2e-a284-53301e77e125 create 89 89 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 89, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:33.048Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 183 2026-02-16 20:30:33.338339+00 radmin b90f8dcc-2092-4a5d-8cf1-841d5a492cb5 create 90 \N Unknown-10.0.1.36 \N {"face": "", "name": "Unknown-10.0.1.36", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:33.336Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.36", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 184 2026-02-16 20:30:33.462181+00 radmin b07a78a4-9ce2-4ce1-84aa-fe4cc9bffe9e create 90 90 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 90, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:33.455Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 185 2026-02-16 20:30:33.757576+00 radmin 7faac49d-ad29-47cf-bb97-20d707fcb95c create 91 \N Unknown-10.0.1.37 \N {"face": "", "name": "Unknown-10.0.1.37", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:33.754Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.37", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 186 2026-02-16 20:30:33.886046+00 radmin 80f3a84a-94ed-4ff0-9d42-19da089a55fa create 91 91 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 91, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:33.881Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 187 2026-02-16 20:30:34.177471+00 radmin 1b7a7c15-1ea7-4912-98fd-2ece2371d7ec create 92 \N Unknown-10.0.1.38 \N {"face": "", "name": "Unknown-10.0.1.38", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:34.175Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.38", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 188 2026-02-16 20:30:34.300602+00 radmin 820c536a-d690-437b-bb53-df7acbcc3b27 create 92 92 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 92, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:34.295Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 189 2026-02-16 20:30:34.59835+00 radmin b32f36fd-9e04-4a55-9edf-76c3912d6dae create 93 \N Unknown-10.0.1.39 \N {"face": "", "name": "Unknown-10.0.1.39", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:34.596Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.39", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 190 2026-02-16 20:30:34.72193+00 radmin bea20d15-56aa-4e3d-be9b-8b5d1e486157 create 93 93 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 93, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:34.716Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 191 2026-02-16 20:30:35.02704+00 radmin c115899f-123c-4858-8dd3-e8a588bd31fb create 94 \N Unknown-10.0.1.4 \N {"face": "", "name": "Unknown-10.0.1.4", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:35.025Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.4", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 192 2026-02-16 20:30:35.155874+00 radmin 3a929c31-5a37-4085-94b0-a604cd93effe create 94 94 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 94, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:35.150Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 193 2026-02-16 20:30:35.459735+00 radmin de3fccac-1c90-4520-8476-b49c302a7484 create 95 \N Unknown-10.0.1.40 \N {"face": "", "name": "Unknown-10.0.1.40", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:35.457Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.40", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 194 2026-02-16 20:30:35.590176+00 radmin 75f79acd-4719-4e08-bfb2-4862381c0591 create 95 95 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 95, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:35.583Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 195 2026-02-16 20:30:35.895998+00 radmin aa0d7f81-00ba-4be9-a406-536d0e76a203 create 96 \N Unknown-10.0.1.41 \N {"face": "", "name": "Unknown-10.0.1.41", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:35.894Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.41", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 196 2026-02-16 20:30:36.032062+00 radmin 5ff22bd8-18ef-41a8-a4c8-fc1eeabe629b create 96 96 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 96, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:36.026Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 197 2026-02-16 20:30:36.4563+00 radmin 340990be-cd4e-4cb9-ad93-617b4ec42eef create 97 \N Unknown-10.0.1.43 \N {"face": "", "name": "Unknown-10.0.1.43", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:36.452Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.43", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 198 2026-02-16 20:30:36.677247+00 radmin 27e85a4c-a2c3-42e4-b1cf-8eb12fde1604 create 97 97 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 97, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:36.664Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 199 2026-02-16 20:30:37.144395+00 radmin 4441d2db-e5b7-479c-8890-315ec603e868 create 98 \N Unknown-10.0.1.44 \N {"face": "", "name": "Unknown-10.0.1.44", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:37.140Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.44", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 200 2026-02-16 20:30:37.349307+00 radmin d5d7ea1d-582e-471a-9c2c-1d2b9ae394d9 create 98 98 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 98, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:37.340Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 201 2026-02-16 20:30:37.797429+00 radmin d6816bf8-8462-4a90-a2c7-107a00b4b70c create 99 \N Unknown-10.0.1.45 \N {"face": "", "name": "Unknown-10.0.1.45", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:37.793Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.45", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 202 2026-02-16 20:30:37.971488+00 radmin eb471a16-c7e8-443d-813c-650fed68e3ce create 99 99 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 99, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:37.964Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 203 2026-02-16 20:30:38.358869+00 radmin 1c01dc00-0d98-492a-acbc-7a28e426ae14 create 100 \N Unknown-10.0.1.46 \N {"face": "", "name": "Unknown-10.0.1.46", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:38.354Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.46", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 204 2026-02-16 20:30:38.576199+00 radmin b74eb5cb-90fb-4d01-a77e-5f36bf77bbd9 create 100 100 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 100, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:38.564Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 205 2026-02-16 20:30:39.043668+00 radmin 5e3611ef-0b32-4a4a-967b-96868b7c133d create 101 \N Unknown-10.0.1.47 \N {"face": "", "name": "Unknown-10.0.1.47", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:39.040Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.47", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 206 2026-02-16 20:30:39.228501+00 radmin 179428ab-6708-4325-b225-31b38d08409f create 101 101 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 101, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:39.220Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 207 2026-02-16 20:30:40.007868+00 radmin 283412df-7dd5-4889-84f1-03cac868313c create 102 \N Unknown-10.0.1.48 \N {"face": "", "name": "Unknown-10.0.1.48", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:40.006Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.48", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 208 2026-02-16 20:30:40.143468+00 radmin 4e4c903b-ba89-4b30-bf8b-39d3a0a1727b create 102 102 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 102, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:40.137Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 209 2026-02-16 20:30:40.448403+00 radmin 2dfc3b98-9b45-426b-a3cc-65ee37d7caef create 103 \N Unknown-10.0.1.49 \N {"face": "", "name": "Unknown-10.0.1.49", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:40.446Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.49", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 210 2026-02-16 20:30:40.584805+00 radmin 26b7e7c5-567e-4034-b420-cc733fee9a72 create 103 103 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 103, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:40.578Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 211 2026-02-16 20:30:40.89686+00 radmin cfd7d764-45d1-402b-afca-03936d299a3a create 104 \N Unknown-10.0.1.50 \N {"face": "", "name": "Unknown-10.0.1.50", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:40.894Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.50", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 212 2026-02-16 20:30:41.031928+00 radmin 90cf490c-7208-4a20-9ba1-3defed36545f create 104 104 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 104, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:41.025Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 213 2026-02-16 20:30:41.365842+00 radmin fb5acd9d-f27f-4918-ab39-4336c8c25ba8 create 105 \N Unknown-10.0.1.51 \N {"face": "", "name": "Unknown-10.0.1.51", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:41.363Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.51", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 214 2026-02-16 20:30:41.558373+00 radmin 68cfdf4e-71bd-43fe-9a63-309cae943a3b create 105 105 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 105, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:41.546Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 215 2026-02-16 20:30:42.022986+00 radmin 70703c06-5f4a-49e8-8f5d-f00eac020590 create 106 \N Unknown-10.0.1.52 \N {"face": "", "name": "Unknown-10.0.1.52", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:42.019Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.52", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 216 2026-02-16 20:30:42.219779+00 radmin cf6474de-7930-44be-adf4-27041e91bc27 create 106 106 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 106, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:42.212Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 217 2026-02-16 20:30:42.531153+00 radmin 06c7c63c-e75e-4880-852a-70f69c2449c6 create 107 \N Unknown-10.0.1.53 \N {"face": "", "name": "Unknown-10.0.1.53", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:42.529Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.53", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 218 2026-02-16 20:30:42.665317+00 radmin 10f11408-f546-4850-be08-7e1a2c32a66d create 107 107 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 107, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:42.660Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 219 2026-02-16 20:30:43.026959+00 radmin bf9611e4-361d-4465-b18f-d3fcd4f7d9bb create 108 \N Unknown-10.0.1.55 \N {"face": "", "name": "Unknown-10.0.1.55", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:43.023Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.55", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 220 2026-02-16 20:30:43.214604+00 radmin dbe186b7-2bf9-434b-b1ef-3ca72bdf7684 create 108 108 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 108, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:43.208Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 221 2026-02-16 20:30:43.523704+00 radmin 7021b7af-28b3-4abc-b12b-626226efe0ea create 109 \N Unknown-10.0.1.56 \N {"face": "", "name": "Unknown-10.0.1.56", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:43.521Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.56", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 222 2026-02-16 20:30:43.656936+00 radmin db3e89ed-9cfa-431c-9a4e-e39d0fe745bf create 109 109 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 109, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:43.650Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 223 2026-02-16 20:30:44.082034+00 radmin 9a7f06b0-f133-4b76-8143-95c43a97dd5e create 110 \N Unknown-10.0.1.57 \N {"face": "", "name": "Unknown-10.0.1.57", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:44.078Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.57", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 224 2026-02-16 20:30:44.313542+00 radmin 5fc42008-dbd4-4e7c-81e3-d394c90fef3c create 110 110 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 110, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:44.302Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 225 2026-02-16 20:30:44.644236+00 radmin 9a875a7d-bc68-4010-9f52-cf1ecc270d99 create 111 \N Unknown-10.0.1.58 \N {"face": "", "name": "Unknown-10.0.1.58", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:44.642Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.58", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 226 2026-02-16 20:30:44.77385+00 radmin d1feca28-af00-43c7-a22b-6c6b071118a5 create 111 111 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 111, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:44.767Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 227 2026-02-16 20:30:45.068074+00 radmin fad95f5f-7ff9-4980-8765-f388f94d69c7 create 112 \N Unknown-10.0.1.59 \N {"face": "", "name": "Unknown-10.0.1.59", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:45.066Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.59", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 228 2026-02-16 20:30:45.208395+00 radmin 3342fadb-fcdf-4103-bee5-cd02d86f06f1 create 112 112 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 112, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:45.202Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 229 2026-02-16 20:30:45.535843+00 radmin 2efd41a0-936a-42b8-b92a-b0befd7e90e3 create 113 \N Unknown-10.0.1.60 \N {"face": "", "name": "Unknown-10.0.1.60", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:45.533Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.60", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 230 2026-02-16 20:30:45.68767+00 radmin 548b2a6d-49d3-466c-a4b6-94c70cc38fab create 113 113 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 113, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:45.681Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 231 2026-02-16 20:30:46.112461+00 radmin ec6bac70-d03a-4587-9bcc-e16f21a60896 create 114 \N Unknown-10.0.1.61 \N {"face": "", "name": "Unknown-10.0.1.61", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:46.108Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.61", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 232 2026-02-16 20:30:46.332698+00 radmin 32e7ec95-c573-4739-a658-7dc5cf209fe4 create 114 114 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 114, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:46.320Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 233 2026-02-16 20:30:46.717762+00 radmin d3577308-1b9d-4eb7-bbc0-0795d8f2a84a create 115 \N Unknown-10.0.1.62 \N {"face": "", "name": "Unknown-10.0.1.62", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:46.715Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.62", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 234 2026-02-16 20:30:46.853295+00 radmin d9677ae8-56c9-4bf6-b07a-c4771efa952f create 115 115 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 115, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:46.847Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 235 2026-02-16 20:30:47.16349+00 radmin 2ea2fa55-d694-4b8e-9135-7f62af4c05dc create 116 \N Unknown-10.0.1.64 \N {"face": "", "name": "Unknown-10.0.1.64", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:47.161Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.64", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 236 2026-02-16 20:30:47.299307+00 radmin ca12ed7a-c4b5-4cef-b53e-67361f50540f create 116 116 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 116, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:47.291Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 237 2026-02-16 20:30:48.10061+00 radmin fb7950ea-970d-4824-8452-26311abffdc2 create 117 \N Unknown-10.0.1.65 \N {"face": "", "name": "Unknown-10.0.1.65", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:48.098Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.65", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 238 2026-02-16 20:30:48.225685+00 radmin acae6656-5d17-4bfa-b575-bf5a26b3dfa7 create 117 117 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 117, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:48.220Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 239 2026-02-16 20:30:48.523513+00 radmin 2590c70d-868a-4fcf-a94c-8642e420e1a0 create 118 \N Unknown-10.0.1.66 \N {"face": "", "name": "Unknown-10.0.1.66", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:48.521Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.66", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 240 2026-02-16 20:30:48.650909+00 radmin d9053252-1db9-4920-9164-54e07a0a27d5 create 118 118 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 118, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:48.646Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 241 2026-02-16 20:30:48.945898+00 radmin d269e72f-4d40-4fc8-8568-0bbdb431370f create 119 \N Unknown-10.0.1.67 \N {"face": "", "name": "Unknown-10.0.1.67", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:48.944Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.67", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 242 2026-02-16 20:30:49.067813+00 radmin 04168343-5f34-466c-aa6e-34c88f57d81a create 119 119 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 119, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:49.063Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 243 2026-02-16 20:30:49.3648+00 radmin 50db672c-1d31-4044-9170-940ccf4ecf2f create 120 \N Unknown-10.0.1.68 \N {"face": "", "name": "Unknown-10.0.1.68", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:49.362Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.68", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 244 2026-02-16 20:30:49.498781+00 radmin 540863ea-1827-46f6-8348-37a0712207b0 create 120 120 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 120, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:49.492Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 245 2026-02-16 20:30:49.839763+00 radmin fe622cdb-b59f-4ae9-9b60-6219dd60d5c6 create 121 \N Unknown-10.0.1.69 \N {"face": "", "name": "Unknown-10.0.1.69", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:49.837Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.69", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 246 2026-02-16 20:30:50.00588+00 radmin a7ff0ee8-76c5-4bba-875d-06696461806b create 121 121 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 121, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:49.998Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 247 2026-02-16 20:30:50.435666+00 radmin 40cfc796-67bd-4e85-815c-0b9fcbfc7cad create 122 \N Unknown-10.0.1.70 \N {"face": "", "name": "Unknown-10.0.1.70", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:50.432Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.70", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 248 2026-02-16 20:30:50.637034+00 radmin cf2d3540-c073-4687-8e94-63254029dc1f create 122 122 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 122, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:50.628Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 249 2026-02-16 20:30:50.950857+00 radmin 214e6b8a-40c1-4fb4-9020-a05325dbad8f create 123 \N Unknown-10.0.1.71 \N {"face": "", "name": "Unknown-10.0.1.71", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:50.949Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.71", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 250 2026-02-16 20:30:51.078421+00 radmin e0459df5-350d-41bf-a54c-ffa68a6b5abe create 123 123 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 123, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:51.072Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 251 2026-02-16 20:30:51.44508+00 radmin f511241b-3837-463e-9b57-7a4573c78b95 create 124 \N Unknown-10.0.1.72 \N {"face": "", "name": "Unknown-10.0.1.72", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:51.441Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.72", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 252 2026-02-16 20:30:51.645599+00 radmin 6cc69973-05d6-4488-bffa-68b87c3c3d3b create 124 124 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 124, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:51.636Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 253 2026-02-16 20:30:51.97097+00 radmin e42e6ef9-54e8-4e46-a7ef-641f644f00fa create 125 \N Unknown-10.0.1.74 \N {"face": "", "name": "Unknown-10.0.1.74", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:51.969Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.74", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 254 2026-02-16 20:30:52.092897+00 radmin bcdf7d89-1c96-4ec9-9da7-901ffc7c3c89 create 125 125 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 125, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:52.088Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 255 2026-02-16 20:30:52.37739+00 radmin 20b07359-0a01-4bd1-bc68-1907f45cb5bc create 126 \N Unknown-10.0.1.75 \N {"face": "", "name": "Unknown-10.0.1.75", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:52.375Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.75", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 256 2026-02-16 20:30:52.501808+00 radmin aa710819-cd8b-4a25-b056-7b6a0305e40d create 126 126 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 126, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:52.496Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 257 2026-02-16 20:30:52.812265+00 radmin accb4551-be11-437f-aceb-7969dde30061 create 127 \N Unknown-10.0.1.76 \N {"face": "", "name": "Unknown-10.0.1.76", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:52.810Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.76", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 258 2026-02-16 20:30:52.940683+00 radmin bb496515-65a4-4c3c-84a3-f2b242f4b7de create 127 127 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 127, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:52.935Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 259 2026-02-16 20:30:53.228322+00 radmin a1f00948-3232-4128-ac77-a81be85e38fd create 128 \N Unknown-10.0.1.77 \N {"face": "", "name": "Unknown-10.0.1.77", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:53.226Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.77", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 260 2026-02-16 20:30:53.352702+00 radmin 57446200-e76e-4cc0-87ac-fb40c2f69a44 create 128 128 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 128, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:53.347Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 261 2026-02-16 20:30:53.679308+00 radmin 8a432d5e-693a-4401-8c1c-f368138a3e30 create 129 \N Unknown-10.0.1.78 \N {"face": "", "name": "Unknown-10.0.1.78", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:53.676Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.78", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 262 2026-02-16 20:30:53.847838+00 radmin 0abd7ad7-91bc-40d4-8947-641f24527337 create 129 129 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 129, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:53.839Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 263 2026-02-16 20:30:54.195126+00 radmin 5f531dc6-01c0-4727-a03d-dfc495fef79c create 130 \N Unknown-10.0.1.79 \N {"face": "", "name": "Unknown-10.0.1.79", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:54.192Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.79", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 264 2026-02-16 20:30:54.338664+00 radmin 3f3b16af-67eb-4749-bc3a-7af11fb3cb57 create 130 130 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 130, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:54.332Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 265 2026-02-16 20:30:54.68595+00 radmin fb449898-98d5-4d43-b2ac-bb3f29f655e9 create 131 \N Unknown-10.0.1.80 \N {"face": "", "name": "Unknown-10.0.1.80", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:54.683Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.80", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 266 2026-02-16 20:30:54.847662+00 radmin 9f7c061f-ef23-4bb7-9260-d727563d781f create 131 131 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 131, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:54.840Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 267 2026-02-16 20:30:55.527547+00 radmin f11b12b6-6983-454f-8a9c-d45dffc56b01 create 132 \N Unknown-10.0.1.82 \N {"face": "", "name": "Unknown-10.0.1.82", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:55.525Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.82", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 268 2026-02-16 20:30:55.65696+00 radmin 81be5806-361f-4c60-8471-92f4c70490ab create 132 132 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 132, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:55.651Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 269 2026-02-16 20:30:55.944908+00 radmin d70717c2-c8c1-4f43-82a5-4d51f280a3b6 create 133 \N Unknown-10.0.1.83 \N {"face": "", "name": "Unknown-10.0.1.83", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:55.943Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.83", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 270 2026-02-16 20:30:56.072653+00 radmin 1ccd7bdf-447e-4bd1-9f73-7d2512535cb5 create 133 133 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 133, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:56.067Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 271 2026-02-16 20:30:56.355805+00 radmin cb384eaf-7797-4fc3-a31c-937623419668 create 134 \N Unknown-10.0.1.84 \N {"face": "", "name": "Unknown-10.0.1.84", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:56.354Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.84", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 272 2026-02-16 20:30:56.475282+00 radmin 8eea4f05-1b22-4b47-983c-3e2e46eeda47 create 134 134 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 134, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:56.470Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 273 2026-02-16 20:30:56.762157+00 radmin 7200499a-80fd-4680-9138-858c1a16816b create 135 \N Unknown-10.0.1.85 \N {"face": "", "name": "Unknown-10.0.1.85", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:56.760Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.85", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 274 2026-02-16 20:30:56.883009+00 radmin 5eb98a5d-21ec-491b-a568-e70d91fee854 create 135 135 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 135, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:56.878Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 275 2026-02-16 20:30:57.1695+00 radmin d841260c-3e3e-4359-9307-134496595340 create 136 \N Unknown-10.0.1.86 \N {"face": "", "name": "Unknown-10.0.1.86", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:57.167Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.86", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 276 2026-02-16 20:30:57.293901+00 radmin 1ddc3443-50b3-4987-8e89-f40ee6160a5b create 136 136 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 136, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:57.288Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 277 2026-02-16 20:30:57.609041+00 radmin 7b1a1697-4208-4997-b4c3-efbc42ba339b create 137 \N Unknown-10.0.1.87 \N {"face": "", "name": "Unknown-10.0.1.87", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:57.606Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.87", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 278 2026-02-16 20:30:57.776051+00 radmin ecb02a75-877f-44d2-b016-bcc4a2b46da5 create 137 137 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 137, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:57.767Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 279 2026-02-16 20:30:58.22178+00 radmin 31d86bce-ded6-4e88-a46a-26dc350e37bf create 138 \N Unknown-10.0.1.89 \N {"face": "", "name": "Unknown-10.0.1.89", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:58.218Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.89", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 280 2026-02-16 20:30:58.370864+00 radmin d80fa511-c54b-47fc-806e-154351b9425d create 138 138 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 138, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:58.366Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 281 2026-02-16 20:30:58.657149+00 radmin 4f550b7b-8c9b-4a92-aacc-127b207cf26a create 139 \N Unknown-10.0.1.9 \N {"face": "", "name": "Unknown-10.0.1.9", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:58.655Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.9", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 282 2026-02-16 20:30:58.778379+00 radmin 24720b26-24ba-42e5-bdac-ebd6b4a03edc create 139 139 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 139, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:58.773Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 283 2026-02-16 20:30:59.071706+00 radmin 91763927-f1d4-4483-8d7f-ce3d51b38896 create 140 \N Unknown-10.0.1.90 \N {"face": "", "name": "Unknown-10.0.1.90", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:59.069Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.90", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 284 2026-02-16 20:30:59.202799+00 radmin bb087621-6a65-4f2c-9835-ea662e055e55 create 140 140 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 140, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:59.197Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 285 2026-02-16 20:30:59.526589+00 radmin 415a0ca9-99a7-448c-ac0f-ca9099e6a409 create 141 \N Unknown-10.0.1.91 \N {"face": "", "name": "Unknown-10.0.1.91", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:59.523Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.91", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 286 2026-02-16 20:30:59.703953+00 radmin c03004bb-f4fe-4b49-95a5-eae8f08432c9 create 141 141 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 141, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:59.695Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 287 2026-02-16 20:31:00.073664+00 radmin 65031b0f-428c-45ae-a12f-2d17be6cfc9e create 142 \N Unknown-10.0.1.92 \N {"face": "", "name": "Unknown-10.0.1.92", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:00.071Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.92", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 288 2026-02-16 20:31:00.216132+00 radmin 70594999-3b17-449b-afb4-6b0db023f2ab create 142 142 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 142, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:00.208Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 289 2026-02-16 20:31:00.503452+00 radmin 7d7d0878-631d-431d-9396-2fa6dc96847a create 143 \N Unknown-10.0.1.93 \N {"face": "", "name": "Unknown-10.0.1.93", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:00.501Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.93", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 290 2026-02-16 20:31:00.622006+00 radmin 7f3aa187-686f-45f7-8fc5-ffc9f9752c3d create 143 143 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 143, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:00.617Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 291 2026-02-16 20:31:00.917631+00 radmin c32a1b41-8a1a-47c0-b1ae-1a4d4f3c3dd6 create 144 \N Unknown-10.0.1.94 \N {"face": "", "name": "Unknown-10.0.1.94", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:00.915Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.94", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 292 2026-02-16 20:31:01.061572+00 radmin 81df6ef1-1b86-4734-851d-11eba077e7c5 create 144 144 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 144, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:01.055Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 293 2026-02-16 20:31:01.416579+00 radmin ce429424-39a1-4abd-8af7-87d76f0e76f0 create 145 \N Unknown-10.0.1.96 \N {"face": "", "name": "Unknown-10.0.1.96", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:01.414Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.96", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 294 2026-02-16 20:31:01.548971+00 radmin 252204da-883a-423f-b30e-a9c4c4f0c8cf create 145 145 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 145, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:01.544Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 295 2026-02-16 20:31:01.850978+00 radmin 319384b6-e56f-4119-8d4c-d2074ff4b500 create 146 \N Unknown-10.0.1.97 \N {"face": "", "name": "Unknown-10.0.1.97", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:01.848Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.97", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 296 2026-02-16 20:31:02.00097+00 radmin a43fd13a-612c-4384-a7f4-df586144cafe create 146 146 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 146, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:01.994Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 297 2026-02-16 20:31:02.824741+00 radmin 91424e34-ee65-4f83-a5bd-399a72dd6f74 create 147 \N Unknown-10.0.1.98 \N {"face": "", "name": "Unknown-10.0.1.98", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:02.822Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.98", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 298 2026-02-16 20:31:02.957854+00 radmin ebc6487a-4700-45a5-8a21-e57914760d21 create 147 147 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 147, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:02.951Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 299 2026-02-16 20:31:03.261137+00 radmin 954ebeae-fbb2-4a19-83fb-950d9d0b0044 create 148 \N Unknown-10.0.1.99 \N {"face": "", "name": "Unknown-10.0.1.99", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:31:03.259Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.99", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 300 2026-02-16 20:31:03.39641+00 radmin 72da3ac1-4269-44f7-be05-d025d79f734b create 148 148 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 148, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:31:03.391Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 301 2026-02-16 21:02:34.721032+00 radmin 736093a4-68cc-4187-b15a-6821f2fb7f1a create 149 \N Unknown-10.0.1.138 \N {"face": "", "name": "Unknown-10.0.1.138", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:34.717Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.138, Mac: 34:2F:BD:91:2C:67, Vendor: Nintendo\\n Detalhes: {'manufacturer': 'Nintendo Co.,Ltd', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 302 2026-02-16 21:02:34.892065+00 radmin 10d4d13c-f37c-4624-a4fe-4990f5971dbf create 149 149 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 149, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:34.880Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 303 2026-02-16 21:02:35.072986+00 radmin 0e8a5283-aa23-4bba-afd2-a08c0c8b0466 create 1 \N 34:2F:BD:91:2C:67 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:35.069Z", "comments": "", "description": "", "mac_address": "34:2F:BD:91:2C:67", "custom_fields": {}, "assigned_object_id": 149, "assigned_object_type": 7} 76 \N 1 | |
| 304 2026-02-16 21:02:35.941267+00 radmin 1ab5bb78-d74f-4a5c-9796-b512fba5b5c2 create 150 \N Unknown-10.0.1.139 \N {"face": "", "name": "Unknown-10.0.1.139", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:35.937Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.139, Mac: 2C:1B:3A:90:3E:98, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Hui Zhou Gaoshengda Technology Co.,LTD', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 305 2026-02-16 21:02:36.120298+00 radmin 374ff8fe-c71c-48e5-87de-926da8b32acd create 150 150 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 150, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:36.108Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 306 2026-02-16 21:02:36.310259+00 radmin 88a1b8d8-1ce7-474a-8784-198b7751ec06 create 2 \N 2C:1B:3A:90:3E:98 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:36.306Z", "comments": "", "description": "", "mac_address": "2C:1B:3A:90:3E:98", "custom_fields": {}, "assigned_object_id": 150, "assigned_object_type": 7} 76 \N 1 | |
| 307 2026-02-16 21:02:38.403626+00 radmin e2a822c5-7232-40e2-964f-70e76d3120e5 create 151 \N Unknown-10.0.1.147 \N {"face": "", "name": "Unknown-10.0.1.147", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:38.399Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.147, Mac: 10:7B:44:91:5B:28, Vendor: ASUSTek Computer\\n Detalhes: {'manufacturer': 'ASUSTek COMPUTER INC.', 'country': 'TW', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 308 2026-02-16 21:02:38.591776+00 radmin e2f871ab-7209-490d-82d8-2ce4d3b6c98d create 151 151 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 151, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:38.579Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 309 2026-02-16 21:02:38.774383+00 radmin 626df434-f6c6-45a0-9ccc-c0ac563bf8f5 create 3 \N 10:7B:44:91:5B:28 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:38.770Z", "comments": "", "description": "", "mac_address": "10:7B:44:91:5B:28", "custom_fields": {}, "assigned_object_id": 151, "assigned_object_type": 7} 76 \N 1 | |
| 310 2026-02-16 21:02:40.234932+00 radmin cc88ac95-cce5-4ecc-94f2-b06af0ec7fec create 152 \N Unknown-10.0.1.159 \N {"face": "", "name": "Unknown-10.0.1.159", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:40.231Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.159, Mac: 00:0C:29:7C:75:E3, Vendor: VMware\\n Detalhes: {'manufacturer': 'VMware, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 311 2026-02-16 21:02:40.398866+00 radmin b3611b47-ac0d-45f6-bd11-46e33d22987c create 152 152 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 152, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:40.387Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 312 2026-02-16 21:02:40.57777+00 radmin 07f1b83a-a7f1-4e91-a474-1b1b4975ae81 create 4 \N 00:0C:29:7C:75:E3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:40.574Z", "comments": "", "description": "", "mac_address": "00:0C:29:7C:75:E3", "custom_fields": {}, "assigned_object_id": 152, "assigned_object_type": 7} 76 \N 1 | |
| 313 2026-02-16 21:02:41.781789+00 radmin 3d76a458-cce4-45c9-b15a-a735a6358cbd create 153 \N Unknown-10.0.1.163 \N {"face": "", "name": "Unknown-10.0.1.163", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:41.777Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.163, Mac: 30:B5:C2:87:73:E5, Vendor: TP-Link Technologies\\n Detalhes: {'manufacturer': 'TP-LINK TECHNOLOGIES CO.,LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 314 2026-02-16 21:02:41.957787+00 radmin ed1be280-10b2-475f-9c93-92cab2848c32 create 153 153 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 153, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:41.946Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 315 2026-02-16 21:02:42.136829+00 radmin fdd07e96-3e20-4df3-b350-68c2098a9706 create 5 \N 30:B5:C2:87:73:E5 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:42.133Z", "comments": "", "description": "", "mac_address": "30:B5:C2:87:73:E5", "custom_fields": {}, "assigned_object_id": 153, "assigned_object_type": 7} 76 \N 1 | |
| 316 2026-02-16 21:02:43.936594+00 radmin 86ee9ffb-b869-4ee7-8b24-163d196b025a create 154 \N Unknown-10.0.1.168 \N {"face": "", "name": "Unknown-10.0.1.168", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:43.932Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.168, Mac: 2C:4D:54:30:BC:BD, Vendor: ASUSTek Computer\\n Detalhes: {'manufacturer': 'ASUSTek COMPUTER INC.', 'country': 'TW', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 317 2026-02-16 21:02:44.119532+00 radmin 1b34aa98-c0f9-4da3-a7f1-dc48ba410d2f create 154 154 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 154, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:44.107Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 318 2026-02-16 21:02:44.310355+00 radmin 6789bb01-688c-4270-8e7c-dfae05a7e254 create 6 \N 2C:4D:54:30:BC:BD \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:44.306Z", "comments": "", "description": "", "mac_address": "2C:4D:54:30:BC:BD", "custom_fields": {}, "assigned_object_id": 154, "assigned_object_type": 7} 76 \N 1 | |
| 319 2026-02-16 21:02:48.953339+00 radmin 4147f000-94fc-4456-979b-e8156484bab6 create 155 \N Unknown-10.0.1.192 \N {"face": "", "name": "Unknown-10.0.1.192", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:48.949Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.192, Mac: 00:0C:29:6B:6C:4F, Vendor: VMware\\n Detalhes: {'manufacturer': 'VMware, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 320 2026-02-16 21:02:49.142071+00 radmin c590cc3a-1827-4a14-9638-122a20d5e337 create 155 155 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 155, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:49.128Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 321 2026-02-16 21:02:49.334545+00 radmin 856f155b-6470-4f12-aeff-350601addd5a create 7 \N 00:0C:29:6B:6C:4F \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:49.330Z", "comments": "", "description": "", "mac_address": "00:0C:29:6B:6C:4F", "custom_fields": {}, "assigned_object_id": 155, "assigned_object_type": 7} 76 \N 1 | |
| 322 2026-02-16 21:02:53.768301+00 radmin 79337f57-b790-4a87-86fb-0382599fad3e create 156 \N Unknown-10.0.1.219 \N {"face": "", "name": "Unknown-10.0.1.219", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:53.764Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.219, Mac: 6C:A6:04:EC:20:20, Vendor: Arris Group\\n Detalhes: {'manufacturer': 'Commscope', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 323 2026-02-16 21:02:53.950573+00 radmin 7bffd071-3f75-4984-8cc3-a06a5d625985 create 156 156 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 156, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:53.938Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 324 2026-02-16 21:02:54.130501+00 radmin e4cc06a8-f109-4c74-a53e-4241078f8702 create 8 \N 6C:A6:04:EC:20:20 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:54.126Z", "comments": "", "description": "", "mac_address": "6C:A6:04:EC:20:20", "custom_fields": {}, "assigned_object_id": 156, "assigned_object_type": 7} 76 \N 1 | |
| 325 2026-02-16 21:02:56.215294+00 radmin 21fb5b48-afff-43cd-94c4-28a844bc2be0 create 157 \N Unknown-10.0.1.226 \N {"face": "", "name": "Unknown-10.0.1.226", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:56.211Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.226, Mac: 94:E0:D6:D9:D1:F8, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 326 2026-02-16 21:02:56.395284+00 radmin 9dd59398-9114-4382-916f-8a47be45a51c create 157 157 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 157, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:56.383Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 327 2026-02-16 21:02:56.588262+00 radmin 3643bf9b-0dcc-48c2-a0c3-8e974216d860 create 9 \N 94:E0:D6:D9:D1:F8 \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:56.584Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:D1:F8", "custom_fields": {}, "assigned_object_id": 157, "assigned_object_type": 7} 76 \N 1 | |
| 328 2026-02-16 21:02:57.456155+00 radmin 7d238611-2db1-43fc-ad3b-5ce6b7d01908 create 158 \N Unknown-10.0.1.235 \N {"face": "", "name": "Unknown-10.0.1.235", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:02:57.452Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.235, Mac: 04:F4:1C:1A:96:CF, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Routerboard.com', 'country': 'LV', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 329 2026-02-16 21:02:57.642784+00 radmin 40a301e0-8590-4098-903d-637b8d8e1a35 create 158 158 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 158, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:02:57.629Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 330 2026-02-16 21:02:57.837632+00 radmin fbf62b68-6efb-469a-99bc-2abb4c33e039 create 10 \N 04:F4:1C:1A:96:CF \N {"tags": [], "owner": null, "created": "2026-02-16T21:02:57.834Z", "comments": "", "description": "", "mac_address": "04:F4:1C:1A:96:CF", "custom_fields": {}, "assigned_object_id": 158, "assigned_object_type": 7} 76 \N 1 | |
| 331 2026-02-16 21:03:06.607246+00 radmin e7fa8936-6324-4d8e-a730-4a8172054928 create 159 \N Unknown-10.0.1.73 \N {"face": "", "name": "Unknown-10.0.1.73", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:03:06.603Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.73, Mac: CC:A2:19:B4:E3:83, Vendor: Shenzhen Along Investment\\n Detalhes: {'manufacturer': 'SHENZHEN ALONG INVESTMENT CO.,LTD', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 332 2026-02-16 21:03:06.776516+00 radmin 222ddc4d-6c7b-4edd-8dc9-9a6a16657391 create 159 159 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 159, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:03:06.765Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 333 2026-02-16 21:03:06.946231+00 radmin 022b1d2e-9086-4756-901f-45b05f66a01c create 11 \N CC:A2:19:B4:E3:83 \N {"tags": [], "owner": null, "created": "2026-02-16T21:03:06.943Z", "comments": "", "description": "", "mac_address": "CC:A2:19:B4:E3:83", "custom_fields": {}, "assigned_object_id": 159, "assigned_object_type": 7} 76 \N 1 | |
| 334 2026-02-16 21:53:44.784914+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 56 56 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 56, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:14.486Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 335 2026-02-16 21:53:44.848884+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 56 \N Unknown-10.0.1.2 {"face": "", "name": "Unknown-10.0.1.2", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:14.313Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.2", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 336 2026-02-16 21:53:45.01948+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 84 84 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 84, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:30.530Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 337 2026-02-16 21:53:45.075873+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 84 \N Unknown-10.0.1.3 {"face": "", "name": "Unknown-10.0.1.3", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:30.357Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.3", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 338 2026-02-16 21:53:45.237181+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 94 94 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 94, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:35.150Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 339 2026-02-16 21:53:45.289696+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 94 \N Unknown-10.0.1.4 {"face": "", "name": "Unknown-10.0.1.4", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:35.025Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.4", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 340 2026-02-16 21:53:45.441978+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 139 139 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 139, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:58.773Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 341 2026-02-16 21:53:45.4931+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 139 \N Unknown-10.0.1.9 {"face": "", "name": "Unknown-10.0.1.9", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:58.655Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.9", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 342 2026-02-16 21:53:45.646573+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 1 1 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 1, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:10.153Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 343 2026-02-16 21:53:45.697145+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 1 \N Unknown-10.0.1.10 {"face": "", "name": "Unknown-10.0.1.10", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:09.925Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.10", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 344 2026-02-16 21:53:45.855399+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 10 10 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 10, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:48.502Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 345 2026-02-16 21:53:45.906901+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 10 \N Unknown-10.0.1.12 {"face": "", "name": "Unknown-10.0.1.12", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:48.373Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.12", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 346 2026-02-16 21:53:46.068152+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 13 13 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 13, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:50.353Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 347 2026-02-16 21:53:46.120881+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 13 \N Unknown-10.0.1.13 {"face": "", "name": "Unknown-10.0.1.13", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:50.231Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.13", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 348 2026-02-16 21:53:46.273505+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 17 17 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 17, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:52.727Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 349 2026-02-16 21:53:46.326186+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 17 \N Unknown-10.0.1.14 {"face": "", "name": "Unknown-10.0.1.14", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:52.531Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.14", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 350 2026-02-16 21:53:46.484622+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 18 18 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 18, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:53.324Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 351 2026-02-16 21:53:46.535431+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 18 \N Unknown-10.0.1.15 {"face": "", "name": "Unknown-10.0.1.15", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:53.179Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.15", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 352 2026-02-16 21:53:46.691778+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 23 23 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 23, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:55.776Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 353 2026-02-16 21:53:46.750417+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 23 \N Unknown-10.0.1.16 {"face": "", "name": "Unknown-10.0.1.16", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:55.614Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.16", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 354 2026-02-16 21:53:46.921033+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 29 29 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 29, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:29:58.952Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 355 2026-02-16 21:53:46.970628+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 29 \N Unknown-10.0.1.17 {"face": "", "name": "Unknown-10.0.1.17", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:29:58.826Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.17", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 356 2026-02-16 21:53:47.069036+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 38 38 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 38, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:03.916Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 357 2026-02-16 21:53:47.095033+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 38 \N Unknown-10.0.1.18 {"face": "", "name": "Unknown-10.0.1.18", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:03.732Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.18", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 358 2026-02-16 21:53:47.173736+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 47 47 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 47, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:09.157Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 359 2026-02-16 21:53:47.199613+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 47 \N Unknown-10.0.1.19 {"face": "", "name": "Unknown-10.0.1.19", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:08.963Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.19", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 360 2026-02-16 21:53:47.274788+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 57 57 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 57, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:15.372Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 361 2026-02-16 21:53:47.302796+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 57 \N Unknown-10.0.1.20 {"face": "", "name": "Unknown-10.0.1.20", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:15.244Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.20", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 362 2026-02-16 21:53:47.383869+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 64 64 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 64, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:19.371Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 363 2026-02-16 21:53:47.412621+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 64 \N Unknown-10.0.1.21 {"face": "", "name": "Unknown-10.0.1.21", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:19.162Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.21", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 364 2026-02-16 21:53:47.496229+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 73 73 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 73, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:24.418Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 365 2026-02-16 21:53:47.521332+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 73 \N Unknown-10.0.1.22 {"face": "", "name": "Unknown-10.0.1.22", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:24.295Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.22", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 366 2026-02-16 21:53:47.595017+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 77 77 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 77, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:26.634Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 367 2026-02-16 21:53:47.620588+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 77 \N Unknown-10.0.1.24 {"face": "", "name": "Unknown-10.0.1.24", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:26.419Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.24", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 368 2026-02-16 21:53:47.695307+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 78 78 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 78, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:27.321Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 369 2026-02-16 21:53:47.724321+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 78 \N Unknown-10.0.1.25 {"face": "", "name": "Unknown-10.0.1.25", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:27.111Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.25", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 370 2026-02-16 21:53:47.806846+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 80 80 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 80, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:28.490Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 371 2026-02-16 21:53:47.834732+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 80 \N Unknown-10.0.1.26 {"face": "", "name": "Unknown-10.0.1.26", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:28.357Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.26", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 372 2026-02-16 21:53:47.9103+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 81 81 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 81, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:29.018Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 373 2026-02-16 21:53:47.935306+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 81 \N Unknown-10.0.1.27 {"face": "", "name": "Unknown-10.0.1.27", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:28.846Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.27", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 374 2026-02-16 21:53:48.009797+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 82 82 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 82, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:29.471Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 375 2026-02-16 21:53:48.036526+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 82 \N Unknown-10.0.1.28 {"face": "", "name": "Unknown-10.0.1.28", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:29.348Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.28", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 376 2026-02-16 21:53:48.111845+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 83 83 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 83, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:29.924Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 377 2026-02-16 21:53:48.137274+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 83 \N Unknown-10.0.1.29 {"face": "", "name": "Unknown-10.0.1.29", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:29.778Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.29", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 378 2026-02-16 21:53:48.222942+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 85 85 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 85, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:30.978Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 379 2026-02-16 21:53:48.250779+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 85 \N Unknown-10.0.1.31 {"face": "", "name": "Unknown-10.0.1.31", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:30.844Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.31", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 380 2026-02-16 21:53:48.331978+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 86 86 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 86, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:31.415Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 381 2026-02-16 21:53:48.36079+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 86 \N Unknown-10.0.1.32 {"face": "", "name": "Unknown-10.0.1.32", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:31.291Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.32", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 382 2026-02-16 21:53:48.435714+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 87 87 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 87, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:32.221Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 383 2026-02-16 21:53:48.464949+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 87 \N Unknown-10.0.1.33 {"face": "", "name": "Unknown-10.0.1.33", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:32.104Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.33", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 384 2026-02-16 21:53:48.551066+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 88 88 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 88, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:32.637Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 385 2026-02-16 21:53:48.578625+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 88 \N Unknown-10.0.1.34 {"face": "", "name": "Unknown-10.0.1.34", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:32.516Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.34", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 386 2026-02-16 21:53:48.651962+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 89 89 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 89, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:33.048Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 387 2026-02-16 21:53:48.678045+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 89 \N Unknown-10.0.1.35 {"face": "", "name": "Unknown-10.0.1.35", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:32.928Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.35", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 388 2026-02-16 21:53:48.753088+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 90 90 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 90, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:33.455Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 389 2026-02-16 21:53:48.778388+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 90 \N Unknown-10.0.1.36 {"face": "", "name": "Unknown-10.0.1.36", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:33.336Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.36", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 390 2026-02-16 21:53:48.854013+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 91 91 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 91, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:33.881Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 391 2026-02-16 21:53:48.880161+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 91 \N Unknown-10.0.1.37 {"face": "", "name": "Unknown-10.0.1.37", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:33.754Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.37", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 392 2026-02-16 21:53:48.95561+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 92 92 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 92, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:34.295Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 393 2026-02-16 21:53:48.981509+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 92 \N Unknown-10.0.1.38 {"face": "", "name": "Unknown-10.0.1.38", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:34.175Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.38", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 394 2026-02-16 21:53:49.055858+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 93 93 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 93, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:34.716Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 395 2026-02-16 21:53:49.082248+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 93 \N Unknown-10.0.1.39 {"face": "", "name": "Unknown-10.0.1.39", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:34.596Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.39", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 396 2026-02-16 21:53:49.155973+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 95 95 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 95, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:35.583Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 397 2026-02-16 21:53:49.181196+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 95 \N Unknown-10.0.1.40 {"face": "", "name": "Unknown-10.0.1.40", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:35.457Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.40", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 398 2026-02-16 21:53:49.256005+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 96 96 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 96, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:36.026Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 399 2026-02-16 21:53:49.284502+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 96 \N Unknown-10.0.1.41 {"face": "", "name": "Unknown-10.0.1.41", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:35.894Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.41", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 400 2026-02-16 21:53:49.371643+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 97 97 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 97, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:36.664Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 401 2026-02-16 21:53:49.399596+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 97 \N Unknown-10.0.1.43 {"face": "", "name": "Unknown-10.0.1.43", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:36.452Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.43", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 402 2026-02-16 21:53:49.489936+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 98 98 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 98, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:37.340Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 403 2026-02-16 21:53:49.519856+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 98 \N Unknown-10.0.1.44 {"face": "", "name": "Unknown-10.0.1.44", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:37.140Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.44", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 404 2026-02-16 21:53:49.603355+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 99 99 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 99, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:37.964Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 405 2026-02-16 21:53:49.629108+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 99 \N Unknown-10.0.1.45 {"face": "", "name": "Unknown-10.0.1.45", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:37.793Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.45", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 406 2026-02-16 21:53:49.703734+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 100 100 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 100, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:38.564Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 407 2026-02-16 21:53:49.72951+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 100 \N Unknown-10.0.1.46 {"face": "", "name": "Unknown-10.0.1.46", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:38.354Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.46", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 408 2026-02-16 21:53:49.80807+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 101 101 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 101, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:39.220Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 409 2026-02-16 21:53:49.839018+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 101 \N Unknown-10.0.1.47 {"face": "", "name": "Unknown-10.0.1.47", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:39.040Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.47", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 410 2026-02-16 21:53:49.919808+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 102 102 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 102, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:40.137Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 411 2026-02-16 21:53:49.945688+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 102 \N Unknown-10.0.1.48 {"face": "", "name": "Unknown-10.0.1.48", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:40.006Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.48", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 412 2026-02-16 21:53:50.022167+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 103 103 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 103, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:40.578Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 413 2026-02-16 21:53:50.048728+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 103 \N Unknown-10.0.1.49 {"face": "", "name": "Unknown-10.0.1.49", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:40.446Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.49", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 414 2026-02-16 21:53:50.123434+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 104 104 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 104, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:41.025Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 415 2026-02-16 21:53:50.148552+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 104 \N Unknown-10.0.1.50 {"face": "", "name": "Unknown-10.0.1.50", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:40.894Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.50", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 416 2026-02-16 21:53:50.229677+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 105 105 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 105, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:41.546Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 417 2026-02-16 21:53:50.259384+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 105 \N Unknown-10.0.1.51 {"face": "", "name": "Unknown-10.0.1.51", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:41.363Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.51", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 418 2026-02-16 21:53:50.342201+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 106 106 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 106, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:42.212Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 419 2026-02-16 21:53:50.374958+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 106 \N Unknown-10.0.1.52 {"face": "", "name": "Unknown-10.0.1.52", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:42.019Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.52", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 420 2026-02-16 21:53:50.460084+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 107 107 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 107, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:42.660Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 421 2026-02-16 21:53:50.488628+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 107 \N Unknown-10.0.1.53 {"face": "", "name": "Unknown-10.0.1.53", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:42.529Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.53", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 422 2026-02-16 21:53:50.566801+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 108 108 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 108, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:43.208Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 423 2026-02-16 21:53:50.593251+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 108 \N Unknown-10.0.1.55 {"face": "", "name": "Unknown-10.0.1.55", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:43.023Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.55", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 424 2026-02-16 21:53:50.666671+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 109 109 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 109, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:43.650Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 425 2026-02-16 21:53:50.691781+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 109 \N Unknown-10.0.1.56 {"face": "", "name": "Unknown-10.0.1.56", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:43.521Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.56", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 426 2026-02-16 21:53:50.769758+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 110 110 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 110, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:44.302Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 427 2026-02-16 21:53:50.794573+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 110 \N Unknown-10.0.1.57 {"face": "", "name": "Unknown-10.0.1.57", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:44.078Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.57", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 428 2026-02-16 21:53:50.868689+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 111 111 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 111, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:44.767Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 429 2026-02-16 21:53:50.893594+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 111 \N Unknown-10.0.1.58 {"face": "", "name": "Unknown-10.0.1.58", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:44.642Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.58", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 430 2026-02-16 21:53:50.971277+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 112 112 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 112, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:45.202Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 431 2026-02-16 21:53:50.996935+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 112 \N Unknown-10.0.1.59 {"face": "", "name": "Unknown-10.0.1.59", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:45.066Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.59", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 432 2026-02-16 21:53:51.074743+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 113 113 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 113, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T20:30:45.681Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 433 2026-02-16 21:53:51.10497+00 radmin b6566088-3bb0-4ca7-bab1-200c71604bd1 delete 113 \N Unknown-10.0.1.60 {"face": "", "name": "Unknown-10.0.1.60", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T20:30:45.533Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.1.60", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 434 2026-02-16 21:54:30.024023+00 radmin 75f1927a-729b-44a5-9cec-134c5eb87d85 create 160 \N Unknown-10.0.0.122 \N {"face": "", "name": "Unknown-10.0.0.122", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:30.020Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.122, Mac: 00:1B:A9:56:F1:47, Vendor: Brother industries\\n Detalhes: {'manufacturer': 'Brother industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 435 2026-02-16 21:54:30.195858+00 radmin b5438474-84ac-4d5e-acc6-3882c6652f4f create 160 160 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 160, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:30.184Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 436 2026-02-16 21:54:30.376007+00 radmin ba7a364c-c751-46c2-b973-a3f16f89d5b3 create 12 \N 00:1B:A9:56:F1:47 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:30.372Z", "comments": "", "description": "", "mac_address": "00:1B:A9:56:F1:47", "custom_fields": {}, "assigned_object_id": 160, "assigned_object_type": 7} 76 \N 1 | |
| 437 2026-02-16 21:54:31.254492+00 radmin 1c5ef0ef-083d-4e13-b05d-b161ac40e165 create 161 \N Unknown-10.0.0.2 \N {"face": "", "name": "Unknown-10.0.0.2", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:31.250Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.2, Mac: D4:F5:EF:72:C7:D0, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 438 2026-02-16 21:54:31.440448+00 radmin f2a9d0c5-f8a3-4aef-83f3-6b049005c50e create 161 161 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 161, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:31.427Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 440 2026-02-16 21:54:32.892723+00 radmin 5e0e8715-9f0f-4c0f-b2ed-c192f626ab99 create 162 \N Unknown-10.0.0.201 \N {"face": "", "name": "Unknown-10.0.0.201", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:32.889Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.201, Mac: 54:F8:2A:D1:0C:29, Vendor: u-blox AG\\n Detalhes: {'manufacturer': 'u-blox AG', 'country': 'CH', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 441 2026-02-16 21:54:33.073785+00 radmin 1d0601f2-0336-4909-b567-478d9a447fd7 create 162 162 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 162, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:33.062Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 442 2026-02-16 21:54:33.261135+00 radmin 49bf672e-27a5-47f5-b55e-0d72a48cfa90 create 14 \N 54:F8:2A:D1:0C:29 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:33.257Z", "comments": "", "description": "", "mac_address": "54:F8:2A:D1:0C:29", "custom_fields": {}, "assigned_object_id": 162, "assigned_object_type": 7} 76 \N 1 | |
| 443 2026-02-16 21:54:34.327528+00 radmin 076303c9-0729-4022-8bcc-3e1f245ef818 create 163 \N Unknown-10.0.0.202 \N {"face": "", "name": "Unknown-10.0.0.202", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:34.323Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.202, Mac: 3C:2A:F4:B4:2B:94, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 444 2026-02-16 21:54:34.508872+00 radmin a73f0dcb-24e8-4bb9-af66-5706185c1f1a create 163 163 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 163, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:34.497Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 445 2026-02-16 21:54:34.698941+00 radmin 384f65db-098a-41da-ab01-d776834a1b86 create 15 \N 3C:2A:F4:B4:2B:94 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:34.695Z", "comments": "", "description": "", "mac_address": "3C:2A:F4:B4:2B:94", "custom_fields": {}, "assigned_object_id": 163, "assigned_object_type": 7} 76 \N 1 | |
| 446 2026-02-16 21:54:35.861195+00 radmin ea9221a4-97b7-4ac7-b5af-c44c1834d3ea create 164 \N Unknown-10.0.0.209 \N {"face": "", "name": "Unknown-10.0.0.209", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:35.857Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.209, Mac: EC:1D:8B:73:7D:9A, Vendor: Cisco Systems\\n Detalhes: {'manufacturer': 'Cisco Systems, Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 447 2026-02-16 21:54:36.025435+00 radmin 36c26efc-91ac-43c7-9960-f78291ac915b create 164 164 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 164, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:36.014Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 448 2026-02-16 21:54:36.194831+00 radmin 001cc0c6-1dee-4627-b883-c56689e33425 create 16 \N EC:1D:8B:73:7D:9A \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:36.191Z", "comments": "", "description": "", "mac_address": "EC:1D:8B:73:7D:9A", "custom_fields": {}, "assigned_object_id": 164, "assigned_object_type": 7} 76 \N 1 | |
| 449 2026-02-16 21:54:36.78854+00 radmin 3f0331de-d03b-4c67-88de-7d5ffeaa8721 create 165 \N Unknown-10.0.0.214 \N {"face": "", "name": "Unknown-10.0.0.214", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:36.784Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.214, Mac: B4:22:00:63:DD:3D, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 450 2026-02-16 21:54:36.972168+00 radmin 660ffc7a-f3fe-4ede-a645-4ccdfc7f6f46 create 165 165 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 165, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:36.959Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 451 2026-02-16 21:54:37.160697+00 radmin d9734885-1733-4643-8026-15d5a184fb34 create 17 \N B4:22:00:63:DD:3D \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:37.157Z", "comments": "", "description": "", "mac_address": "B4:22:00:63:DD:3D", "custom_fields": {}, "assigned_object_id": 165, "assigned_object_type": 7} 76 \N 1 | |
| 452 2026-02-16 21:54:38.321269+00 radmin c977f54d-d345-4a0d-87a5-469a223b3739 create 166 \N Unknown-10.0.0.216 \N {"face": "", "name": "Unknown-10.0.0.216", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:38.317Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.216, Mac: B4:22:00:53:61:D6, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 453 2026-02-16 21:54:38.502902+00 radmin 44df948a-0ff0-4641-9802-1402819db6da create 166 166 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 166, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:38.491Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 454 2026-02-16 21:54:38.680269+00 radmin 6433d31e-725b-4e04-9fce-6d07feddcb71 create 18 \N B4:22:00:53:61:D6 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:38.677Z", "comments": "", "description": "", "mac_address": "B4:22:00:53:61:D6", "custom_fields": {}, "assigned_object_id": 166, "assigned_object_type": 7} 76 \N 1 | |
| 455 2026-02-16 21:54:39.856191+00 radmin eee1490f-7838-4a4e-bc83-8bfdac0e1a89 create 167 \N Unknown-10.0.0.221 \N {"face": "", "name": "Unknown-10.0.0.221", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:39.852Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.221, Mac: 40:5B:D8:CF:C1:C6, Vendor: Chongqing Fugui Electronics\\n Detalhes: {'manufacturer': 'CHONGQING FUGUI ELECTRONICS CO.,LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 456 2026-02-16 21:54:40.029062+00 radmin 12048ba2-9ba7-4815-b513-7071d47ffe6b create 167 167 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 167, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:40.016Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 457 2026-02-16 21:54:40.217636+00 radmin b627f408-cc54-4a90-8451-73225a49c6cb create 19 \N 40:5B:D8:CF:C1:C6 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:40.211Z", "comments": "", "description": "", "mac_address": "40:5B:D8:CF:C1:C6", "custom_fields": {}, "assigned_object_id": 167, "assigned_object_type": 7} 76 \N 1 | |
| 458 2026-02-16 21:54:40.779918+00 radmin 81460b64-96e7-4ecc-8673-966b38d286fc create 168 \N Unknown-10.0.0.222 \N {"face": "", "name": "Unknown-10.0.0.222", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:40.776Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.222, Mac: B4:22:00:07:DE:D3, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 459 2026-02-16 21:54:40.960399+00 radmin f847af25-ea21-4bc6-aa5c-2a38f28c6c19 create 168 168 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 168, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:40.948Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 460 2026-02-16 21:54:41.146272+00 radmin 626cb198-79da-4321-bac5-9c4276fbb192 create 20 \N B4:22:00:07:DE:D3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:41.143Z", "comments": "", "description": "", "mac_address": "B4:22:00:07:DE:D3", "custom_fields": {}, "assigned_object_id": 168, "assigned_object_type": 7} 76 \N 1 | |
| 461 2026-02-16 21:54:42.309391+00 radmin 5d0be8df-dffa-41fb-8f6c-27f0ed471820 create 169 \N Unknown-10.0.0.223 \N {"face": "", "name": "Unknown-10.0.0.223", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:42.305Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.223, Mac: B4:22:00:25:0C:F4, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 462 2026-02-16 21:54:42.494006+00 radmin e2089919-2fd7-4b6a-bc13-04d189d7ba39 create 169 169 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 169, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:42.479Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 463 2026-02-16 21:54:42.676823+00 radmin 8feff3b6-b498-423c-99e9-399552efe245 create 21 \N B4:22:00:25:0C:F4 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:42.673Z", "comments": "", "description": "", "mac_address": "B4:22:00:25:0C:F4", "custom_fields": {}, "assigned_object_id": 169, "assigned_object_type": 7} 76 \N 1 | |
| 464 2026-02-16 21:54:43.848737+00 radmin c4725a54-dfd5-42c7-8b96-2bb7e73e1fc9 create 170 \N Unknown-10.0.0.224 \N {"face": "", "name": "Unknown-10.0.0.224", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:43.845Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.224, Mac: 5C:BA:2C:3B:5D:48, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 465 2026-02-16 21:54:44.025605+00 radmin 6dd9a7ec-f7c4-40dd-bc63-a3757d911ab4 create 170 170 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 170, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:44.013Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 466 2026-02-16 21:54:44.213207+00 radmin 9f0e68f1-b113-4beb-9a5f-581ffdec51f0 create 22 \N 5C:BA:2C:3B:5D:48 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:44.209Z", "comments": "", "description": "", "mac_address": "5C:BA:2C:3B:5D:48", "custom_fields": {}, "assigned_object_id": 170, "assigned_object_type": 7} 76 \N 1 | |
| 467 2026-02-16 21:54:45.079305+00 radmin f7ca34ae-38da-45b0-8291-a4cc7a228605 create 171 \N Unknown-10.0.0.226 \N {"face": "", "name": "Unknown-10.0.0.226", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:45.075Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.226, Mac: 94:DD:F8:10:E3:3D, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 468 2026-02-16 21:54:45.253771+00 radmin 5ab9841a-7a64-4a6e-9a06-57deb4d88fa2 create 171 171 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 171, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:45.241Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 469 2026-02-16 21:54:45.442474+00 radmin 836e5f53-b67e-4946-8653-8d7442222d1a create 23 \N 94:DD:F8:10:E3:3D \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:45.439Z", "comments": "", "description": "", "mac_address": "94:DD:F8:10:E3:3D", "custom_fields": {}, "assigned_object_id": 171, "assigned_object_type": 7} 76 \N 1 | |
| 470 2026-02-16 21:54:46.580736+00 radmin d731ec64-a93a-4c98-a8eb-8565e9800d38 create 172 \N Unknown-10.0.0.227 \N {"face": "", "name": "Unknown-10.0.0.227", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:46.577Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.227, Mac: B4:22:00:47:48:0B, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 471 2026-02-16 21:54:46.762655+00 radmin fa429ed4-0d21-49d1-917b-b3270094a2f2 create 172 172 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 172, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:46.751Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 472 2026-02-16 21:54:46.951044+00 radmin a4c04001-c711-4bad-bb71-3d422ed9909d create 24 \N B4:22:00:47:48:0B \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:46.947Z", "comments": "", "description": "", "mac_address": "B4:22:00:47:48:0B", "custom_fields": {}, "assigned_object_id": 172, "assigned_object_type": 7} 76 \N 1 | |
| 473 2026-02-16 21:54:47.9155+00 radmin de348eb2-31c0-4379-b6bd-b0f77b469991 create 173 \N Unknown-10.0.0.230 \N {"face": "", "name": "Unknown-10.0.0.230", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:47.911Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.230, Mac: 00:0C:29:CD:DC:09, Vendor: VMware\\n Detalhes: {'manufacturer': 'VMware, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 474 2026-02-16 21:54:48.107237+00 radmin ff8ccb27-5f13-440c-bef5-4ace9d2ba993 create 173 173 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 173, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:48.095Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 475 2026-02-16 21:54:48.281779+00 radmin e01a576d-bd56-4566-b659-c316a7becb8a create 25 \N 00:0C:29:CD:DC:09 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:48.278Z", "comments": "", "description": "", "mac_address": "00:0C:29:CD:DC:09", "custom_fields": {}, "assigned_object_id": 173, "assigned_object_type": 7} 76 \N 1 | |
| 476 2026-02-16 21:54:49.173502+00 radmin 09a2403d-183e-4c26-b120-b4cbb8ad9d49 create 174 \N Unknown-10.0.0.234 \N {"face": "", "name": "Unknown-10.0.0.234", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:49.169Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.234, Mac: B4:22:00:CD:95:62, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 477 2026-02-16 21:54:49.301878+00 radmin 9640ff5b-cddb-4450-aba2-80a76ce2f709 create 174 174 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 174, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:49.294Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 478 2026-02-16 21:54:49.419065+00 radmin b519de40-99c8-40e3-b4fb-4848e138dedf create 26 \N B4:22:00:CD:95:62 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:49.417Z", "comments": "", "description": "", "mac_address": "B4:22:00:CD:95:62", "custom_fields": {}, "assigned_object_id": 174, "assigned_object_type": 7} 76 \N 1 | |
| 479 2026-02-16 21:54:50.060938+00 radmin b1d2efb8-2200-4c35-9e7d-87ad671d4a1a create 175 \N Unknown-10.0.0.235 \N {"face": "", "name": "Unknown-10.0.0.235", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:50.059Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.235, Mac: 94:DD:F8:15:70:B1, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 480 2026-02-16 21:54:50.155161+00 radmin 30a3fac5-8714-411d-821e-8936b9baf085 create 175 175 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 175, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:50.149Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 481 2026-02-16 21:54:50.271662+00 radmin 4aa9cd92-b213-484c-ae4b-9c07dc4907fb create 27 \N 94:DD:F8:15:70:B1 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:50.270Z", "comments": "", "description": "", "mac_address": "94:DD:F8:15:70:B1", "custom_fields": {}, "assigned_object_id": 175, "assigned_object_type": 7} 76 \N 1 | |
| 482 2026-02-16 21:54:51.791794+00 radmin 1b0b93fa-5480-40e8-a689-02a8cd746fd9 create 176 \N Unknown-10.0.0.24 \N {"face": "", "name": "Unknown-10.0.0.24", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:51.790Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.24, Mac: 84:C9:B2:42:80:B3, Vendor: D-Link International\\n Detalhes: {'manufacturer': 'D-Link International', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 483 2026-02-16 21:54:51.876687+00 radmin 251c94e5-a91a-4a3d-9aeb-41f72502012e create 176 176 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 176, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:51.871Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 484 2026-02-16 21:54:51.993701+00 radmin 71202856-8ef1-4e6b-9484-e7ee9b0791c7 create 28 \N 84:C9:B2:42:80:B3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:51.991Z", "comments": "", "description": "", "mac_address": "84:C9:B2:42:80:B3", "custom_fields": {}, "assigned_object_id": 176, "assigned_object_type": 7} 76 \N 1 | |
| 485 2026-02-16 21:54:52.751854+00 radmin 3582906f-bc57-4935-929f-6dd1834b75c0 create 177 \N Unknown-10.0.0.242 \N {"face": "", "name": "Unknown-10.0.0.242", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:52.748Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.242, Mac: 30:05:5C:4D:4C:00, Vendor: Brother industries\\n Detalhes: {'manufacturer': 'Brother industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 486 2026-02-16 21:54:52.916894+00 radmin 1089fbcc-5033-4999-9ea0-c75eb688d90f create 177 177 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 177, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:52.907Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 487 2026-02-16 21:54:53.086955+00 radmin 97ec4f3f-edff-468f-b759-186f973d6bff create 29 \N 30:05:5C:4D:4C:00 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:53.084Z", "comments": "", "description": "", "mac_address": "30:05:5C:4D:4C:00", "custom_fields": {}, "assigned_object_id": 177, "assigned_object_type": 7} 76 \N 1 | |
| 488 2026-02-16 21:54:54.298204+00 radmin 9a4b6c53-8f44-4ba5-bc21-2bcbd9e9cd7c create 178 \N Unknown-10.0.0.244 \N {"face": "", "name": "Unknown-10.0.0.244", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:54.294Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.244, Mac: EC:08:6B:5C:91:94, Vendor: TP-Link Technologies\\n Detalhes: {'manufacturer': 'TP-LINK TECHNOLOGIES CO.,LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 489 2026-02-16 21:54:54.482004+00 radmin 246cddcc-c5ef-4b7f-a8b1-4b4c6bcf1106 create 178 178 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 178, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:54.469Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 490 2026-02-16 21:54:54.676056+00 radmin d551e5fd-3b71-480e-9377-1ebb823ccce0 create 30 \N EC:08:6B:5C:91:94 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:54.672Z", "comments": "", "description": "", "mac_address": "EC:08:6B:5C:91:94", "custom_fields": {}, "assigned_object_id": 178, "assigned_object_type": 7} 76 \N 1 | |
| 491 2026-02-16 21:54:55.829506+00 radmin 30f103b5-c625-472f-abc8-edeb50b96246 create 179 \N Unknown-10.0.0.248 \N {"face": "", "name": "Unknown-10.0.0.248", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:55.825Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.248, Mac: 00:90:F8:05:CC:A5, Vendor: Mediatrix Telecom\\n Detalhes: {'manufacturer': 'MEDIATRIX TELECOM', 'country': 'CA', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 492 2026-02-16 21:54:55.993014+00 radmin c70eceb6-c7d2-448b-9c0b-61619d653d14 create 179 179 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 179, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:55.983Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 493 2026-02-16 21:54:56.16399+00 radmin 4156f230-45c4-4f53-8588-a0d12c7d995b create 31 \N 00:90:F8:05:CC:A5 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:56.160Z", "comments": "", "description": "", "mac_address": "00:90:F8:05:CC:A5", "custom_fields": {}, "assigned_object_id": 179, "assigned_object_type": 7} 76 \N 1 | |
| 494 2026-02-16 21:54:56.751041+00 radmin 40ae7aed-2241-4222-9d08-4c95e3d52d7a create 180 \N Unknown-10.0.0.250 \N {"face": "", "name": "Unknown-10.0.0.250", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:56.747Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.250, Mac: E4:FA:C4:0E:19:80, Vendor: Unknown\\n Detalhes: {'manufacturer': 'TP-Link Systems Inc', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 495 2026-02-16 21:54:56.916745+00 radmin 20cdab88-45fc-4437-9791-3333d3baba5f create 180 180 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 180, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:56.907Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 496 2026-02-16 21:54:57.082119+00 radmin e8ae38f9-9ccc-4dd0-9d0e-b2b729e7e3f6 create 32 \N E4:FA:C4:0E:19:80 \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:57.079Z", "comments": "", "description": "", "mac_address": "E4:FA:C4:0E:19:80", "custom_fields": {}, "assigned_object_id": 180, "assigned_object_type": 7} 76 \N 1 | |
| 497 2026-02-16 21:54:58.2877+00 radmin 5b47f6c1-588b-44c6-b096-78109e943387 create 181 \N Unknown-10.0.0.26 \N {"face": "", "name": "Unknown-10.0.0.26", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:58.284Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.26, Mac: 10:BE:F5:53:A9:2E, Vendor: D-Link International\\n Detalhes: {'manufacturer': 'D-Link International', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 498 2026-02-16 21:54:58.460265+00 radmin 631ec666-a94c-4655-bdb5-855773b361c0 create 181 181 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 181, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:58.450Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 499 2026-02-16 21:54:58.63239+00 radmin 288992eb-4caf-41f0-b35c-b5625bd98c08 create 33 \N 10:BE:F5:53:A9:2E \N {"tags": [], "owner": null, "created": "2026-02-16T21:54:58.629Z", "comments": "", "description": "", "mac_address": "10:BE:F5:53:A9:2E", "custom_fields": {}, "assigned_object_id": 181, "assigned_object_type": 7} 76 \N 1 | |
| 500 2026-02-16 21:54:59.835474+00 radmin f0d0af94-d148-458b-9ad9-9cfad05f4135 create 182 \N Unknown-10.0.0.32 \N {"face": "", "name": "Unknown-10.0.0.32", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:59.831Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.32, Mac: 98:BA:5F:1C:23:64, Vendor: Unknown\\n Detalhes: {'manufacturer': 'TP-Link Systems Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 501 2026-02-16 21:55:00.014334+00 radmin 9fc57f3a-71b0-4929-874f-28654857f71f create 182 182 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 182, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:00.001Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 502 2026-02-16 21:55:00.204037+00 radmin 067d3631-31b7-43e7-bf50-b84d766dde4e create 34 \N 98:BA:5F:1C:23:64 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:00.200Z", "comments": "", "description": "", "mac_address": "98:BA:5F:1C:23:64", "custom_fields": {}, "assigned_object_id": 182, "assigned_object_type": 7} 76 \N 1 | |
| 503 2026-02-16 21:55:01.057932+00 radmin 92fc7773-9ee9-4b97-b6e9-f84293f1c39f create 183 \N Unknown-10.0.0.37 \N {"face": "", "name": "Unknown-10.0.0.37", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:01.053Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.37, Mac: C4:6E:1F:EC:CC:CB, Vendor: TP-Link Technologies\\n Detalhes: {'manufacturer': 'TP-LINK TECHNOLOGIES CO.,LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 504 2026-02-16 21:55:01.236143+00 radmin 9fe3a56a-a19c-42a6-beeb-d647f56aee26 create 183 183 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 183, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:01.225Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 505 2026-02-16 21:55:01.428595+00 radmin 582aa496-9e01-4fe6-ac14-66697fbc6251 create 35 \N C4:6E:1F:EC:CC:CB \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:01.424Z", "comments": "", "description": "", "mac_address": "C4:6E:1F:EC:CC:CB", "custom_fields": {}, "assigned_object_id": 183, "assigned_object_type": 7} 76 \N 1 | |
| 506 2026-02-16 21:55:02.582799+00 radmin 13d4a079-f514-4c3e-821b-8f553683ccdf create 184 \N Unknown-10.0.0.41 \N {"face": "", "name": "Unknown-10.0.0.41", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:02.579Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.41, Mac: 76:90:CF:18:16:2E, Vendor: Unknown\\n Detalhes: {'manufacturer': '', 'country': '', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 507 2026-02-16 21:55:02.750703+00 radmin b9e7a05b-72e4-4b7e-9baa-c2b2f8536698 create 184 184 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 184, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:02.740Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 508 2026-02-16 21:55:02.92113+00 radmin e599c184-54ed-401a-a6d0-dd875a6d37d1 create 36 \N 76:90:CF:18:16:2E \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:02.918Z", "comments": "", "description": "", "mac_address": "76:90:CF:18:16:2E", "custom_fields": {}, "assigned_object_id": 184, "assigned_object_type": 7} 76 \N 1 | |
| 509 2026-02-16 21:55:04.128521+00 radmin 8dea5965-177d-4b44-96bf-21caffa63a94 create 185 \N Unknown-10.0.0.45 \N {"face": "", "name": "Unknown-10.0.0.45", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:04.124Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.45, Mac: 4A:F2:9B:19:2B:21, Vendor: Unknown\\n Detalhes: {'manufacturer': '', 'country': '', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 510 2026-02-16 21:55:04.298661+00 radmin b1a61e6b-0419-4048-a169-d012a77662e1 create 185 185 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 185, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:04.288Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 511 2026-02-16 21:55:04.483303+00 radmin 7e8b3e6d-3b22-482f-8a9b-f2f8722f9474 create 37 \N 4A:F2:9B:19:2B:21 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:04.479Z", "comments": "", "description": "", "mac_address": "4A:F2:9B:19:2B:21", "custom_fields": {}, "assigned_object_id": 185, "assigned_object_type": 7} 76 \N 1 | |
| 512 2026-02-16 21:55:05.656352+00 radmin cd1ff5a8-e2e9-4011-87a6-aa5f93150394 create 186 \N Unknown-10.0.0.50 \N {"face": "", "name": "Unknown-10.0.0.50", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:05.651Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.50, Mac: 20:67:7C:E5:7A:90, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 513 2026-02-16 21:55:05.824542+00 radmin 3ca17827-0f7c-46c3-acee-826add4bc65a create 186 186 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 186, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:05.814Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 514 2026-02-16 21:55:05.99258+00 radmin 29eef739-2ad7-4425-8225-0b4c6a145583 create 38 \N 20:67:7C:E5:7A:90 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:05.989Z", "comments": "", "description": "", "mac_address": "20:67:7C:E5:7A:90", "custom_fields": {}, "assigned_object_id": 186, "assigned_object_type": 7} 76 \N 1 | |
| 515 2026-02-16 21:55:06.78674+00 radmin a13c3ec5-3f4d-4269-ad05-27d4040c98f1 create 187 \N Unknown-10.0.0.58 \N {"face": "", "name": "Unknown-10.0.0.58", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:06.783Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.58, Mac: 00:0C:29:6B:91:C5, Vendor: VMware\\n Detalhes: {'manufacturer': 'VMware, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 516 2026-02-16 21:55:06.94829+00 radmin fb89a6eb-aca4-40c1-9f29-c9ea70806eb4 create 187 187 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 187, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:06.938Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 517 2026-02-16 21:55:07.118269+00 radmin 7b7bc30a-e178-4846-b5f8-e4948bc77e70 create 39 \N 00:0C:29:6B:91:C5 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:07.114Z", "comments": "", "description": "", "mac_address": "00:0C:29:6B:91:C5", "custom_fields": {}, "assigned_object_id": 187, "assigned_object_type": 7} 76 \N 1 | |
| 518 2026-02-16 21:55:08.114943+00 radmin f295d2da-87de-4b89-a2d7-a5c880021b4f create 188 \N Unknown-10.0.0.6 \N {"face": "", "name": "Unknown-10.0.0.6", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:08.111Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.6, Mac: 94:18:82:89:5D:60, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 519 2026-02-16 21:55:08.275876+00 radmin 233b0f7b-cc3b-46c8-aee3-22c78508efce create 188 188 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 188, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:08.265Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 520 2026-02-16 21:55:08.451512+00 radmin 5d23b55f-6b26-4b0f-a6e3-00793ee8e7d1 create 40 \N 94:18:82:89:5D:60 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:08.448Z", "comments": "", "description": "", "mac_address": "94:18:82:89:5D:60", "custom_fields": {}, "assigned_object_id": 188, "assigned_object_type": 7} 76 \N 1 | |
| 521 2026-02-16 21:55:09.654465+00 radmin d3ec3f0e-4401-4405-9ad0-f96b4a0a6e3d create 189 \N Unknown-10.0.0.65 \N {"face": "", "name": "Unknown-10.0.0.65", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:09.651Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.65, Mac: 1C:5F:2B:B2:49:A5, Vendor: D-Link International\\n Detalhes: {'manufacturer': 'D-Link International', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 522 2026-02-16 21:55:09.81882+00 radmin 398b3902-e360-4166-853d-65df68c095ba create 189 189 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 189, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:09.809Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 523 2026-02-16 21:55:09.985367+00 radmin d2dbdcdd-01ef-4d66-8bf6-e14f8fd37bc2 create 41 \N 1C:5F:2B:B2:49:A5 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:09.981Z", "comments": "", "description": "", "mac_address": "1C:5F:2B:B2:49:A5", "custom_fields": {}, "assigned_object_id": 189, "assigned_object_type": 7} 76 \N 1 | |
| 524 2026-02-16 21:55:10.921202+00 radmin dd4a893b-90bb-4e1a-9bf5-b93c6a10f2ff create 190 \N Unknown-10.0.0.67 \N {"face": "", "name": "Unknown-10.0.0.67", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:10.917Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.67, Mac: B4:22:00:B8:0A:95, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 525 2026-02-16 21:55:11.089891+00 radmin b9bd2e48-24a2-4bde-b4a4-2bcfe30075b9 create 190 190 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 190, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:11.080Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 526 2026-02-16 21:55:11.263969+00 radmin 2fc026e1-e754-4904-a97b-192c255dda2b create 42 \N B4:22:00:B8:0A:95 \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:11.261Z", "comments": "", "description": "", "mac_address": "B4:22:00:B8:0A:95", "custom_fields": {}, "assigned_object_id": 190, "assigned_object_type": 7} 76 \N 1 | |
| 527 2026-02-16 21:55:12.725363+00 radmin a46efe27-bda4-4e71-80f7-11f68a2b5584 create 191 \N Unknown-10.0.0.8 \N {"face": "", "name": "Unknown-10.0.0.8", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:12.721Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.8, Mac: 98:F2:B3:29:9F:1C, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 528 2026-02-16 21:55:12.899532+00 radmin 0680c877-3650-40a3-956a-96048684293a create 191 191 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 191, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:12.888Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 529 2026-02-16 21:55:13.09223+00 radmin f8acfca4-f645-4028-b3f0-7e8b0672fc1b create 43 \N 98:F2:B3:29:9F:1C \N {"tags": [], "owner": null, "created": "2026-02-16T21:55:13.088Z", "comments": "", "description": "", "mac_address": "98:F2:B3:29:9F:1C", "custom_fields": {}, "assigned_object_id": 191, "assigned_object_type": 7} 76 \N 1 | |
| 530 2026-02-16 21:57:42.377966+00 radmin 18794e2a-16e5-4b0b-b33b-ae819e7d7681 create 192 \N Unknown-10.0.1.10 \N {"face": "", "name": "Unknown-10.0.1.10", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:57:42.371Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.10, Mac: B0:41:1D:A2:5E:4C, Vendor: Ittim Technologies\\n Detalhes: {'manufacturer': 'ITTIM Technologies', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 531 2026-02-16 21:57:42.652966+00 radmin 0be3d92b-e2d6-4975-bc95-e65be364b00d create 192 192 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 192, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:57:42.635Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 532 2026-02-16 21:57:42.895481+00 radmin 04e98d07-b676-4832-9f81-c56b9fce1f53 create 44 \N B0:41:1D:A2:5E:4C \N {"tags": [], "owner": null, "created": "2026-02-16T21:57:42.890Z", "comments": "", "description": "", "mac_address": "B0:41:1D:A2:5E:4C", "custom_fields": {}, "assigned_object_id": 192, "assigned_object_type": 7} 76 \N 1 | |
| 533 2026-02-16 21:57:48.817853+00 radmin f087c462-9dba-4d3a-8df0-793e2babd6bf create 193 \N Unknown-10.0.1.135 \N {"face": "", "name": "Unknown-10.0.1.135", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:57:48.812Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.135, Mac: A0:D7:F3:6C:ED:1C, Vendor: Samsung Electronics\\n Detalhes: {'manufacturer': 'Samsung Electronics Co.,Ltd', 'country': 'KR', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 534 2026-02-16 21:57:49.068675+00 radmin fdd58186-057d-4fc0-8ade-50cf0543d009 create 193 193 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 193, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:57:49.053Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 535 2026-02-16 21:57:49.37929+00 radmin 6feefc64-8e98-4f93-a63a-e7864e6be8df create 45 \N A0:D7:F3:6C:ED:1C \N {"tags": [], "owner": null, "created": "2026-02-16T21:57:49.373Z", "comments": "", "description": "", "mac_address": "A0:D7:F3:6C:ED:1C", "custom_fields": {}, "assigned_object_id": 193, "assigned_object_type": 7} 76 \N 1 | |
| 536 2026-02-16 21:57:54.800838+00 radmin 9227ec34-bbe6-4e83-8f6b-8e6ae59bf6cc create 194 \N Unknown-10.0.1.157 \N {"face": "", "name": "Unknown-10.0.1.157", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:57:54.793Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.157, Mac: AC:F2:3C:ED:2B:C1, Vendor: Unknown\\n Detalhes: {'manufacturer': 'CLOUD NETWORK TECHNOLOGY SINGAPORE PTE. LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 537 2026-02-16 21:57:54.801672+00 radmin 9583c757-f8d1-4920-803b-d9b59f149bbb create 195 \N Unknown-10.0.2.10 \N {"face": "", "name": "Unknown-10.0.2.10", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:57:54.794Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.10, Mac: 00:0C:29:6B:6C:63, Vendor: VMware\\n Detalhes: {'manufacturer': 'VMware, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 538 2026-02-16 21:57:55.124158+00 radmin cdcb86c4-e7eb-4beb-a624-e6c2d7cbfb43 create 194 194 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 194, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:57:55.104Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 540 2026-02-16 21:57:55.424931+00 radmin bbf1fd24-2149-4c47-9bea-f973377648b6 create 46 \N AC:F2:3C:ED:2B:C1 \N {"tags": [], "owner": null, "created": "2026-02-16T21:57:55.415Z", "comments": "", "description": "", "mac_address": "AC:F2:3C:ED:2B:C1", "custom_fields": {}, "assigned_object_id": 194, "assigned_object_type": 7} 76 \N 1 | |
| 548 2026-02-16 21:58:01.765655+00 radmin a69cab9c-c2f8-4334-aae1-bda87d6ee196 create 198 \N Unknown-10.0.1.17 \N {"face": "", "name": "Unknown-10.0.1.17", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:01.758Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.17, Mac: FC:EC:DA:A9:FC:6C, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 550 2026-02-16 21:58:02.091422+00 radmin cf9115ca-e938-466a-a025-e5a1f5650a0d create 198 198 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 198, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:02.068Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 552 2026-02-16 21:58:02.41695+00 radmin eb9534b5-9f39-4782-ba72-90e98e926186 create 50 \N FC:EC:DA:A9:FC:6C \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:02.411Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:A9:FC:6C", "custom_fields": {}, "assigned_object_id": 198, "assigned_object_type": 7} 76 \N 1 | |
| 559 2026-02-16 21:58:07.404089+00 radmin ae6c6c97-7500-48c0-a0d1-50a6dc064a36 create 202 \N Unknown-10.0.1.18 \N {"face": "", "name": "Unknown-10.0.1.18", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:07.398Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.18, Mac: FC:EC:DA:AC:00:B6, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 560 2026-02-16 21:58:07.660967+00 radmin a8d789b0-ba9e-4dd8-88d2-baf87bdfd0ce create 202 202 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 202, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:07.644Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 561 2026-02-16 21:58:08.076416+00 radmin 7683ac91-891c-4e27-88b1-e5d877ba61e3 create 53 \N FC:EC:DA:AC:00:B6 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:08.069Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:AC:00:B6", "custom_fields": {}, "assigned_object_id": 202, "assigned_object_type": 7} 76 \N 1 | |
| 565 2026-02-16 21:58:12.679437+00 radmin 133acbdb-79d3-4eac-b4ef-a45dffb1fc64 create 204 \N Unknown-10.0.1.19 \N {"face": "", "name": "Unknown-10.0.1.19", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:12.671Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.19, Mac: 94:E0:D6:D9:BE:26, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 539 2026-02-16 21:57:55.271591+00 radmin 3a582c0c-aeaf-4d54-8a0b-f3381c860be2 create 195 195 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 195, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:57:55.244Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 541 2026-02-16 21:57:55.567976+00 radmin c3c9eee8-8a2c-4d46-b2d5-590f2dabaae4 create 47 \N 00:0C:29:6B:6C:63 \N {"tags": [], "owner": null, "created": "2026-02-16T21:57:55.562Z", "comments": "", "description": "", "mac_address": "00:0C:29:6B:6C:63", "custom_fields": {}, "assigned_object_id": 195, "assigned_object_type": 7} 76 \N 1 | |
| 542 2026-02-16 21:57:57.416365+00 radmin b738da57-33bd-466c-9e1d-8a758722dfca create 196 \N Unknown-10.0.2.166 \N {"face": "", "name": "Unknown-10.0.2.166", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:57:57.411Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.166, Mac: 10:E7:C6:4B:ED:AD, Vendor: Hewlett Packard\\n Detalhes: {'manufacturer': 'Hewlett Packard', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 543 2026-02-16 21:57:57.694094+00 radmin f156a4d2-8e34-4a69-8bda-2b6a1756fe1f create 196 196 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 196, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:57:57.670Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 544 2026-02-16 21:57:58.124094+00 radmin f3ef15fb-2869-4945-a784-a45f91cfdc26 create 48 \N 10:E7:C6:4B:ED:AD \N {"tags": [], "owner": null, "created": "2026-02-16T21:57:58.116Z", "comments": "", "description": "", "mac_address": "10:E7:C6:4B:ED:AD", "custom_fields": {}, "assigned_object_id": 196, "assigned_object_type": 7} 76 \N 1 | |
| 545 2026-02-16 21:57:59.28699+00 radmin 3d8fd454-c93d-4a05-828d-f8dc6ff270ec create 197 \N Unknown-10.0.2.170 \N {"face": "", "name": "Unknown-10.0.2.170", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:57:59.281Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.170, Mac: E4:B9:7A:82:AC:6D, Vendor: Dell\\n Detalhes: {'manufacturer': 'Dell Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 546 2026-02-16 21:57:59.747246+00 radmin 6ee79fc2-4b99-4331-8a69-34442b430604 create 197 197 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 197, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:57:59.719Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 547 2026-02-16 21:58:00.272892+00 radmin f3bb3938-ca11-4116-9ee1-39c925eba211 create 49 \N E4:B9:7A:82:AC:6D \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:00.248Z", "comments": "", "description": "", "mac_address": "E4:B9:7A:82:AC:6D", "custom_fields": {}, "assigned_object_id": 197, "assigned_object_type": 7} 76 \N 1 | |
| 549 2026-02-16 21:58:01.766509+00 radmin e8a9cd87-4da4-421d-b84f-76ce947b088c create 199 \N Unknown-10.0.2.176 \N {"face": "", "name": "Unknown-10.0.2.176", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:01.759Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.176, Mac: EC:EB:B8:91:83:3C, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 551 2026-02-16 21:58:02.217933+00 radmin b63c3495-8480-4a57-8a68-0182e9980fa7 create 199 199 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 199, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:02.197Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 553 2026-02-16 21:58:02.534129+00 radmin b1dd0f29-6d6e-49e5-92d3-86c550647720 create 51 \N EC:EB:B8:91:83:3C \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:02.529Z", "comments": "", "description": "", "mac_address": "EC:EB:B8:91:83:3C", "custom_fields": {}, "assigned_object_id": 199, "assigned_object_type": 7} 76 \N 1 | |
| 554 2026-02-16 21:58:03.959796+00 radmin 39440d98-b02b-403c-aef6-363b915eed81 create 200 \N ayrton-LOQ \N {"face": "", "name": "ayrton-LOQ", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:03.952Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.2.199", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 555 2026-02-16 21:58:04.427244+00 radmin 69d833ba-79de-44f7-a24c-c0d4c7937782 create 200 200 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 200, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:04.404Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 556 2026-02-16 21:58:06.374937+00 radmin 970f0f08-ce5c-4d54-8060-30dcaf5bc1db create 201 \N Unknown-10.0.2.208 \N {"face": "", "name": "Unknown-10.0.2.208", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:06.357Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.208, Mac: 44:6A:B7:82:9E:F3, Vendor: Arris Group\\n Detalhes: {'manufacturer': 'Commscope', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 557 2026-02-16 21:58:06.762384+00 radmin 1ec944bc-01b8-4ebb-9e4c-5e50a11e1a8c create 201 201 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 201, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:06.744Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 558 2026-02-16 21:58:07.004579+00 radmin 50b5a073-2932-4aab-adb8-8eb198fdc0ef create 52 \N 44:6A:B7:82:9E:F3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:06.999Z", "comments": "", "description": "", "mac_address": "44:6A:B7:82:9E:F3", "custom_fields": {}, "assigned_object_id": 201, "assigned_object_type": 7} 76 \N 1 | |
| 562 2026-02-16 21:58:10.672307+00 radmin b14e26bd-36b5-4f96-9768-1f2f15e2057b create 203 \N Unknown-10.0.2.227 \N {"face": "", "name": "Unknown-10.0.2.227", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:10.665Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.227, Mac: 94:BA:06:05:B9:A3, Vendor: Unknown\\n Detalhes: {'manufacturer': 'SHENZHEN BILIAN ELECTRONIC CO.,LTD', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 563 2026-02-16 21:58:11.114359+00 radmin a34d3563-d44c-4b3a-80de-28dbd4abccac create 203 203 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 203, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:11.097Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 564 2026-02-16 21:58:11.532628+00 radmin d68a548e-a0eb-4bf1-96bb-a23eb639cefb create 54 \N 94:BA:06:05:B9:A3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:11.527Z", "comments": "", "description": "", "mac_address": "94:BA:06:05:B9:A3", "custom_fields": {}, "assigned_object_id": 203, "assigned_object_type": 7} 76 \N 1 | |
| 566 2026-02-16 21:58:12.680344+00 radmin c784dc29-181e-434a-b891-e1f163d88ac7 create 205 \N Unknown-10.0.2.229 \N {"face": "", "name": "Unknown-10.0.2.229", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:12.673Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.229, Mac: 54:B7:BD:AD:6B:70, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Arcadyan Corporation', 'country': 'TW', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 568 2026-02-16 21:58:13.124597+00 radmin 305d34ab-fbb0-49fa-8f16-e17471477a93 create 205 205 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 205, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:13.103Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 570 2026-02-16 21:58:13.431544+00 radmin e59e0d01-42a9-4d9d-adb2-a52e0258a21c create 56 \N 54:B7:BD:AD:6B:70 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:13.422Z", "comments": "", "description": "", "mac_address": "54:B7:BD:AD:6B:70", "custom_fields": {}, "assigned_object_id": 205, "assigned_object_type": 7} 76 \N 1 | |
| 571 2026-02-16 21:58:14.694939+00 radmin 1395a706-b0bc-47e7-ada0-9e139fbc5c51 create 206 \N Unknown-10.0.2.242 \N {"face": "", "name": "Unknown-10.0.2.242", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:14.693Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.242, Mac: 80:AF:CA:AB:CD:A4, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Shenzhen Cudy Technology Co., Ltd.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 572 2026-02-16 21:58:14.840979+00 radmin 86ce317b-02fb-4392-b9b1-d67ef806b4fa create 206 206 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 206, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:14.835Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 573 2026-02-16 21:58:14.978181+00 radmin 73e09195-2da9-474e-89e5-9044b11b5999 create 57 \N 80:AF:CA:AB:CD:A4 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:14.975Z", "comments": "", "description": "", "mac_address": "80:AF:CA:AB:CD:A4", "custom_fields": {}, "assigned_object_id": 206, "assigned_object_type": 7} 76 \N 1 | |
| 575 2026-02-16 21:58:16.407771+00 radmin 846a8f78-4817-4d4b-ad61-cec9e2dac646 create 208 \N Unknown-10.0.2.5 \N {"face": "", "name": "Unknown-10.0.2.5", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:16.405Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.5, Mac: 0C:38:3E:0F:F1:59, Vendor: Fanvil Technology\\n Detalhes: {'manufacturer': 'Fanvil Technology Co., Ltd.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 567 2026-02-16 21:58:13.005902+00 radmin 9839895a-1700-491d-9460-417791ff2b29 create 204 204 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 204, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:12.984Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 569 2026-02-16 21:58:13.319673+00 radmin 6a730fd8-fe9e-498f-98fc-49398c877c9b create 55 \N 94:E0:D6:D9:BE:26 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:13.314Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:BE:26", "custom_fields": {}, "assigned_object_id": 204, "assigned_object_type": 7} 76 \N 1 | |
| 574 2026-02-16 21:58:16.407541+00 radmin 6959e6cb-cd10-45ef-b558-d9da5422f0b9 create 207 \N Unknown-10.0.1.2 \N {"face": "", "name": "Unknown-10.0.1.2", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:16.405Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.2, Mac: 94:E0:D6:D9:D1:B8, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 577 2026-02-16 21:58:16.554247+00 radmin b4e14bbb-9fa6-4832-b332-5957c7f405f2 create 208 207 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 207, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:16.546Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 579 2026-02-16 21:58:16.678876+00 radmin 24403ef6-2f1d-4f05-aba3-c2d6fde4cb13 create 59 \N 94:E0:D6:D9:D1:B8 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:16.677Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:D1:B8", "custom_fields": {}, "assigned_object_id": 208, "assigned_object_type": 7} 76 \N 1 | |
| 580 2026-02-16 21:58:17.321539+00 radmin 441ed187-ddde-47e5-bdc5-2de063c6aae3 create 209 \N Unknown-10.0.1.20 \N {"face": "", "name": "Unknown-10.0.1.20", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:17.319Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.20, Mac: 60:7E:A4:1B:74:08, Vendor: Shanghai Imilab TechnologyLtd\\n Detalhes: {'manufacturer': 'Shanghai Imilab Technology Co.Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 583 2026-02-16 21:58:17.470625+00 radmin cddac550-ea57-41f6-a546-aa229511a8d8 create 210 209 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 209, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:17.465Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 585 2026-02-16 21:58:17.592933+00 radmin c4f40419-2da5-4381-baee-cfd03a1865fc create 61 \N 60:7E:A4:1B:74:08 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:17.586Z", "comments": "", "description": "", "mac_address": "60:7E:A4:1B:74:08", "custom_fields": {}, "assigned_object_id": 210, "assigned_object_type": 7} 76 \N 1 | |
| 586 2026-02-16 21:58:18.844119+00 radmin 5389f2ff-8154-47dd-833b-cced7818f1bd create 211 \N Unknown-10.0.1.21 \N {"face": "", "name": "Unknown-10.0.1.21", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:18.842Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.21, Mac: 80:AF:CA:56:BF:A9, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Shenzhen Cudy Technology Co., Ltd.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 576 2026-02-16 21:58:16.512518+00 radmin d06dcbad-f58c-450d-94e7-dc5f06a6e3e8 create 207 208 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 208, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:16.506Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 578 2026-02-16 21:58:16.637387+00 radmin 6d39a01a-1169-4ad1-a35a-e09efc044405 create 58 \N 0C:38:3E:0F:F1:59 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:16.635Z", "comments": "", "description": "", "mac_address": "0C:38:3E:0F:F1:59", "custom_fields": {}, "assigned_object_id": 207, "assigned_object_type": 7} 76 \N 1 | |
| 581 2026-02-16 21:58:17.321835+00 radmin 9fe59415-7a4e-4814-a952-4a4a27315073 create 210 \N Unknown-10.0.2.70 \N {"face": "", "name": "Unknown-10.0.2.70", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:17.319Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.2.70, Mac: 94:DD:F8:69:8D:EF, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 582 2026-02-16 21:58:17.435947+00 radmin bc5954bd-ccde-4f6f-87d8-3e249ef03f4c create 209 210 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 210, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:17.430Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 584 2026-02-16 21:58:17.564117+00 radmin a3323ab9-e9aa-48f8-b7c8-2ce89aa7c5c7 create 60 \N 94:DD:F8:69:8D:EF \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:17.561Z", "comments": "", "description": "", "mac_address": "94:DD:F8:69:8D:EF", "custom_fields": {}, "assigned_object_id": 209, "assigned_object_type": 7} 76 \N 1 | |
| 1235 2026-02-16 23:22:29.780207+00 radmin 8969a13e-dfd8-4c14-bb89-2cffffbf0201 create 247 \N Unknown-10.0.1.10 \N {"face": "", "name": "Unknown-10.0.1.10", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T23:22:29.777Z", "comments": "Mac: B0:41:1D:A2:5E:4C IP: 10.0.1.10, Vendor: Ittim Technologies", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "Mac: B0:41:1D:A2:5E:4C IP: 10.0.1.10, Vendor: Ittim Technologies", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 1236 2026-02-16 23:22:29.916606+00 radmin d415a1fb-d642-43b6-a965-b662253e6de0 create 247 247 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 247, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T23:22:29.908Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 1237 2026-02-16 23:22:30.061325+00 radmin 102b5a95-9e11-4669-940d-e8c9c9627f13 create 98 \N B0:41:1D:A2:5E:4C \N {"tags": [], "owner": null, "created": "2026-02-16T23:22:30.058Z", "comments": "", "description": "", "mac_address": "B0:41:1D:A2:5E:4C", "custom_fields": {}, "assigned_object_id": 247, "assigned_object_type": 7} 76 \N 1 | |
| 1238 2026-02-16 23:22:30.696752+00 radmin 8bfca5b4-45f3-415a-b2ff-c01958ce3a81 create 248 \N Unknown-10.0.1.100 \N {"face": "", "name": "Unknown-10.0.1.100", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T23:22:30.694Z", "comments": "Mac: FC:EC:DA:E8:1D:46 IP: 10.0.1.100, Vendor: Ubiquiti Networks", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "Mac: FC:EC:DA:E8:1D:46 IP: 10.0.1.100, Vendor: Ubiquiti Networks", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 587 2026-02-16 21:58:18.926537+00 radmin 6591520a-23c7-4525-aa88-857edd6be3c3 create 211 211 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 211, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:18.922Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 588 2026-02-16 21:58:19.032619+00 radmin 7a0c25e8-56ee-4a54-b54e-984673f751ba create 62 \N 80:AF:CA:56:BF:A9 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:19.031Z", "comments": "", "description": "", "mac_address": "80:AF:CA:56:BF:A9", "custom_fields": {}, "assigned_object_id": 211, "assigned_object_type": 7} 76 \N 1 | |
| 589 2026-02-16 21:58:21.303742+00 radmin 3ced6d02-8b49-4824-a074-523c36b09990 create 212 \N Unknown-10.0.1.22 \N {"face": "", "name": "Unknown-10.0.1.22", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:21.302Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.22, Mac: 80:AF:CA:56:C3:84, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Shenzhen Cudy Technology Co., Ltd.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 590 2026-02-16 21:58:21.380056+00 radmin 38e6e58a-abfc-467c-8a4e-9feca5b7da3b create 212 212 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 212, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:21.375Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 591 2026-02-16 21:58:21.483633+00 radmin 487b400b-0af8-429a-8f35-894d368e84d1 create 63 \N 80:AF:CA:56:C3:84 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:21.482Z", "comments": "", "description": "", "mac_address": "80:AF:CA:56:C3:84", "custom_fields": {}, "assigned_object_id": 212, "assigned_object_type": 7} 76 \N 1 | |
| 592 2026-02-16 21:58:22.845211+00 radmin 26cde781-d3a9-4085-a755-6f865372af9e create 213 \N Unknown-10.0.1.24 \N {"face": "", "name": "Unknown-10.0.1.24", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:22.843Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.24, Mac: B0:41:1D:76:EE:D7, Vendor: Ittim Technologies\\n Detalhes: {'manufacturer': 'ITTIM Technologies', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 593 2026-02-16 21:58:22.933125+00 radmin 317dd8b4-8fdd-4a3a-91b4-2c90855542e0 create 213 213 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 213, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:22.928Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 594 2026-02-16 21:58:23.039558+00 radmin 57634925-7cd0-4d96-96e6-35334919d4cb create 64 \N B0:41:1D:76:EE:D7 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:23.037Z", "comments": "", "description": "", "mac_address": "B0:41:1D:76:EE:D7", "custom_fields": {}, "assigned_object_id": 213, "assigned_object_type": 7} 76 \N 1 | |
| 595 2026-02-16 21:58:23.831541+00 radmin 9916382b-bc75-4e1a-826e-27e2f2cbaa14 create 214 \N Unknown-10.0.1.25 \N {"face": "", "name": "Unknown-10.0.1.25", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:23.829Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.25, Mac: 74:AC:B9:2C:16:E6, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 596 2026-02-16 21:58:23.913864+00 radmin 9470c0b1-9caf-4fea-8dbf-6031dcca3ab7 create 214 214 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 214, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:23.909Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 597 2026-02-16 21:58:24.01675+00 radmin c9571821-02ad-4a17-add2-926e113735f2 create 65 \N 74:AC:B9:2C:16:E6 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:24.015Z", "comments": "", "description": "", "mac_address": "74:AC:B9:2C:16:E6", "custom_fields": {}, "assigned_object_id": 214, "assigned_object_type": 7} 76 \N 1 | |
| 598 2026-02-16 21:58:25.396469+00 radmin 6ed11026-3b5c-4108-b6b8-e74c60767d36 create 215 \N Unknown-10.0.1.26 \N {"face": "", "name": "Unknown-10.0.1.26", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:25.394Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.26, Mac: F0:9F:C2:A9:FA:AB, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 599 2026-02-16 21:58:25.476336+00 radmin 61966b6e-5e91-4285-8c00-aa59492363e4 create 215 215 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 215, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:25.471Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 600 2026-02-16 21:58:25.581451+00 radmin 818175d5-1cf1-4982-87f1-aa8fb763a0f5 create 66 \N F0:9F:C2:A9:FA:AB \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:25.579Z", "comments": "", "description": "", "mac_address": "F0:9F:C2:A9:FA:AB", "custom_fields": {}, "assigned_object_id": 215, "assigned_object_type": 7} 76 \N 1 | |
| 601 2026-02-16 21:58:26.593965+00 radmin 82672cea-b338-435f-b83e-f72527679e3c create 216 \N Unknown-10.0.1.27 \N {"face": "", "name": "Unknown-10.0.1.27", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:26.591Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.27, Mac: 94:E0:D6:D9:B7:F2, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 602 2026-02-16 21:58:26.713538+00 radmin 6bad6a09-5a4f-48d2-9421-8c47a1f038e5 create 216 216 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 216, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:26.706Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 603 2026-02-16 21:58:26.856937+00 radmin 4663780b-4de0-4512-bcc7-a2bc53dfce08 create 67 \N 94:E0:D6:D9:B7:F2 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:26.855Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:B7:F2", "custom_fields": {}, "assigned_object_id": 216, "assigned_object_type": 7} 76 \N 1 | |
| 604 2026-02-16 21:58:27.769197+00 radmin 475321d4-07d3-48c1-8f25-5508aa686d57 create 217 \N Unknown-10.0.1.28 \N {"face": "", "name": "Unknown-10.0.1.28", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:27.766Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.28, Mac: 94:E0:D6:D9:D3:FA, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 605 2026-02-16 21:58:27.902842+00 radmin d16ee8c7-b0cd-415b-ad8c-b8434361707c create 217 217 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 217, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:27.894Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 606 2026-02-16 21:58:28.041121+00 radmin 29ff24ad-9aaa-4eeb-b523-02a121c44839 create 68 \N 94:E0:D6:D9:D3:FA \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:28.038Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:D3:FA", "custom_fields": {}, "assigned_object_id": 217, "assigned_object_type": 7} 76 \N 1 | |
| 607 2026-02-16 21:58:28.716727+00 radmin 3e2494f1-ced2-4cff-b23c-d1ef3ba250ae create 218 \N Unknown-10.0.1.29 \N {"face": "", "name": "Unknown-10.0.1.29", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:28.714Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.29, Mac: 94:E0:D6:D9:D1:33, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 608 2026-02-16 21:58:28.835943+00 radmin 17d1a718-129d-4b31-9972-61e4bfa2e0fa create 218 218 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 218, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:28.828Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 609 2026-02-16 21:58:28.957692+00 radmin 6a5e4a13-fa7b-4a48-ac72-70ab678cd917 create 69 \N 94:E0:D6:D9:D1:33 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:28.956Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:D1:33", "custom_fields": {}, "assigned_object_id": 218, "assigned_object_type": 7} 76 \N 1 | |
| 610 2026-02-16 21:58:32.681456+00 radmin 0d25f7c3-f750-4c92-8611-a8da260fc776 create 219 \N Unknown-10.0.1.35 \N {"face": "", "name": "Unknown-10.0.1.35", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:32.679Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.35, Mac: FC:EC:DA:A9:FC:98, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 611 2026-02-16 21:58:32.778472+00 radmin 2b5c634e-dfb8-462e-b946-e80e40b8a82d create 219 219 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 219, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:32.774Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 612 2026-02-16 21:58:32.885803+00 radmin 7af7683f-b764-4fb0-920b-f7d8dc62963d create 70 \N FC:EC:DA:A9:FC:98 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:32.884Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:A9:FC:98", "custom_fields": {}, "assigned_object_id": 219, "assigned_object_type": 7} 76 \N 1 | |
| 613 2026-02-16 21:58:33.612496+00 radmin 3410bfc1-e3b5-4889-94cb-25dd8d4f38d1 create 220 \N Unknown-10.0.1.36 \N {"face": "", "name": "Unknown-10.0.1.36", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:33.610Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.36, Mac: B0:41:1D:A2:8C:0D, Vendor: Ittim Technologies\\n Detalhes: {'manufacturer': 'ITTIM Technologies', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 614 2026-02-16 21:58:33.729653+00 radmin 4a888c1b-9c78-46d1-b04a-873ce0f79268 create 220 220 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 220, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:33.722Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 615 2026-02-16 21:58:33.864831+00 radmin 43927c35-2046-436f-bbd9-7880a439d500 create 71 \N B0:41:1D:A2:8C:0D \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:33.863Z", "comments": "", "description": "", "mac_address": "B0:41:1D:A2:8C:0D", "custom_fields": {}, "assigned_object_id": 220, "assigned_object_type": 7} 76 \N 1 | |
| 616 2026-02-16 21:58:34.588756+00 radmin a8b4f400-6bdd-4011-80ea-2ca190f3462d create 221 \N Unknown-10.0.1.37 \N {"face": "", "name": "Unknown-10.0.1.37", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:34.586Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.37, Mac: 70:A7:41:8C:F8:44, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 617 2026-02-16 21:58:34.710749+00 radmin 1cf40554-3ef2-4a29-b3f3-44a6a9e9cf90 create 221 221 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 221, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:34.703Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 618 2026-02-16 21:58:34.836758+00 radmin 890a2d1e-bf0d-403b-8e7e-28728098b751 create 72 \N 70:A7:41:8C:F8:44 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:34.835Z", "comments": "", "description": "", "mac_address": "70:A7:41:8C:F8:44", "custom_fields": {}, "assigned_object_id": 221, "assigned_object_type": 7} 76 \N 1 | |
| 619 2026-02-16 21:58:35.763067+00 radmin 9150db52-8aa8-4d99-824d-43a23b06820c create 222 \N Unknown-10.0.1.38 \N {"face": "", "name": "Unknown-10.0.1.38", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:35.760Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.38, Mac: F0:9F:C2:D6:2F:C6, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 620 2026-02-16 21:58:35.883424+00 radmin 67a7ea8f-58c3-487d-bbbb-45bcc521c309 create 222 222 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 222, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:35.876Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 621 2026-02-16 21:58:36.01364+00 radmin 84b22c31-37ad-4c7b-857b-d7b7e2ae0445 create 73 \N F0:9F:C2:D6:2F:C6 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:36.011Z", "comments": "", "description": "", "mac_address": "F0:9F:C2:D6:2F:C6", "custom_fields": {}, "assigned_object_id": 222, "assigned_object_type": 7} 76 \N 1 | |
| 622 2026-02-16 21:58:36.562461+00 radmin 0cdf27dd-493d-40dd-89c7-3bdf19cf2d44 create 223 \N Unknown-10.0.1.39 \N {"face": "", "name": "Unknown-10.0.1.39", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:36.560Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.39, Mac: 94:E0:D6:D9:BE:B2, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 623 2026-02-16 21:58:36.647152+00 radmin d4c69c16-a32d-4cc4-b085-f8a72957c4ad create 223 223 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 223, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:36.642Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 624 2026-02-16 21:58:36.75481+00 radmin 3c037e27-8e06-4dc2-8a35-575a3db49700 create 74 \N 94:E0:D6:D9:BE:B2 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:36.753Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:BE:B2", "custom_fields": {}, "assigned_object_id": 223, "assigned_object_type": 7} 76 \N 1 | |
| 625 2026-02-16 21:58:37.424071+00 radmin cd331a51-afe4-4363-b36a-565851300b19 create 224 \N Unknown-10.0.1.4 \N {"face": "", "name": "Unknown-10.0.1.4", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:37.421Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.4, Mac: 94:E0:D6:D9:BE:A3, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 626 2026-02-16 21:58:37.539763+00 radmin 5beeee94-8ae4-4288-9cf5-f0dd36f95269 create 224 224 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 224, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:37.533Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 627 2026-02-16 21:58:37.643488+00 radmin a37d68d3-55cf-4aa9-9b57-2e010eab9f2c create 75 \N 94:E0:D6:D9:BE:A3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:37.641Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:BE:A3", "custom_fields": {}, "assigned_object_id": 224, "assigned_object_type": 7} 76 \N 1 | |
| 628 2026-02-16 21:58:38.505689+00 radmin d7b2599b-8abd-420c-9388-4865e5349fb2 create 225 \N Unknown-10.0.1.40 \N {"face": "", "name": "Unknown-10.0.1.40", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:38.503Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.40, Mac: B0:41:1D:A2:84:B9, Vendor: Ittim Technologies\\n Detalhes: {'manufacturer': 'ITTIM Technologies', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 629 2026-02-16 21:58:38.590553+00 radmin 6e0e9c70-62d6-41fc-a524-e9525f746e87 create 225 225 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 225, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:38.585Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 630 2026-02-16 21:58:38.705411+00 radmin 7b8a0dae-c4a6-4099-a483-3026ff319784 create 76 \N B0:41:1D:A2:84:B9 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:38.703Z", "comments": "", "description": "", "mac_address": "B0:41:1D:A2:84:B9", "custom_fields": {}, "assigned_object_id": 225, "assigned_object_type": 7} 76 \N 1 | |
| 631 2026-02-16 21:58:39.206763+00 radmin 7d0f3dc1-21f0-49de-bc46-a5d06da73de6 create 226 \N Unknown-10.0.1.41 \N {"face": "", "name": "Unknown-10.0.1.41", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:39.204Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.41, Mac: 64:90:C1:26:DA:76, Vendor: Beijing Xiaomi Mobile Software\\n Detalhes: {'manufacturer': 'Beijing Xiaomi Mobile Software Co., Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 632 2026-02-16 21:58:39.293503+00 radmin 20b39b1a-e8c5-47d2-9f75-237b752ba10e create 226 226 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 226, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:39.288Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 633 2026-02-16 21:58:39.402284+00 radmin 0facad38-ab64-4bb2-ba8f-2d1b764fad1b create 77 \N 64:90:C1:26:DA:76 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:39.400Z", "comments": "", "description": "", "mac_address": "64:90:C1:26:DA:76", "custom_fields": {}, "assigned_object_id": 226, "assigned_object_type": 7} 76 \N 1 | |
| 634 2026-02-16 21:58:39.845506+00 radmin b388b360-9f8e-4274-9264-7f3073aefb11 create 227 \N Unknown-10.0.1.43 \N {"face": "", "name": "Unknown-10.0.1.43", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:39.843Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.43, Mac: 94:E0:D6:D9:BD:B3, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 635 2026-02-16 21:58:39.933032+00 radmin 57409a59-f532-48d4-9ef8-43619c92bd10 create 227 227 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 227, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:39.928Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 636 2026-02-16 21:58:40.039522+00 radmin 46352935-08fc-4f62-a347-9963cc15aca5 create 78 \N 94:E0:D6:D9:BD:B3 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:40.038Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:BD:B3", "custom_fields": {}, "assigned_object_id": 227, "assigned_object_type": 7} 76 \N 1 | |
| 637 2026-02-16 21:58:41.286185+00 radmin 6b43c38a-11d9-412e-aa1c-a1b5331d626f create 228 \N Unknown-10.0.1.45 \N {"face": "", "name": "Unknown-10.0.1.45", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:41.283Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.45, Mac: D0:21:F9:2C:86:DC, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 638 2026-02-16 21:58:41.412481+00 radmin 6d60d203-60e5-45f7-87dc-e8b84326e033 create 228 228 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 228, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:41.404Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 639 2026-02-16 21:58:41.558261+00 radmin bfc18cb5-44f4-486c-bcc2-2ad436d2c7ef create 79 \N D0:21:F9:2C:86:DC \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:41.555Z", "comments": "", "description": "", "mac_address": "D0:21:F9:2C:86:DC", "custom_fields": {}, "assigned_object_id": 228, "assigned_object_type": 7} 76 \N 1 | |
| 640 2026-02-16 21:58:42.510647+00 radmin dbfd398c-62ac-432b-a2f1-0c8862d5baea create 229 \N Unknown-10.0.1.46 \N {"face": "", "name": "Unknown-10.0.1.46", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:42.508Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.46, Mac: F0:9F:C2:7C:FB:2D, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 641 2026-02-16 21:58:42.637311+00 radmin 0a4bb7b6-e7cd-4745-87ec-28349bfa46d7 create 229 229 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 229, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:42.630Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 642 2026-02-16 21:58:42.749401+00 radmin ccbdcf1f-5ba1-40b0-b7f5-3a062943d083 create 80 \N F0:9F:C2:7C:FB:2D \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:42.747Z", "comments": "", "description": "", "mac_address": "F0:9F:C2:7C:FB:2D", "custom_fields": {}, "assigned_object_id": 229, "assigned_object_type": 7} 76 \N 1 | |
| 643 2026-02-16 21:58:43.446635+00 radmin 9e0671b4-1f6b-48cc-84bb-d3526603dbd7 create 230 \N Unknown-10.0.1.47 \N {"face": "", "name": "Unknown-10.0.1.47", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:43.444Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.47, Mac: FC:EC:DA:A9:FC:24, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 644 2026-02-16 21:58:43.58163+00 radmin 1b34d320-0ec9-47fd-9afb-a897d01119d2 create 230 230 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 230, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:43.574Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 645 2026-02-16 21:58:43.711072+00 radmin ccb2248d-466b-4ff3-85f2-99d169d18442 create 81 \N FC:EC:DA:A9:FC:24 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:43.709Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:A9:FC:24", "custom_fields": {}, "assigned_object_id": 230, "assigned_object_type": 7} 76 \N 1 | |
| 646 2026-02-16 21:58:44.581207+00 radmin d1913f18-a303-4a13-a746-275816e3fddd create 231 \N Unknown-10.0.1.48 \N {"face": "", "name": "Unknown-10.0.1.48", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:44.578Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.48, Mac: FC:EC:DA:A9:FC:90, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 647 2026-02-16 21:58:44.712725+00 radmin 967d725f-f6ec-42e9-919d-de0d3acdba13 create 231 231 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 231, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:44.705Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 648 2026-02-16 21:58:44.847523+00 radmin 10b2d0d7-9fe7-437b-99ee-1c8922fa93bf create 82 \N FC:EC:DA:A9:FC:90 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:44.845Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:A9:FC:90", "custom_fields": {}, "assigned_object_id": 231, "assigned_object_type": 7} 76 \N 1 | |
| 649 2026-02-16 21:58:45.894729+00 radmin 81739d8c-4160-4918-9d6e-9b39b8a91a8c create 232 \N Unknown-10.0.1.49 \N {"face": "", "name": "Unknown-10.0.1.49", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:45.892Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.49, Mac: FC:EC:DA:A9:FC:72, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 650 2026-02-16 21:58:46.015706+00 radmin ac6b93ed-d97e-4c3a-91f9-7a77a275c866 create 232 232 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 232, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:46.007Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 651 2026-02-16 21:58:46.159841+00 radmin fe54dcb3-6028-41e2-b496-e3379559d8a9 create 83 \N FC:EC:DA:A9:FC:72 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:46.157Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:A9:FC:72", "custom_fields": {}, "assigned_object_id": 232, "assigned_object_type": 7} 76 \N 1 | |
| 652 2026-02-16 21:58:48.54201+00 radmin aeabc811-723e-41a3-bbbf-25b8c56db653 create 233 \N Unknown-10.0.1.55 \N {"face": "", "name": "Unknown-10.0.1.55", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:48.539Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.55, Mac: 74:AC:B9:2C:27:04, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 653 2026-02-16 21:58:48.663616+00 radmin 5430185c-e4d1-4af3-9fcc-5a1570ac6fed create 233 233 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 233, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:48.656Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 654 2026-02-16 21:58:48.803601+00 radmin 2ebedf98-b1ac-4653-87cf-c7f0bd95354d create 84 \N 74:AC:B9:2C:27:04 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:48.801Z", "comments": "", "description": "", "mac_address": "74:AC:B9:2C:27:04", "custom_fields": {}, "assigned_object_id": 233, "assigned_object_type": 7} 76 \N 1 | |
| 655 2026-02-16 21:58:49.894849+00 radmin e000252a-c305-44ec-b07f-c224e779ed45 create 234 \N Unknown-10.0.1.56 \N {"face": "", "name": "Unknown-10.0.1.56", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:49.892Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.56, Mac: 64:90:C1:26:E0:9B, Vendor: Beijing Xiaomi Mobile Software\\n Detalhes: {'manufacturer': 'Beijing Xiaomi Mobile Software Co., Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 656 2026-02-16 21:58:50.017314+00 radmin 3163af7b-e94e-42d1-8dd8-80adada85d5b create 234 234 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 234, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:50.010Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 657 2026-02-16 21:58:50.155337+00 radmin 194ff58d-e143-4873-9250-cbf7cb7984dc create 85 \N 64:90:C1:26:E0:9B \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:50.153Z", "comments": "", "description": "", "mac_address": "64:90:C1:26:E0:9B", "custom_fields": {}, "assigned_object_id": 234, "assigned_object_type": 7} 76 \N 1 | |
| 658 2026-02-16 21:58:50.805327+00 radmin 16ce039b-642c-48b8-a299-46b09db5986a create 235 \N Unknown-10.0.1.57 \N {"face": "", "name": "Unknown-10.0.1.57", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:50.803Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.57, Mac: 64:90:C1:2E:47:AD, Vendor: Beijing Xiaomi Mobile Software\\n Detalhes: {'manufacturer': 'Beijing Xiaomi Mobile Software Co., Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 659 2026-02-16 21:58:50.891342+00 radmin a3ee30d3-82da-4696-8f1c-298f51d06370 create 235 235 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 235, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:50.886Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 660 2026-02-16 21:58:50.993742+00 radmin ef426663-ba9f-4067-b748-077352b0493b create 86 \N 64:90:C1:2E:47:AD \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:50.992Z", "comments": "", "description": "", "mac_address": "64:90:C1:2E:47:AD", "custom_fields": {}, "assigned_object_id": 235, "assigned_object_type": 7} 76 \N 1 | |
| 661 2026-02-16 21:58:52.74465+00 radmin 25d62f91-09ca-4d92-ac3b-1f4f48f55b6f create 236 \N Unknown-10.0.1.59 \N {"face": "", "name": "Unknown-10.0.1.59", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:52.742Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.59, Mac: 64:90:C1:26:DE:12, Vendor: Beijing Xiaomi Mobile Software\\n Detalhes: {'manufacturer': 'Beijing Xiaomi Mobile Software Co., Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 662 2026-02-16 21:58:52.8319+00 radmin f9fe8f1e-a9b1-499d-928a-20c4a23028ca create 236 236 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 236, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:52.827Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 663 2026-02-16 21:58:52.937276+00 radmin de091a8c-208c-4c87-a9ac-72b92d435f33 create 87 \N 64:90:C1:26:DE:12 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:52.935Z", "comments": "", "description": "", "mac_address": "64:90:C1:26:DE:12", "custom_fields": {}, "assigned_object_id": 236, "assigned_object_type": 7} 76 \N 1 | |
| 664 2026-02-16 21:58:54.601239+00 radmin 520d151c-1d91-400f-8f7d-491e3d05531c create 237 \N Unknown-10.0.1.63 \N {"face": "", "name": "Unknown-10.0.1.63", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:54.598Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.63, Mac: FC:EC:DA:10:E0:48, Vendor: Ubiquiti Networks\\n Detalhes: {'manufacturer': 'Ubiquiti Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 665 2026-02-16 21:58:54.726371+00 radmin 22c9b0b6-88cc-42af-ad00-1a8de02c55db create 237 237 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 237, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:54.718Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 666 2026-02-16 21:58:54.854618+00 radmin 27da7dda-c33a-48d8-859d-843f437157f2 create 88 \N FC:EC:DA:10:E0:48 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:54.853Z", "comments": "", "description": "", "mac_address": "FC:EC:DA:10:E0:48", "custom_fields": {}, "assigned_object_id": 237, "assigned_object_type": 7} 76 \N 1 | |
| 667 2026-02-16 21:58:58.465271+00 radmin 2aaa0234-ea18-416f-b6a0-1a45493ccb2c create 238 \N Unknown-10.0.1.9 \N {"face": "", "name": "Unknown-10.0.1.9", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:58.463Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.9, Mac: 64:90:C1:26:E0:F1, Vendor: Beijing Xiaomi Mobile Software\\n Detalhes: {'manufacturer': 'Beijing Xiaomi Mobile Software Co., Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 668 2026-02-16 21:58:58.572569+00 radmin bedb57cc-628a-4b17-b14d-312cf641a087 create 238 238 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 238, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:58.567Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 669 2026-02-16 21:58:58.679404+00 radmin 17678a12-424e-468a-aede-412c4c66d422 create 89 \N 64:90:C1:26:E0:F1 \N {"tags": [], "owner": null, "created": "2026-02-16T21:58:58.677Z", "comments": "", "description": "", "mac_address": "64:90:C1:26:E0:F1", "custom_fields": {}, "assigned_object_id": 238, "assigned_object_type": 7} 76 \N 1 | |
| 670 2026-02-16 22:07:31.821985+00 radmin 4ad2332e-00a3-402d-9398-f91fca0aaaa0 create 239 \N Unknown-10.0.3.1 \N {"face": "", "name": "Unknown-10.0.3.1", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:31.818Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.1, Mac: 00:14:EE:09:D7:CB, Vendor: Western Digital Technologies\\n Detalhes: {'manufacturer': 'Western Digital Technologies, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 671 2026-02-16 22:07:31.970768+00 radmin 6b1427b4-5401-4f21-8818-a284fea656b7 create 239 239 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 239, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:31.960Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 672 2026-02-16 22:07:32.109028+00 radmin 5f9ce489-4be0-42a5-a8f7-a446ff518398 create 90 \N 00:14:EE:09:D7:CB \N {"tags": [], "owner": null, "created": "2026-02-16T22:07:32.107Z", "comments": "", "description": "", "mac_address": "00:14:EE:09:D7:CB", "custom_fields": {}, "assigned_object_id": 239, "assigned_object_type": 7} 76 \N 1 | |
| 673 2026-02-16 22:07:32.554032+00 radmin 349b3c74-ec79-44cb-8f9a-e19facc8f604 create 240 \N Unknown-10.0.3.240 \N {"face": "", "name": "Unknown-10.0.3.240", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:32.552Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.240, Mac: 04:F4:1C:71:99:99, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Routerboard.com', 'country': 'LV', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 674 2026-02-16 22:07:32.641784+00 radmin 66a533b3-e20c-4d82-b7be-91cb3e03e9ca create 240 240 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 240, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:32.636Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 675 2026-02-16 22:07:32.758049+00 radmin 078b097c-ba5e-43df-8fad-aa078ab64cc8 create 91 \N 04:F4:1C:71:99:99 \N {"tags": [], "owner": null, "created": "2026-02-16T22:07:32.756Z", "comments": "", "description": "", "mac_address": "04:F4:1C:71:99:99", "custom_fields": {}, "assigned_object_id": 240, "assigned_object_type": 7} 76 \N 1 | |
| 676 2026-02-16 22:07:33.339657+00 radmin bbc959ad-b116-4983-aeb3-79c9533e7243 create 241 \N Unknown-10.0.3.253 \N {"face": "", "name": "Unknown-10.0.3.253", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:33.337Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.253, Mac: 7C:5A:1C:B3:90:60, Vendor: Sophos\\n Detalhes: {'manufacturer': 'Sophos Ltd', 'country': 'GB', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 677 2026-02-16 22:07:33.424165+00 radmin 36cecf3a-9172-42d7-b302-99764ab4ef73 create 241 241 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 241, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:33.419Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 678 2026-02-16 22:07:33.52966+00 radmin 2ab549ac-903a-4146-8f4f-6098db7dc4bd create 92 \N 7C:5A:1C:B3:90:60 \N {"tags": [], "owner": null, "created": "2026-02-16T22:07:33.528Z", "comments": "", "description": "", "mac_address": "7C:5A:1C:B3:90:60", "custom_fields": {}, "assigned_object_id": 241, "assigned_object_type": 7} 76 \N 1 | |
| 679 2026-02-16 22:07:34.562473+00 radmin 616f74cd-4d1a-4571-b887-11303f3d7c63 create 242 \N _gateway \N {"face": "", "name": "_gateway", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:34.559Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.254, Mac: 7C:5A:1C:B3:90:60, Vendor: Sophos\\n Detalhes: {'manufacturer': 'Sophos Ltd', 'country': 'GB', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 680 2026-02-16 22:07:34.678063+00 radmin 00be6e06-73a7-456d-bc51-0f1b78794c44 create 242 242 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 242, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:34.673Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 681 2026-02-16 22:07:34.782641+00 radmin cfcfa42d-4a8a-4ccc-8f2e-0ac25bf01573 create 93 \N 7C:5A:1C:B3:90:60 \N {"tags": [], "owner": null, "created": "2026-02-16T22:07:34.781Z", "comments": "", "description": "", "mac_address": "7C:5A:1C:B3:90:60", "custom_fields": {}, "assigned_object_id": 242, "assigned_object_type": 7} 76 \N 1 | |
| 682 2026-02-16 22:07:35.494847+00 radmin 6140b7d1-2a09-4486-a79c-38d7e26a8e04 create 243 \N Unknown-10.0.3.78 \N {"face": "", "name": "Unknown-10.0.3.78", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:35.493Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.78, Mac: 64:29:43:27:71:80, Vendor: D-Link\\n Detalhes: {'manufacturer': 'D-Link Corporation', 'country': 'TW', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 683 2026-02-16 22:07:35.579208+00 radmin c6dba5ce-d856-4271-9a14-f7d710e28ecc create 243 243 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 243, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:35.573Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 684 2026-02-16 22:07:35.693317+00 radmin 0de5528d-a5ae-4c24-944e-0fd2a76a10a4 create 94 \N 64:29:43:27:71:80 \N {"tags": [], "owner": null, "created": "2026-02-16T22:07:35.691Z", "comments": "", "description": "", "mac_address": "64:29:43:27:71:80", "custom_fields": {}, "assigned_object_id": 243, "assigned_object_type": 7} 76 \N 1 | |
| 685 2026-02-16 22:07:36.414275+00 radmin 82b58691-ee2c-4204-b20d-c9c44eb805c2 create 244 \N Unknown-10.0.3.79 \N {"face": "", "name": "Unknown-10.0.3.79", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:36.412Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.79, Mac: B4:22:00:B3:05:8C, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 686 2026-02-16 22:07:36.503482+00 radmin 30eaf7b1-19c1-4231-855a-62c4289d4e24 create 244 244 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 244, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:36.498Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 687 2026-02-16 22:07:36.613256+00 radmin 7b9f25e9-cc08-4d8e-bb7e-18c8f1f5a723 create 95 \N B4:22:00:B3:05:8C \N {"tags": [], "owner": null, "created": "2026-02-16T22:07:36.611Z", "comments": "", "description": "", "mac_address": "B4:22:00:B3:05:8C", "custom_fields": {}, "assigned_object_id": 244, "assigned_object_type": 7} 76 \N 1 | |
| 688 2026-02-16 22:28:04.702647+00 radmin 572934dc-5760-4a33-9b94-5dba4da8e42d create 245 \N Unknown-10.0.1.12 \N {"face": "", "name": "Unknown-10.0.1.12", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:28:04.700Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.12, Mac: 94:E0:D6:D9:BD:15, Vendor: China Dragon Technology Limited\\n Detalhes: {'manufacturer': 'China Dragon Technology Limited', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 689 2026-02-16 22:28:04.793869+00 radmin f0aa52f7-a0d0-4e71-81c4-a82d0618495c create 245 245 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 245, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:28:04.788Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 690 2026-02-16 22:28:04.907387+00 radmin c48fbdc4-e0b2-4826-98ee-cefd6980ee2d create 96 \N 94:E0:D6:D9:BD:15 \N {"tags": [], "owner": null, "created": "2026-02-16T22:28:04.905Z", "comments": "", "description": "", "mac_address": "94:E0:D6:D9:BD:15", "custom_fields": {}, "assigned_object_id": 245, "assigned_object_type": 7} 76 \N 1 | |
| 691 2026-02-16 22:28:20.058952+00 radmin a62fb856-06e8-48f4-85bc-b99a42dee94f create 246 \N Unknown-10.0.1.23 \N {"face": "", "name": "Unknown-10.0.1.23", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:28:20.056Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.1.23, Mac: 64:90:C1:2E:48:0E, Vendor: Beijing Xiaomi Mobile Software\\n Detalhes: {'manufacturer': 'Beijing Xiaomi Mobile Software Co., Ltd', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 0, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} 12 \N 1 | |
| 692 2026-02-16 22:28:20.146367+00 radmin af853511-7773-463d-941e-299e596f0a25 create 246 246 eth0 \N {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 246, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:28:20.141Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} 7 12 1 | |
| 693 2026-02-16 22:28:20.256457+00 radmin 0ae02af4-31ac-45b0-861c-57e6e023115a create 97 \N 64:90:C1:2E:48:0E \N {"tags": [], "owner": null, "created": "2026-02-16T22:28:20.254Z", "comments": "", "description": "", "mac_address": "64:90:C1:2E:48:0E", "custom_fields": {}, "assigned_object_id": 246, "assigned_object_type": 7} 76 \N 1 | |
| 694 2026-02-16 23:18:13.88656+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 93 \N 7C:5A:1C:B3:90:60 {"tags": [], "owner": null, "created": "2026-02-16T22:07:34.781Z", "comments": "", "description": "", "mac_address": "7C:5A:1C:B3:90:60", "custom_fields": {}, "assigned_object_id": 242, "assigned_object_type": 7} \N 76 \N 1 | |
| 695 2026-02-16 23:18:13.92689+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 242 242 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 242, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T22:07:34.673Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 696 2026-02-16 23:18:13.971352+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 242 \N _gateway {"face": "", "name": "_gateway", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T22:07:34.559Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.3.254, Mac: 7C:5A:1C:B3:90:60, Vendor: Sophos\\n Detalhes: {'manufacturer': 'Sophos Ltd', 'country': 'GB', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 697 2026-02-16 23:18:14.101322+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 200 200 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 200, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:58:04.404Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 698 2026-02-16 23:18:14.142068+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 200 \N ayrton-LOQ {"face": "", "name": "ayrton-LOQ", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:58:03.952Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "10.0.2.199", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 699 2026-02-16 23:18:14.253313+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 13 \N D4:F5:EF:72:C7:D0 {"tags": [], "owner": null, "created": "2026-02-16T21:54:31.625Z", "comments": "", "description": "", "mac_address": "D4:F5:EF:72:C7:D0", "custom_fields": {}, "assigned_object_id": 161, "assigned_object_type": 7} \N 76 \N 1 | |
| 700 2026-02-16 23:18:14.290568+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 161 161 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 161, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:31.427Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 701 2026-02-16 23:18:14.330612+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 161 \N Unknown-10.0.0.2 {"face": "", "name": "Unknown-10.0.0.2", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:31.250Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.2, Mac: D4:F5:EF:72:C7:D0, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 702 2026-02-16 23:18:14.430706+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 40 \N 94:18:82:89:5D:60 {"tags": [], "owner": null, "created": "2026-02-16T21:55:08.448Z", "comments": "", "description": "", "mac_address": "94:18:82:89:5D:60", "custom_fields": {}, "assigned_object_id": 188, "assigned_object_type": 7} \N 76 \N 1 | |
| 703 2026-02-16 23:18:14.45568+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 188 188 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 188, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:08.265Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 704 2026-02-16 23:18:14.484681+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 188 \N Unknown-10.0.0.6 {"face": "", "name": "Unknown-10.0.0.6", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:08.111Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.6, Mac: 94:18:82:89:5D:60, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 705 2026-02-16 23:18:14.561496+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 43 \N 98:F2:B3:29:9F:1C {"tags": [], "owner": null, "created": "2026-02-16T21:55:13.088Z", "comments": "", "description": "", "mac_address": "98:F2:B3:29:9F:1C", "custom_fields": {}, "assigned_object_id": 191, "assigned_object_type": 7} \N 76 \N 1 | |
| 706 2026-02-16 23:18:14.586226+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 191 191 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 191, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:12.888Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 707 2026-02-16 23:18:14.617881+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 191 \N Unknown-10.0.0.8 {"face": "", "name": "Unknown-10.0.0.8", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:12.721Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.8, Mac: 98:F2:B3:29:9F:1C, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 708 2026-02-16 23:18:14.695751+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 28 \N 84:C9:B2:42:80:B3 {"tags": [], "owner": null, "created": "2026-02-16T21:54:51.991Z", "comments": "", "description": "", "mac_address": "84:C9:B2:42:80:B3", "custom_fields": {}, "assigned_object_id": 176, "assigned_object_type": 7} \N 76 \N 1 | |
| 709 2026-02-16 23:18:14.72256+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 176 176 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 176, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:51.871Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 710 2026-02-16 23:18:14.751422+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 176 \N Unknown-10.0.0.24 {"face": "", "name": "Unknown-10.0.0.24", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:51.790Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.24, Mac: 84:C9:B2:42:80:B3, Vendor: D-Link International\\n Detalhes: {'manufacturer': 'D-Link International', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 711 2026-02-16 23:18:14.828025+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 33 \N 10:BE:F5:53:A9:2E {"tags": [], "owner": null, "created": "2026-02-16T21:54:58.629Z", "comments": "", "description": "", "mac_address": "10:BE:F5:53:A9:2E", "custom_fields": {}, "assigned_object_id": 181, "assigned_object_type": 7} \N 76 \N 1 | |
| 712 2026-02-16 23:18:14.852054+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 181 181 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 181, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:58.450Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 713 2026-02-16 23:18:14.880262+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 181 \N Unknown-10.0.0.26 {"face": "", "name": "Unknown-10.0.0.26", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:58.284Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.26, Mac: 10:BE:F5:53:A9:2E, Vendor: D-Link International\\n Detalhes: {'manufacturer': 'D-Link International', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 714 2026-02-16 23:18:14.954519+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 34 \N 98:BA:5F:1C:23:64 {"tags": [], "owner": null, "created": "2026-02-16T21:55:00.200Z", "comments": "", "description": "", "mac_address": "98:BA:5F:1C:23:64", "custom_fields": {}, "assigned_object_id": 182, "assigned_object_type": 7} \N 76 \N 1 | |
| 715 2026-02-16 23:18:14.978668+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 182 182 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 182, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:00.001Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 716 2026-02-16 23:18:15.006126+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 182 \N Unknown-10.0.0.32 {"face": "", "name": "Unknown-10.0.0.32", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:59.831Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.32, Mac: 98:BA:5F:1C:23:64, Vendor: Unknown\\n Detalhes: {'manufacturer': 'TP-Link Systems Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 717 2026-02-16 23:18:15.078845+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 35 \N C4:6E:1F:EC:CC:CB {"tags": [], "owner": null, "created": "2026-02-16T21:55:01.424Z", "comments": "", "description": "", "mac_address": "C4:6E:1F:EC:CC:CB", "custom_fields": {}, "assigned_object_id": 183, "assigned_object_type": 7} \N 76 \N 1 | |
| 718 2026-02-16 23:18:15.103178+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 183 183 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 183, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:01.225Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 719 2026-02-16 23:18:15.131127+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 183 \N Unknown-10.0.0.37 {"face": "", "name": "Unknown-10.0.0.37", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:01.053Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.37, Mac: C4:6E:1F:EC:CC:CB, Vendor: TP-Link Technologies\\n Detalhes: {'manufacturer': 'TP-LINK TECHNOLOGIES CO.,LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 720 2026-02-16 23:18:15.209743+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 36 \N 76:90:CF:18:16:2E {"tags": [], "owner": null, "created": "2026-02-16T21:55:02.918Z", "comments": "", "description": "", "mac_address": "76:90:CF:18:16:2E", "custom_fields": {}, "assigned_object_id": 184, "assigned_object_type": 7} \N 76 \N 1 | |
| 721 2026-02-16 23:18:15.233963+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 184 184 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 184, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:02.740Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 722 2026-02-16 23:18:15.261922+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 184 \N Unknown-10.0.0.41 {"face": "", "name": "Unknown-10.0.0.41", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:02.579Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.41, Mac: 76:90:CF:18:16:2E, Vendor: Unknown\\n Detalhes: {'manufacturer': '', 'country': '', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 723 2026-02-16 23:18:15.335037+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 37 \N 4A:F2:9B:19:2B:21 {"tags": [], "owner": null, "created": "2026-02-16T21:55:04.479Z", "comments": "", "description": "", "mac_address": "4A:F2:9B:19:2B:21", "custom_fields": {}, "assigned_object_id": 185, "assigned_object_type": 7} \N 76 \N 1 | |
| 724 2026-02-16 23:18:15.359526+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 185 185 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 185, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:04.288Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 725 2026-02-16 23:18:15.386176+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 185 \N Unknown-10.0.0.45 {"face": "", "name": "Unknown-10.0.0.45", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:04.124Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.45, Mac: 4A:F2:9B:19:2B:21, Vendor: Unknown\\n Detalhes: {'manufacturer': '', 'country': '', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 726 2026-02-16 23:18:15.459392+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 38 \N 20:67:7C:E5:7A:90 {"tags": [], "owner": null, "created": "2026-02-16T21:55:05.989Z", "comments": "", "description": "", "mac_address": "20:67:7C:E5:7A:90", "custom_fields": {}, "assigned_object_id": 186, "assigned_object_type": 7} \N 76 \N 1 | |
| 727 2026-02-16 23:18:15.482556+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 186 186 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 186, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:05.814Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 728 2026-02-16 23:18:15.507954+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 186 \N Unknown-10.0.0.50 {"face": "", "name": "Unknown-10.0.0.50", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:05.651Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.50, Mac: 20:67:7C:E5:7A:90, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 729 2026-02-16 23:18:15.580841+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 39 \N 00:0C:29:6B:91:C5 {"tags": [], "owner": null, "created": "2026-02-16T21:55:07.114Z", "comments": "", "description": "", "mac_address": "00:0C:29:6B:91:C5", "custom_fields": {}, "assigned_object_id": 187, "assigned_object_type": 7} \N 76 \N 1 | |
| 730 2026-02-16 23:18:15.603741+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 187 187 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 187, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:06.938Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 731 2026-02-16 23:18:15.629325+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 187 \N Unknown-10.0.0.58 {"face": "", "name": "Unknown-10.0.0.58", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:06.783Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.58, Mac: 00:0C:29:6B:91:C5, Vendor: VMware\\n Detalhes: {'manufacturer': 'VMware, Inc.', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 732 2026-02-16 23:18:15.710257+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 41 \N 1C:5F:2B:B2:49:A5 {"tags": [], "owner": null, "created": "2026-02-16T21:55:09.981Z", "comments": "", "description": "", "mac_address": "1C:5F:2B:B2:49:A5", "custom_fields": {}, "assigned_object_id": 189, "assigned_object_type": 7} \N 76 \N 1 | |
| 733 2026-02-16 23:18:15.734203+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 189 189 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 189, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:09.809Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 734 2026-02-16 23:18:15.76074+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 189 \N Unknown-10.0.0.65 {"face": "", "name": "Unknown-10.0.0.65", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:09.651Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.65, Mac: 1C:5F:2B:B2:49:A5, Vendor: D-Link International\\n Detalhes: {'manufacturer': 'D-Link International', 'country': 'SG', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 735 2026-02-16 23:18:15.833562+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 42 \N B4:22:00:B8:0A:95 {"tags": [], "owner": null, "created": "2026-02-16T21:55:11.261Z", "comments": "", "description": "", "mac_address": "B4:22:00:B8:0A:95", "custom_fields": {}, "assigned_object_id": 190, "assigned_object_type": 7} \N 76 \N 1 | |
| 736 2026-02-16 23:18:15.856457+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 190 190 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 190, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:55:11.080Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 737 2026-02-16 23:18:15.881732+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 190 \N Unknown-10.0.0.67 {"face": "", "name": "Unknown-10.0.0.67", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:55:10.917Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.67, Mac: B4:22:00:B8:0A:95, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 738 2026-02-16 23:18:15.955061+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 12 \N 00:1B:A9:56:F1:47 {"tags": [], "owner": null, "created": "2026-02-16T21:54:30.372Z", "comments": "", "description": "", "mac_address": "00:1B:A9:56:F1:47", "custom_fields": {}, "assigned_object_id": 160, "assigned_object_type": 7} \N 76 \N 1 | |
| 739 2026-02-16 23:18:15.977875+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 160 160 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 160, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:30.184Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 740 2026-02-16 23:18:16.006924+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 160 \N Unknown-10.0.0.122 {"face": "", "name": "Unknown-10.0.0.122", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:30.020Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.122, Mac: 00:1B:A9:56:F1:47, Vendor: Brother industries\\n Detalhes: {'manufacturer': 'Brother industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 741 2026-02-16 23:18:16.0805+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 14 \N 54:F8:2A:D1:0C:29 {"tags": [], "owner": null, "created": "2026-02-16T21:54:33.257Z", "comments": "", "description": "", "mac_address": "54:F8:2A:D1:0C:29", "custom_fields": {}, "assigned_object_id": 162, "assigned_object_type": 7} \N 76 \N 1 | |
| 742 2026-02-16 23:18:16.1054+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 162 162 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 162, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:33.062Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 743 2026-02-16 23:18:16.131363+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 162 \N Unknown-10.0.0.201 {"face": "", "name": "Unknown-10.0.0.201", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:32.889Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.201, Mac: 54:F8:2A:D1:0C:29, Vendor: u-blox AG\\n Detalhes: {'manufacturer': 'u-blox AG', 'country': 'CH', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 744 2026-02-16 23:18:16.207428+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 15 \N 3C:2A:F4:B4:2B:94 {"tags": [], "owner": null, "created": "2026-02-16T21:54:34.695Z", "comments": "", "description": "", "mac_address": "3C:2A:F4:B4:2B:94", "custom_fields": {}, "assigned_object_id": 163, "assigned_object_type": 7} \N 76 \N 1 | |
| 745 2026-02-16 23:18:16.230401+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 163 163 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 163, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:34.497Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 746 2026-02-16 23:18:16.255827+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 163 \N Unknown-10.0.0.202 {"face": "", "name": "Unknown-10.0.0.202", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:34.323Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.202, Mac: 3C:2A:F4:B4:2B:94, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 747 2026-02-16 23:18:16.329381+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 16 \N EC:1D:8B:73:7D:9A {"tags": [], "owner": null, "created": "2026-02-16T21:54:36.191Z", "comments": "", "description": "", "mac_address": "EC:1D:8B:73:7D:9A", "custom_fields": {}, "assigned_object_id": 164, "assigned_object_type": 7} \N 76 \N 1 | |
| 748 2026-02-16 23:18:16.352232+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 164 164 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 164, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:36.014Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 749 2026-02-16 23:18:16.378242+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 164 \N Unknown-10.0.0.209 {"face": "", "name": "Unknown-10.0.0.209", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:35.857Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.209, Mac: EC:1D:8B:73:7D:9A, Vendor: Cisco Systems\\n Detalhes: {'manufacturer': 'Cisco Systems, Inc', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 750 2026-02-16 23:18:16.451707+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 17 \N B4:22:00:63:DD:3D {"tags": [], "owner": null, "created": "2026-02-16T21:54:37.157Z", "comments": "", "description": "", "mac_address": "B4:22:00:63:DD:3D", "custom_fields": {}, "assigned_object_id": 165, "assigned_object_type": 7} \N 76 \N 1 | |
| 751 2026-02-16 23:18:16.474331+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 165 165 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 165, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:36.959Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 752 2026-02-16 23:18:16.499641+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 165 \N Unknown-10.0.0.214 {"face": "", "name": "Unknown-10.0.0.214", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:36.784Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.214, Mac: B4:22:00:63:DD:3D, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 753 2026-02-16 23:18:16.572195+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 18 \N B4:22:00:53:61:D6 {"tags": [], "owner": null, "created": "2026-02-16T21:54:38.677Z", "comments": "", "description": "", "mac_address": "B4:22:00:53:61:D6", "custom_fields": {}, "assigned_object_id": 166, "assigned_object_type": 7} \N 76 \N 1 | |
| 754 2026-02-16 23:18:16.596758+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 166 166 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 166, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:38.491Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 755 2026-02-16 23:18:16.622462+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 166 \N Unknown-10.0.0.216 {"face": "", "name": "Unknown-10.0.0.216", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:38.317Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.216, Mac: B4:22:00:53:61:D6, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 756 2026-02-16 23:18:16.696791+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 19 \N 40:5B:D8:CF:C1:C6 {"tags": [], "owner": null, "created": "2026-02-16T21:54:40.211Z", "comments": "", "description": "", "mac_address": "40:5B:D8:CF:C1:C6", "custom_fields": {}, "assigned_object_id": 167, "assigned_object_type": 7} \N 76 \N 1 | |
| 757 2026-02-16 23:18:16.722995+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 167 167 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 167, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:40.016Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 758 2026-02-16 23:18:16.75163+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 167 \N Unknown-10.0.0.221 {"face": "", "name": "Unknown-10.0.0.221", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:39.852Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.221, Mac: 40:5B:D8:CF:C1:C6, Vendor: Chongqing Fugui Electronics\\n Detalhes: {'manufacturer': 'CHONGQING FUGUI ELECTRONICS CO.,LTD.', 'country': 'CN', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 759 2026-02-16 23:18:16.830006+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 20 \N B4:22:00:07:DE:D3 {"tags": [], "owner": null, "created": "2026-02-16T21:54:41.143Z", "comments": "", "description": "", "mac_address": "B4:22:00:07:DE:D3", "custom_fields": {}, "assigned_object_id": 168, "assigned_object_type": 7} \N 76 \N 1 | |
| 760 2026-02-16 23:18:16.852846+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 168 168 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 168, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:40.948Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 761 2026-02-16 23:18:16.882356+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 168 \N Unknown-10.0.0.222 {"face": "", "name": "Unknown-10.0.0.222", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:40.776Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.222, Mac: B4:22:00:07:DE:D3, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 762 2026-02-16 23:18:16.957376+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 21 \N B4:22:00:25:0C:F4 {"tags": [], "owner": null, "created": "2026-02-16T21:54:42.673Z", "comments": "", "description": "", "mac_address": "B4:22:00:25:0C:F4", "custom_fields": {}, "assigned_object_id": 169, "assigned_object_type": 7} \N 76 \N 1 | |
| 763 2026-02-16 23:18:16.981639+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 169 169 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 169, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:42.479Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 764 2026-02-16 23:18:17.008793+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 169 \N Unknown-10.0.0.223 {"face": "", "name": "Unknown-10.0.0.223", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:42.305Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.223, Mac: B4:22:00:25:0C:F4, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 765 2026-02-16 23:18:17.08119+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 22 \N 5C:BA:2C:3B:5D:48 {"tags": [], "owner": null, "created": "2026-02-16T21:54:44.209Z", "comments": "", "description": "", "mac_address": "5C:BA:2C:3B:5D:48", "custom_fields": {}, "assigned_object_id": 170, "assigned_object_type": 7} \N 76 \N 1 | |
| 766 2026-02-16 23:18:17.106874+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 170 170 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 170, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:44.013Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 767 2026-02-16 23:18:17.134516+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 170 \N Unknown-10.0.0.224 {"face": "", "name": "Unknown-10.0.0.224", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:43.845Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.224, Mac: 5C:BA:2C:3B:5D:48, Vendor: Hewlett Packard Enterprise\\n Detalhes: {'manufacturer': 'Hewlett Packard Enterprise', 'country': 'US', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 768 2026-02-16 23:18:17.210175+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 23 \N 94:DD:F8:10:E3:3D {"tags": [], "owner": null, "created": "2026-02-16T21:54:45.439Z", "comments": "", "description": "", "mac_address": "94:DD:F8:10:E3:3D", "custom_fields": {}, "assigned_object_id": 171, "assigned_object_type": 7} \N 76 \N 1 | |
| 769 2026-02-16 23:18:17.233602+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 171 171 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 171, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:45.241Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 770 2026-02-16 23:18:17.260448+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 171 \N Unknown-10.0.0.226 {"face": "", "name": "Unknown-10.0.0.226", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:45.075Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.226, Mac: 94:DD:F8:10:E3:3D, Vendor: Unknown\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 771 2026-02-16 23:18:17.332776+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 24 \N B4:22:00:47:48:0B {"tags": [], "owner": null, "created": "2026-02-16T21:54:46.947Z", "comments": "", "description": "", "mac_address": "B4:22:00:47:48:0B", "custom_fields": {}, "assigned_object_id": 172, "assigned_object_type": 7} \N 76 \N 1 | |
| 772 2026-02-16 23:18:17.357594+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 172 172 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 172, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:46.751Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_policy": null} \N 7 12 1 | |
| 773 2026-02-16 23:18:17.383237+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 172 \N Unknown-10.0.0.227 {"face": "", "name": "Unknown-10.0.0.227", "rack": null, "role": 1, "site": 1, "tags": [], "owner": null, "oob_ip": null, "serial": "", "status": "active", "tenant": null, "airflow": null, "cluster": null, "created": "2026-02-16T21:54:46.577Z", "comments": "", "latitude": null, "location": null, "platform": null, "position": null, "asset_tag": null, "longitude": null, "description": "IP: 10.0.0.227, Mac: B4:22:00:47:48:0B, Vendor: Brother Industries\\n Detalhes: {'manufacturer': 'Brother Industries, LTD.', 'country': 'JP', 'is_private': False}", "device_type": 1, "primary_ip4": null, "primary_ip6": null, "vc_position": null, "vc_priority": null, "custom_fields": {}, "config_template": null, "interface_count": 1, "rear_port_count": 0, "virtual_chassis": null, "device_bay_count": 0, "front_port_count": 0, "module_bay_count": 0, "power_port_count": 0, "console_port_count": 0, "local_context_data": null, "power_outlet_count": 0, "inventory_item_count": 0, "console_server_port_count": 0} \N 12 \N 1 | |
| 774 2026-02-16 23:18:17.456573+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 25 \N 00:0C:29:CD:DC:09 {"tags": [], "owner": null, "created": "2026-02-16T21:54:48.278Z", "comments": "", "description": "", "mac_address": "00:0C:29:CD:DC:09", "custom_fields": {}, "assigned_object_id": 173, "assigned_object_type": 7} \N 76 \N 1 | |
| 775 2026-02-16 23:18:17.480388+00 radmin 8ca2fff4-8ad6-42b3-ac7a-d69169bb8724 delete 173 173 eth0 {"lag": null, "mtu": null, "vrf": null, "wwn": null, "mode": null, "name": "eth0", "tags": [], "type": "1000base-t", "vdcs": [], "_name": "9999999999999999eth000000............", "_path": null, "_rack": null, "_site": 1, "cable": null, "label": "", "owner": null, "speed": null, "bridge": null, "device": 173, "duplex": null, "module": null, "parent": null, "created": "2026-02-16T21:54:48.095Z", "enabled": true, "rf_role": null, "poe_mode": null, "poe_type": null, "tx_power": null, "_location": null, "cable_end": null, "mgmt_only": false, "qinq_svlan": null, "rf_channel": null, "description": "", "tagged_vlans": [], "custom_fields": {}, "untagged_vlan": null, "wireless_lans": [], "wireless_link": null, "mark_connected": false, "cable_connector": null, "cable_positions": null, "rf_channel_width": null, "primary_mac_address": null, "rf_channel_frequency": null, "vlan_translation_ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment