October 2009 Newsletter

site_logo3.gif                                                                                                                                                                                

CAS Newsletter October 2009

IN THIS ISSUE
  • Trouble Shooting BACNet IP / Ethernet
  • Wireshark How To Find The Packets You Are Looking For
  • Trouble Shooting BACnet MSTP
  • Power Over Ethernet
  • International Household Electricity Prices
Cartoon

cartoon4.jpg

Trouble Shooting BACnet IP / Ethernet

 Requiersa tools:

Tips:

finger.jpg #1: You might not capture the traffic if you dont use a hub. Read the article on hub and switches to understand why. https://store.chipkin.com/articles/hubs-vs-switches-using-wireshark-to-sniff-network-packets

finger.jpg#2: You can select the packets you capture to reduce log file size by defining a capture filter before you start the capture. We suggest you avoid this. If you are short of space you can select which packets you save.

finger.jpg#3: You can select which packets you view from the total log by defining a display filter.

finger.jpg#4: You can select which packets to save in the log files.

finger.jpg#5: You can search for particular packets.

How to Capture with Wireshark

1. Capture Main Menu

capturtemain.jpg

2. Interfaces On Capture Menu

a. You get a list of network adapters. Pick the one connected to the network of interest. Its probably not the wireless adapter. Most often its the adapter with the packet count increasing

interfaces.jpg interfacesb.jpg

b. Select the Start button or

c. Select the options button to define a capture filter. Define the filter and click start.

3. A list of packets accumulates on the screen. trouble3.jpg

4. Apply a Display Filter. More on display filters later. For now simply type bacnet into the filter field and click apply. bacnet4.jpg

5. Find the packet you are interested in. Click on it to select it. A breakout of the selected packets data is shown below the packet list. touble5.jpg

6. You can break out the level of detail by expanding the sections of the packet.

Think of a bacnet packet as a letter you send to a bacnet device. When you take it to the bacnet post office. The clerk says he does not understand the address. He passes it to the UDP clerk. The UDP clerk takes your letter and puts it in a bigger envelope. He addresses the envelope with a UDP address. He passes it to the IP post office clerk. The IP clerk takes your letter and puts it in a bigger envelope. He addresses the envelope with an IP address. He passes it to the Ethernet post office clerk. The Ethernet clerk takes your letter and puts it in a bigger envelope. He addresses the envelope with a hardware address and sends it to that computer. When it arrives the process is reversed until finally the contents are passed to the bacnet application. trouble6.jpg

Ethernet packets contain packets from other higher level protocols nested inside each other. You drill down to see the detail you want.

In the example below you can see the bacnet packet nested inside a UDP (User Datagram Protocol) which is nested inside an IP protocol packet which is in turn nested inside an Ethernet packet. Drilling down into the Bacnet packet you can see the concept is carried even further. The bacnet service is a write to analog input #1. That is wrapped up with some information about the device the device number and network number is contained inside the NPDU.

trouble6b.jpg

7. Drill down to see the BACnet info trouble7.jpg 

How to Select (Filter) What you Capture with Wireshark

Before you start a capture you can specify a capture filter. The effect of the filter is to prevent all packets being captured. Doing this can save space when you save the log and it might make it easier to find the packets you are interested in. However, there is some risk that you might filter out the packets of interest.

For example, a BACnet device might not operate correctly because it is being hammered with packets from another protocol being sent incorrectly to the BACnet device. Our advise is to capture as much as possible and then filter what is displayed. wireshark_capture.jpg

Here are some sample filtersExamples

Capture only traffic to or from IP address 172.18.5.4:

host 172.18.5.4

Capture only traffic to or from IP address 172.18.5.4 but exclude all FieldServer RUINET messages

host 192.168.1.81 and port not 1024

Capture traffic to or from a range of IP addresses:

net 192.168.0.0/24

or

net 192.168.0.0 mask 255.255.255.0

Capture traffic from a range of IP addresses:

src net 192.168.0.0/24

or

src net 192.168.0.0 mask 255.255.255.0

Capture traffic to a range of IP addresses:

dst net 192.168.0.0/24

or

dst net 192.168.0.0 mask 255.255.255.0

Capture only bacnet traffic: Assumes every device is compliant and is using the standard port.

port 47808 

Wireshark How to find the packets you are looking for

Useful Hint

finger.jpgIts easy to sort packets by source or destination IP, Click the column headings.

finger.jpgYou can mark, packets you find interesting. Then later you can save, display or print the marked packets.

