Can't Map Network Share on NAS

Pymycycle

Reputable
Apr 18, 2015
2
0
4,510
I’m having a strange issue. I’m unable to map network drives to shares on my NAS. I’m able to ping the NAS and I’m even able to access its web interface but I cannot map to the share. My NAS is a Seagate GoFlex home and using WireShark I noticed it created an absurd amount of broadcast traffic so moved it into its own VLAN. My router is a Cisco 871w and I use Win 7 clients. Mapping to the share works fine when it’s back in the primary VLAN. It’s only when I move it to its own VLAN that I can no longer map to shares. I tried disabling Firewall and still nothing.

VLAN1 – 192.168.1.0/24 (Primary VLAN and all other network devices)
VLAN2 – 192.168.10.0/24 (NAS – 192.168.10.10)

The NAS is attached to FE0.

I’m using c870-advipservicesk9-mz.124-15.T5.bin IOS.

Mostly looking help with the mapping of shares to the NAS but if anyone has any comments on my router config reference security or efficiency I’d be open to suggestions.

Config

--------------------------------------------------------------------------------------------

version 12.4
!
dot11 ssid FAKE-SSID
vlan 1
authentication open
authentication key-management wpa
guest-mode
wpa-psk ascii 7 VETTED
!
ip dhcp pool NAS_BINDING
host 192.168.10.10 255.255.255.0
hardware-address 0010.752d.b0cc
default-router 192.168.10.1
dns-server 192.168.10.1 8.8.8.8 4.2.2.2
domain-name FAKE.DOMAIN.NET
!
ip domain name FAKE.DOMAIN.NET
ip inspect name REMEMBER tcp
ip inspect name REMEMBER udp
ip auth-proxy max-nodata-conns 3
ip admission max-nodata-conns 3
!
multilink bundle-name authenticated
!
no spanning-tree vlan 1
!
bridge irb
!
interface FastEthernet0
switchport access vlan 2
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface FastEthernet4
ip address dhcp
ip access-group INCOMING in
no ip unreachables
ip nat outside
ip inspect REMEMBER out
ip virtual-reassembly
duplex auto
speed auto
no cdp enable
!
interface Dot11Radio0
no ip address
!
encryption vlan 1 mode ciphers tkip
!
ssid FAKE-SSID
!
!
interface Dot11Radio0.1
encapsulation dot1Q 1 native
bridge-group 1
bridge-group 1 subscriber-loop-control
bridge-group 1 spanning-disabled
bridge-group 1 block-unknown-source
no bridge-group 1 source-learning
no bridge-group 1 unicast-flooding
!
interface Vlan1
no ip address
ip nat inside
ip virtual-reassembly
bridge-group 1
bridge-group 1 spanning-disabled
!
interface Vlan2
no ip address
ip nat inside
ip virtual-reassembly
bridge-group 2
bridge-group 2 spanning-disabled
!
interface BVI1
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface BVI2
ip address 192.168.10.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
ip forward-protocol nd
!
ip nat inside source list 1 interface FastEthernet4 overload
!
ip access-list extended INCOMING
permit udp any eq bootps any
permit udp host 206.108.0.131 any eq ntp
permit udp host 206.108.0.133 any eq ntp
permit udp host 67.215.197.149 any eq ntp
deny ip any any log
!
access-list 1 permit 192.168.1.0 0.0.0.255
access-list 1 permit 192.168.10.0 0.0.0.255
no cdp run
!
control-plane
!
bridge 1 route ip
bridge 2 route ip
!
end