Difference between revisions of "Serial Connections"

From wiki.emacinc.com
Jump to: navigation, search
m (Marked to be split again.)
m (Kyoungmeyer moved page Initial Connections to Serial Connections: splitting page)
(No difference)

Revision as of 11:47, 26 November 2013

TODO: {{#todo:Split again (11.25.13-13:05->KY+);(11.25.13-18:45->MD+)|Klint Youngmeyer|oe 4,oe 5,ky,buggy,md}}

THIS PAGE NEEDS: 1. To be split into two pages: "Serial Connections" and "Network Connections". This is because the table listing serial connection information is very important, but has been very difficult to find. We need the page to have the most obvious name possible for this. We also should try to find other pages which mention using a serial connection, and refer them to this page to find out the connection information they need for their board.

There are several ways to connect to a system running EMAC OE Linux. The preferred connection method depends on the capabilities of the hardware. For example, headless systems (those without a graphical interface) will most likely use a serial port console, while systems with a video connection may be accessed using a keyboard and LCD or monitor. When an LCD or monitor is available, a serial connection can occasionally still be needed; usually, this need arises after a user has accidentally misconfigured the display. Other times, it may be useful to be able to use a serial console on a board that's running remotely but has had its network connection drop out. The serial console can be a very useful tool for diagnosing and debugging issues even after development has finished.

Serial Terminal

A serial terminal connection is most commonly the first connection that will be made to a system in its default configuration. A serial terminal application such as Minicom for Linux or PuTTY under Windows is required for this connection. The serial cable type, port, and communication parameters for each system type are listed in Table 1 below.

Table 1: Serial Communication Parameters
Board Port Cable Type Baud Rate Data Bits Parity Stop Bits Flow Control
iPac-9302 HDR6 NULL Modem 57600 8 None 1 None
PPC-E7 CN1 NULL Modem 57600 8 None 1 None
SoM-200ES with SoM-9307M CN1 NULL Modem 57600 8 None 1 None
SoM-200ES with SoM-9G45M COMB NULL Modem 115200 8 None 1 None
SoM-200ES with SoM-9M10M COMB NULL Modem 115200 8 None 1 None
SoM-210ES with SoM-9307M COMA NULL Modem 57600 8 None 1 None
SoM-210ES with SoM-9G45M COMB NULL Modem 115200 8 None 1 None
SoM-210ES with SoM-9M10M COMB NULL Modem 115200 8 None 1 None
SoM-150ES HDR11 NULL Modem 115200 8 None 1 None
PPC-E10 with SoM-3517M HDR3 NULL Modem 115200 8 None 1 None
x86 Boards * * * 8 None 1 None



Follow the steps below to establish a serial connection:

  1. Connect a serial cable between the serial port on the workstation and target board and start a terminal application.
  2. Setup the communication parameters for your board according to Table 1.
  3. Connect power to the target board; boot messages will begin to print within a few seconds.
  4. When the board has finished booting a login prompt will appear.



Network Connections

This section describes the process of establishing a basic network connection with the board. Once a network connection is established, the system may be accessed through the servers on the board, including SSH, HTTP, FTP, and Telnet.

Local Area Network

To make a connection to a local area network (LAN), simply connect a standard Ethernet patch cable to the primary Ethernet port on the board. This may be done before or after power has been applied, as the system is set up to allow hot-plugging of the network interface and should automatically re-configure the network settings when a link is detected.

EMAC OE Linux devices are set to attempt a DHCP network configuration by default. If a DHCP server is available on the network that the system is connected to, it will contact the server to secure an IP address lease. If an address has been obtained by DHCP, there are several ways of determining what address has been leased. The easiest way to access this information is to connect to the board through another method (i.e. serial terminal or graphical interface) and run the ifconfig command to determine the address that has been obtained on the eth0 interface. Alternatively, network tools such as packet sniffers can be used to determine what IP address has been leased. The local network administration can determine and provide this information as well by querying the DHCP server tables. The listing below illustrates usage of the ifconfig command to determine the IP address.

root@emac-oe:~# ifconfig
eth0      Link encap:Ethernet  HWaddr 00:50:C2:E6:60:F4
          inet addr:10.0.2.100  Bcast:10.0.255.255  Mask:255.255.0.0
          inet6 addr: fe80::5054:ff:feb1:f83e/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1825 errors:0 dropped:0 overruns:0 frame:0
          TX packets:553 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:139124 (135.8 KiB)  TX bytes:50603 (49.4 KiB)
          Interrupt:25 Base address:0xc000

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

If the board fails to obtain a lease from a DHCP server, it will fall back to a static networking configuration. The default settings are detailed in Table 2 below.

Table 2: Default Static IP Settings
IP Address 10.0.2.41
Subnetwork Mask 255.255.255.0
Default Gateway 10.0.2.1
Broadcast Address 10.0.2.255

Direct Connection

If a LAN connection is not available or desirable, you may make a direct connection to the board. Use an Ethernet crossover cable to connect directly between the workstation and the target board. Apply power to the board once the physical connections have been made.



If a direct connection has been made to the board and a DHCP server is not running on the workstation, DHCP will fail and the system will fall back to the default IP settings in Table 2 above. The network interface on the workstation will then need to be configured to use the same subnetwork mask and broadcast address as the target board with a different IP address that falls in the same subnetwork. See Table 3 below for suggested static network settings if the board is still configured with the default static fall back settings. If the configuration has been changed, adjust these values to match the new settings.

Table 3: Static Network Settings for Direct Connection
IP Address 10.0.2.1
Subnetwork Mask 255.255.255.0
Default Gateway Blank or 10.0.2.41
Broadcast Address 10.0.2.255

To verify that the connection is working properly, use the ping utility to test that the board responds at the address 10.0.2.41 (assuming default network configuration). The listing below shows an example of a successful ping (Ctrl-c was pressed after five packets).

developer@ldc:~$ ping 10.0.2.41
PING 10.0.2.41 (10.0.2.41) 56(84) bytes of data.
64 bytes from 10.0.2.41: icmp_req=1 ttl=64 time=0.447 ms
64 bytes from 10.0.2.41: icmp_req=2 ttl=64 time=0.213 ms
64 bytes from 10.0.2.41: icmp_req=3 ttl=64 time=0.308 ms
64 bytes from 10.0.2.41: icmp_req=4 ttl=64 time=0.318 ms
64 bytes from 10.0.2.41: icmp_req=5 ttl=64 time=0.251 ms
^C
--- 10.0.2.41 ping statistics ---
5 packets transmitted, 5 received, 0% packet loss, time 3996ms
rtt min/avg/max/mdev = 0.213/0.307/0.447/0.081 ms

Next Steps

After you have established a connection with your device running EMAC OE Linux, you will need to log into the system.