Searching :

The problem is that you can only specify one text string and hence you can only specify one search criteria. For example in the search below, all packets that contain the string = analog object (1) will be found irrespective of the device, ip address ..etc.

Some Useful Search Strings

writeProperty

objectIdentifier: analog-input object, 1

objectIdentifier: analog-output object, 11

objectIdentifier: binary-input object, 10041

objectIdentifier: binary-output object, 45

wireshark_find.jpgWireshark Display Filtering

Useful Hintfinger.jpgIts easy to sort packets by source or destination IP, Click the column headings.

You can use the expression builder to build selection criteria for filters.

Looking for failures:

Try this search string. Type5 are errors, Type6 are Reject messages and type 7 are abort messages.

bacapp.type == 5 || bacapp.type == 6 || bacapp.type == 7

wiresharkhow2.jpg

Looking for messages which specify particular objects types:

Try these search strings. 0=AI, 1=AO, 2=AV, 3=BI, 4=BO, 5=BV, 6=Calendar Object, 7=Command Object, 8=Device Object, 9=Event Enrollment, 10=File, 11=Group, 12=Loop, 13=MI, 14=MO,17=Schedule,19=MV, 20=Trend Log

bacapp.objectType == 0

Looking for a particular Object: In this example all messages which reference AI(1) are listed.

bacapp.instance_number == 1 && bacapp.objectType == 0

wiresharkhow3.jpgLooking for messages to/from particular devices

ip.addr == 192.168.1.90 Sent to/Sent From

ip.dst_host == 192.168.1.90

ip.src_host == 192.168.1.90

You can use the expression builder to build filter expressions

wiresharkhow4.jpg

From the drop down list of protocols there are two specifically related to BACnet. They are shown below

wiresharkhow5.jpg

Trouble Shooting BACnet MSTP

One badly behaved device on a MSTP trunk can cause a collapse in performance.

To understand why consider this one example of what can go wrong. RS485 is s shared trunk. When two devices transmit at the same time this causes a collision. In simple terms think of the messages interfering with each other and corrupting each other so neither message is recognizable. To prevent this happening and to allow for multiple master on a network, BACnet has chosen a token based system. Only devices with the token can initiate a message transaction. To keep things running smoothly, BACnet has some demanding timing requirements. For example, a device passes the token on. The receiving device has 15msec to use the token. Lets say it responds in 18msec. During that interval, the original device doesnt see the token being used so it send the token again. As it sends it, the 2nd device uses the token (3 msec late). Now the messages from the 1st and 2nd device clash. The 2nd device thinks it has the token and starts to use it. The 1st device thinks the token got lost and starts to poll for a new master. Messages clash, causing contention and eventually both devices recover to a valid state using the protocol rules. These rules require waiting various timeout periods. All the waiting, collisions and recovery waste time and bandwidth. If this happens often (as it will because one device doesnt meet the spec) then you can lose significant bandwidth.

Strategy

Capture Traffic using USB-485 converter

Use a tool like BACspy

Or

Use Hyperterminal

Analyze Traffic

Use a tool like BACspy online or Offline

Or

Perform a manual analysis

Configure HyperTerminal

Select the COM port which corresponds to your USB converter

Set the Baud Rate correctly

Set the other parameters as shown

troublebacmstp.jpg

troublebacmstp1.jpgCapture to File

Use this menu to start and stop the capture

troublebacmstp2.jpg

As the messages are captured you will see these non-human readable characters fill the screen.

troublebacmstp3.jpg

troublebacmstp4.jpg

Inspect the captured data before you leave site to see if it usable.

You need a viewer capable of displaying the hex bytes. Here is a free download and hex viewer. Open the log file.

To ensure you captured useful data look for messages that begin 55 FF. All BACnet MSTP messages begin with the same codes.

If you dont see any then this may mean you captured at the wrong baud rate or some other setting is wrong. It is also possible that there is no BACnet communication.

troublebacmstp5.jpg

http://hexdump32.salty-brine-software.qarchive.org/_download2.htmlYou can use the CAS BACspy tool

BACspy automates this process of capture and analysis.

troublebacmstp6.jpg

troublebacmstp7.jpg

Power Over Ethernet

POE is a technology that provides electrical power to a Powered Device using conductors in a CAT5 cable. Power is delivered by means of a DC voltage and maximum current rating. Typical Power Sourcing Equipment devices are network switches.

Even though there is a standard (IEEE 802.3af) there are a number of factors you should watch for as this technology emerges and evolves because as usual the devil is in the details.

