We are putting out new Extreme switches (x460 and x440) into different buildings. We are running 15.3.2.111. We use cisco phones for our VoIP. We have models 8945 and 9951 which also provide video. They have worked great in our test building (which was small), however now the video isn't working in the newer deployments. We are using netlogin to authenticate all devices. When a phone is authenticated (mac auth) a UPM profile is ran to turn on lldp and set dscp... You can make calls without a problem. I'm wondering if there is an uplink/downlink setting that we need that I have completely forgot about. Below is what our UPM script. Any help/suggestions would be greatly appreciated! # # Module upm configuration. # create upm profile c_PHONE_UPM #@MetaDataStart #@ScriptDescription This Profile is Used to Provision a Port for a Phone Once i t's Been Authenticated. #@MetaDataEnd create log message PHONE_AUTHENTICATE_SCRIPT if (!$match($EVENT.NAME,USER-AUTHENTICATED)) then create log message PHONE_AUTHENTICATED_CONFIGURING_PORT_$EVENT.USER_PORT configure lldp port $EVENT.USER_PORT advertise system-capabilities configure lldp port $EVENT.USER_PORT advertise vendor-specific med capab ilities # advertise the 802.1Q tag for the Phone Vlan configure lldp port $EVENT.USER_PORT advertise vendor-specific dot1 vlan -name vlan Phone # advertise the DSCP for the phone to use configure lldp ports $EVENT.USER_PORT advertise vendor-specific med poli cy application voice vlan Phone dscp 46 #advertise PoE capabilities (some Cisco phones require this) configure lldp ports $EVENT.USER_PORT advertise vendor-specific med powe r-via-mdi #turn on lldp on the port enable lldp port $EVENT.USER_PORT # ignore 802.1p bits on the edge ports (the phones are sending a Qtag wh ich always have pbits) disable dot1p examination ports $EVENT.USER_PORT # replace the 802.1p bits when forwarding packets enable dot1p replacement ports $EVENT.USER_PORT enable snmp traps lldp ports $EVENT.USER_PORT enable snmp traps lldp ports $EVENT.USER_PORT create log message END_OF_PHONE_AUTHENTICATED_$EVENT.USER_PORT endif if (!$match($EVENT.NAME,USER-UNAUTHENTICATED)) then create log message PHONE_IS_UNAUTHENTICATED_$EVENT.USER_PORT disable lldp port $EVENT.USER_PORT disable snmp traps lldp ports $EVENT.USER_PORT disable snmp traps lldp ports $EVENT.USER_PORT endif