# Dell PowerConnect Switch CLI

## Adding a VLAN to a port-channel

Add the VLAN to the DB

```
vlan database
vlan 4082
```

Check ARP respose from uplinks

```
show bridge address-table
show bridge address-table vlan <vlan-num>
```

Add the VLAN to the port-channel for the UPLINKS

```
interface port-channel 10
switchport trunk allowed vlan add 4082
```

Add the vlan to the port-channel for the port that needs the vlan

```
interface port-channel 15
switchport trunk allowed vlan add 4082
```

Save

```
copy running-config startup-config
```