Check for IEEE 802.3af standard compliance on data sheets. A number of products dont comply with the standard. If you are merely a consumer, any IEEE 802.3af compatible device will work with any other. If your PoE devices are not IEEE 802.3af compliant, best stick with one brand, or at least with PoE devices known to be compatible with your favorite brand.

Jargon

Powered Devices (PD)

The device being powered.

Power Sourcing Equipment (PSE)

The device supplying the power

Endspan PSE

Also known as POE Switches. The switch (or other network endpoint) supplies the power.

Midspan PSE

The Power is injected onto the cable outside of the network end point. You use Midspan PSEs when you are using a standard switch with no POE capability but you want the Ethernet cable to carry the power to the field device. You thus inject power at a midpoint

Modes

This jargon term is used to define whether power is carries on the data lines or the spare line. The PSE determines the mode. The standard requires that PDs support both modes. The PSE may not activate both modes at the same time.

Mode A

The data lines also carry the power.

Mode B

Spare or non-data lines carry the power.

POE Power Class

A term that describes the amount of power supplied. The PSE sets the class based on how the PD signals it for power. During the start up phase, the PD draws a specific amount of current. This tells the PSE what class to operate at.

Class Power In Watts Classification Current mA
0 0.44 to 12.95 <5
1 0.44 to 3.84 10.5
2 3.84 to 6.49 18.5
3 6.49 to 12.95 28
4 Reserved 40

POE Powering Stages

A PSE must never send power to a device that does not expect it. For this reason power is not simply applied when a connection is made. Rather the PSE progresses through these powering stages.

Signature

PSE probes the device to see if it is 802.3af compliant by looking for a signature impedance of 25kOhm using a voltage of between 2.7 and 10V. If the signature is not seen then the process terminates and no power is supplied. The Signature stage restarts when cable is reconnected.

Classification

PSE supplies a voltage and the PD draws a specific current. Based on the current draw the PSE determines the power class to be supplied.

Startup

The PD starts up as the supplied voltage reaches a level sufficient for the device to operate normally.

Normal Operation or Disconnect

If you remove the cable the PSE stops supplying power. Reconnection means that the powering stages begin again with the signature stage. If the PD stops using the supplied power (draws less than 10mA for 400mSec) the PSE stops applying power returns to the signature stage.

Watch Out for

Heat Dissipation

Two Issues hotter cables and hotter switches

Some of the power supplied will be lost as heat in the CAT5 cable. Heat degrades the insulation (at best) or causes fires at worst. Based on the 802.3af spec the TIA permits a max of 100 CAT5 POE cables to be bundled together. Thus is based on the spec of 350mA. There are devices that can supply more current and hence the heat issue becomes more pronounced.

The POE switches will draws more power and hence dissipate more heat from internal losses.

Polarity

The POE standard does not specify which lines will carry the positive voltage and which will carry the negative voltage. If the PD meets the POE spec there are no issues. If it doesnt then you could end up with a polarity reversal and damage.

Multi Mode Cat5

Some device use non-data lines in the CAT5 cable for other purposes such as voice. If such a device was connected to a PSE that doesnt meet the POE standard then it could be supplied a voltage it doesnt expect and this could cause damage.

Connecting non POE devices

Not an issue of the PSE meets the standard because it wont apply power unless the field device presents the correct signature. If it doesnt meet the spec, power could be applied continuously which means the the non POE field device could see a voltage that it wasnt designed for and this could cause damage.

Voltage Level

Different vendors have implemented POE at different voltage levels. These PSEs are non standard.

Eg.

Cisco 48V

Intel 12V or 24V

Symbol 12V or 24V

Apple 48V

International Household Electricity Prices

2005

Canada

0.076

France

0.142

Germany

0.212

India

0.047

Kazakhstan

0.031

Jamaica

0.213

South Africa

0.061

Thailand

0.072

United States

0.095

Source: The International Energy Agency

SAFETY PICTURES
manpower_used1.jpg high-voltage-fence_used.jpgSubmit any related pictures to us.
2009 Chipkin Automation Systems  [email protected]BACnet is a registered trademark of ASHRAE.

Contact Us

Contact us via phone (+1 866-383-1657) or leave a detailed message below for sales, support, or any other needs

*Required Field
*Required Field
I'd like to receive the newsletter. *Check email for confirmation.
*Required Field
8:00am - 12:00pm 12:00pm - 5:00pm