Well, I guess I ignored the subject, which gives me some of the info I asked for. Do you need a whole config or just the portions for setting up vlans? Below is the vlan portion:
To set up multiple vlans, you simply do:
config terminal
vlan 1
vlan 2
...
interface Vlan1
ip address 192.168.1.1 255.255.255.0
!
interface Vlan2
ip address 192.168.2.1 255.255.255.0
Then add port members to these vlans with:
Interface Fastethernet0/1
switchport access vlan 1
Interface Fastethernet0/2
switchport voice vlan 2
You may also want to add "helper-addresses" and other configurable options for the vlans, but without more info on what your network is like...kind of hard to do.
If you do need the entire config, post your model and IOS version.