GE Healthcare
Senographe DS
Revision 1
Service Information and Procedures Class A 2385072-16-8EN
Job Card ELE A021 - Networking Connection and Configuration
Page no. 661
Chapter 7
JC-ELE-A-021.fm
For V4 Control Stations type the following lines (separated by carriage returns):
#!/bin/sh
# Section for routing
echo Starting route service
route add net <network number> <gateway address>
#
# Section for autoneg
echo Setting for no autoneg
ndd -set /dev/e1000g0 adv_autoneg_cap 0
where <
network number>
is the address to be accessed through the gateway, and <
gateway
address>
is the IP of the gateway (router) indicated by the administrator.
Note:
Typing the "echo" lines help you to locate any possible faults during boot in case of mistyping the
router or auto negotiation information.
Note:
The example above includes sections for both declaring a router and disabling auto negotiation.
Type one or both sections according to your requirements.
Note:
For V4 Control Stations, 1000 Mbit/s Half Duplex is not supported and the Network Interface Card
already has 1000 Mbit/s Half Duplex disabled, so there is no need disable this mode within the
/etc/rc2.d/S93route
file.
If the maximum speed supported by the hospital switch port
connected to the Control Station is less than that of the
e1000g0 interface, add appropriate commands from Table 1
on page 655 on each new line to disable the faster speeds
that are not supported.
If the hospital switch port does not support 1000 Mbit/s full
duplex, but supports all other speeds add the following line:
ndd -set /dev/e1000g0 adv_1000fdx_cap 0
If the hospital switch port does not support 1000 Mbit/s full
duplex and 1000 Mbit/s half duplex, but supports all other
speeds add the following line
ndd -set /dev/e1000g0 adv_1000fdx_cap 0
If the hospital switch port does not support 1000 Mbit/s full
duplex, 1000 Mbit/s half duplex and 100 Mbit/s full duplex,
but supports all other speeds add the following two lines:
ndd -set /dev/e1000g0 adv_100Ofdx_cap 0
ndd -set /dev/e1000g0 adv_100fdx_cap 0
If the hospital switch port does not support 1000 Mbit/s full
duplex, 1000 Mbit/s half duplex, 100 Mbit/s full duplex and
100 Mbit/s half duplex, but supports all other speeds add the
following three lines:
ndd -set /dev/e1000g0 adv_100Ofdx_cap 0
ndd -set /dev/e1000g0 adv_100fdx_cap 0
ndd -set /dev/e1000g0 adv_100hdx_cap 0