Your Cisco config is wrong.
in fact if in cisco you config native vlan 200 when your fas send ethernet with vlan 200 tap the cisco drop it because for him ethernet packet should not have tag
and second the switchport trunk allowed vlan 200 allowe only ethernet packet with vlan 200 to bee authorized in this switchport.
So you should remove switchport trunk native vlan 200 with the command
no switchport trunk native vlan 200
and you should allowed vlan 1000 with command
switchport trunk allowed vlan add 1000
your result should bee like this:
MYSWITCH#sho run int gi0/14
Building configuration...
Current configuration : 191 bytes
!
interface GigabitEthernet0/14
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 200, 1000
switchport mode trunk
spanning-tree portfast
end
also verify that vlan 1000 is create in the cisco config "sh vlan" and normaly if you use a trunck port you can have the
spanning-tree portfast command (anyway it is inactive in trunck mode)