Link to home
Start Free TrialLog in
Avatar of deewave
deewaveFlag for Canada

asked on

VoIP and Data on single switch, with SonicWall

Hi experts.

Trying to find out what could be the best solution for this setup.
SonicWall TZ300
D-Link DGS-1210-28P
Phone Polycom VVX300

We will be implementing VoIP in our offices. Actually, the ip phone has 2 ports: 1 goes to the switch, and the other goes to the PC.
The VoIP subnet will be in 192.168.x.x network, the data subnet will be 10.40.x.x

I need to have both subnets communicate with other offices (VPNs) and with the WAN.

Thanks for any advise you could provide

Martin
Avatar of J Spoor
J Spoor
Flag of Netherlands image

to do that you will need to have the phone VLAN tag both networks. Say vlan 2 (data) and vlan 3 (VoIP)
and equip the network switch with both VLANs (when using VLANs do not use VLAN 1 for production)

You then hookup two SonicWALL ports, say X0 and X2, into each of the two VLANs.
Avatar of deewave

ASKER

interesting.
But as a computer and phone will use the same physical switch port, how do I tag that port?

Thanks JSpoor
usually this is a configuration on the phone, to start tagging the packets.
the switch port msut then be configured as 802.1q trunk

what kind of switch do you have?

on a cisco it would be smthn like

interface vlan 2
 description LAN
!
interface vlan 3
 description VoIP
!
interface gig 0/10
 description VoIP phone
 switchport mode trunk
 switchport trunk allowed vlan 2-3
!
interface gig 0/11
 description PBX
 switchport mode access
 switchport access vlan 3
!
interface gig 0/2
 description SonicWALL X0
 switchport mode access
 switchport access vlan 2
!
interface gig 0/3
 description SonicWALL X2
 switchport mode access
 switchport access vlan 3
!
interface gig 0/21
 description a random pc
 switchport mode access
 switchport access vlan 2
!
Avatar of deewave

ASKER

So, here is my understanding
1. each ports that has a phone+pc connected to must be trunk?
2. SonicWall X0 to a VLAN2 port
3. Sonicwall X2 to a VLAN3 port

Thanks
ASKER CERTIFIED SOLUTION
Avatar of J Spoor
J Spoor
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
is this problem solved?