NAS devices are designed to stand alone. The bottle neck will not be the Ethernet connection, but the performance of the HDDs inside of the NAS, that is unless you are running on a 10BaseT network, or using a HUB instead of a Switch for your LAN.
If you have a 2nd NIC inside of your CentOS box then it should be active to begin with. You would just assign the IP the same way you did for eth0.
The path should be: /etc/sysconfig/network-scripts/ifcfg-eth#
here is mine:
Code:
[root@centos ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
TYPE="Ethernet"
HWADDR=00:00:00:00:00:00
NAME="System eth0"
ONBOOT="yes"
#BOOTPROTO="dhcp"
BOOTPROTO="static"
NM_CONTROLLED="no"
IPADDR=192.168.1.2
NETMASK=255.255.255.0
USERCTL="no"
#DEFROUTE=yes
#PEERROUTES=yes
#PEERDNS=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
you would just set yours eth1 to what ever IP scheme you need.