HP Brocade 8/12c Brocade Network Advisor Documentation Updates v11.1.x (53-100 - Page 268

Name: wireless_interface; Type: VIEW; Schema: dcm; Owner: dcmadmin

Page 268 highlights

E Views xinfo character varying(64) ); -- Name: wired_interface; Type: VIEW; Schema: dcm; Owner: dcmadmin CREATE VIEW wired_interface AS SELECT l2.device_id, l2.device_ip_address, l2.physical_device_id, l2.unit_number, l2.slot_id, l2.slot_num, l2.module_id, l2.physical_port_id, l2.port_num, l2.interface_id, l2.name, l2.if_name, l2.identifier, l2.table_subtype, l2.tag_mode, l2.speed_in_mb, l2.physical_address, l2.duplex_mode, l3.ip_id, l3.ip_interface_id, l3.ip_address, l3.subnet_mask FROM ((SELECT DISTINCT d.device_id, d.ip_address AS device_ip_address, pd.physical_device_id, pd.unit_number, s.slot_id, s.slot_num, msp.module_id, pp.physical_port_id, pp.port_num, i.interface_id, i.name, i.if_name, i.identifier, i.table_subtype, i.tag_mode, pi.speed_in_mb, pi.physical_address, pi.duplex_mode FROM device d, physical_device pd, slot s, module_slot_present msp, physical_port pp, physical_interface pi, interface i WHERE (((((((d.device_id = pd.device_id) AND (pd.physical_device_id = s.physical_device_id)) AND (s.slot_id = msp.slot_id)) AND (msp.module_id = pp.module_id)) AND (pp.physical_port_id = pi.physical_port_id)) AND (pi.interface_id = i.interface_id)) AND ((i.table_subtype)::text 'RADIO_INTERFACE'::text))) l2 LEFT JOIN (SELECT inm_ip_interface.interface_id AS ip_id, inm_ip_interface.ip_interface_id, inm_ip_interface.ip_address, inm_ip_interface.subnet_mask FROM inm_ip_interface) l3 ON ((l2.interface_id = l3.ip_id))); -- Name: wired_mac_filter_entry; Type: TABLE; Schema: dcm; Owner: dcmadmin; Tablespace: CREATE TABLE wired_mac_filter_entry ( mac_filter_entry_id integer NOT NULL, dest_mac_address character varying(24) NOT NULL, dest_address_mask character varying(24), ether_type character varying(24), operator character varying(5), frame_num character varying(6), description character varying(255) ); -- Name: wireless_interface; Type: VIEW; Schema: dcm; Owner: dcmadmin CREATE VIEW wireless_interface AS SELECT l2.device_id, l2.device_ip_address, l2.physical_device_id, l2.unit_number, l2.slot_id, l2.slot_num, l2.module_id, l2.physical_port_id, l2.port_num, l2.interface_id, l2.name, l2.if_name, l2.identifier, l2.speed_in_mb, l2.physical_address, l2.interface_id AS radioif_id, wireless.radio_type, wireless.is_enabled, wireless.is_auto_channel, wireless.tx_power, wireless.channel_number, wireless.max_data_rate, wireless.beacon_rate, wireless.dtim, wireless.rts_threshold, wireless.is_turbo_mode, wireless.radio_g_mode, wireless.max_associated_clients FROM ((SELECT DISTINCT d.device_id, d.ip_address AS device_ip_address, pd.physical_device_id, pd.unit_number, s.slot_id, s.slot_num, msp.module_id, pp.physical_port_id, pp.port_num, i.interface_id, i.name, i.if_name, i.identifier, pi.speed_in_mb, pi.physical_address FROM device d, physical_device pd, slot s, module_slot_present msp, physical_port pp, physical_interface pi, interface i WHERE (((((((d.device_id = pd.device_id) AND (pd.physical_device_id = s.physical_device_id)) AND (s.slot_id = msp.slot_id)) AND (msp.module_id = pp.module_id)) AND (pp.physical_port_id = pi.physical_port_id)) AND (pi.interface_id = i.interface_id)) AND ((i.table_subtype)::text = 'RADIO_INTERFACE'::text))) l2 LEFT JOIN (SELECT radio_interface.interface_id AS radioif_id, radio_interface.radio_type, radio_interface.is_enabled, radio_interface.is_auto_channel, radio_interface.tx_power, radio_interface.channel_number, radio_interface.max_data_rate, 260 Brocade Network Advisor Documentation Updates 53-1002363-02

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271

260
Brocade Network Advisor Documentation Updates
53-1002363-02
Views
E
xinfo character varying(64)
);
-- Name: wired_interface; Type: VIEW; Schema: dcm; Owner: dcmadmin
CREATE VIEW wired_interface AS
SELECT l2.device_id, l2.device_ip_address, l2.physical_device_id,
l2.unit_number, l2.slot_id, l2.slot_num, l2.module_id, l2.physical_port_id,
l2.port_num, l2.interface_id, l2.name, l2.if_name, l2.identifier,
l2.table_subtype, l2.tag_mode, l2.speed_in_mb, l2.physical_address,
l2.duplex_mode, l3.ip_id, l3.ip_interface_id, l3.ip_address, l3.subnet_mask FROM
((SELECT DISTINCT d.device_id, d.ip_address AS device_ip_address,
pd.physical_device_id, pd.unit_number, s.slot_id, s.slot_num, msp.module_id,
pp.physical_port_id, pp.port_num, i.interface_id, i.name, i.if_name,
i.identifier, i.table_subtype, i.tag_mode, pi.speed_in_mb, pi.physical_address,
pi.duplex_mode FROM device d, physical_device pd, slot s, module_slot_present msp,
physical_port pp, physical_interface pi, interface i WHERE (((((((d.device_id =
pd.device_id) AND (pd.physical_device_id = s.physical_device_id)) AND (s.slot_id
= msp.slot_id)) AND (msp.module_id = pp.module_id)) AND (pp.physical_port_id =
pi.physical_port_id)) AND (pi.interface_id = i.interface_id)) AND
((i.table_subtype)::text <> 'RADIO_INTERFACE'::text))) l2 LEFT JOIN (SELECT
inm_ip_interface.interface_id AS ip_id, inm_ip_interface.ip_interface_id,
inm_ip_interface.ip_address, inm_ip_interface.subnet_mask FROM inm_ip_interface)
l3 ON ((l2.interface_id = l3.ip_id)));
-- Name: wired_mac_filter_entry; Type: TABLE; Schema: dcm; Owner: dcmadmin;
Tablespace:
CREATE TABLE wired_mac_filter_entry (
mac_filter_entry_id integer NOT NULL,
dest_mac_address character varying(24) NOT NULL,
dest_address_mask character varying(24),
ether_type character varying(24),
operator character varying(5),
frame_num character varying(6),
description character varying(255)
);
-- Name: wireless_interface; Type: VIEW; Schema: dcm; Owner: dcmadmin
CREATE VIEW wireless_interface AS
SELECT l2.device_id, l2.device_ip_address, l2.physical_device_id,
l2.unit_number, l2.slot_id, l2.slot_num, l2.module_id, l2.physical_port_id,
l2.port_num, l2.interface_id, l2.name, l2.if_name, l2.identifier, l2.speed_in_mb,
l2.physical_address, l2.interface_id AS radioif_id, wireless.radio_type,
wireless.is_enabled, wireless.is_auto_channel, wireless.tx_power,
wireless.channel_number, wireless.max_data_rate, wireless.beacon_rate,
wireless.dtim, wireless.rts_threshold, wireless.is_turbo_mode,
wireless.radio_g_mode, wireless.max_associated_clients FROM ((SELECT DISTINCT
d.device_id, d.ip_address AS device_ip_address, pd.physical_device_id,
pd.unit_number, s.slot_id, s.slot_num, msp.module_id, pp.physical_port_id,
pp.port_num, i.interface_id, i.name, i.if_name, i.identifier, pi.speed_in_mb,
pi.physical_address FROM device d, physical_device pd, slot s,
module_slot_present msp, physical_port pp, physical_interface pi, interface i
WHERE (((((((d.device_id = pd.device_id) AND (pd.physical_device_id =
s.physical_device_id)) AND (s.slot_id = msp.slot_id)) AND (msp.module_id =
pp.module_id)) AND (pp.physical_port_id = pi.physical_port_id)) AND
(pi.interface_id = i.interface_id)) AND ((i.table_subtype)::text =
'RADIO_INTERFACE'::text))) l2 LEFT JOIN (SELECT radio_interface.interface_id AS
radioif_id, radio_interface.radio_type, radio_interface.is_enabled,
radio_interface.is_auto_channel, radio_interface.tx_power,
radio_interface.channel_number, radio_interface.max_data_rate,