<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.elphel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Visitor</id>
	<title>ElphelWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.elphel.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Visitor"/>
	<link rel="alternate" type="text/html" href="https://wiki.elphel.com/wiki/Special:Contributions/Visitor"/>
	<updated>2026-08-15T04:38:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.9</generator>
	<entry>
		<id>https://wiki.elphel.com/index.php?title=Network_configuration&amp;diff=3405</id>
		<title>Network configuration</title>
		<link rel="alternate" type="text/html" href="https://wiki.elphel.com/index.php?title=Network_configuration&amp;diff=3405"/>
		<updated>2008-05-09T06:21:24Z</updated>

		<summary type="html">&lt;p&gt;Visitor: /* Default config */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Network camera and especially RTP/RTSP network streaming require a proper network configuration. Here is the list of default settings and some hacks you can do.&lt;br /&gt;
&lt;br /&gt;
= Elphel 353 network config  =&lt;br /&gt;
&lt;br /&gt;
== Serial Number/Ethernet Address ==&lt;br /&gt;
&lt;br /&gt;
The ethernet address of the unit is the same as its serial number. The serial number is found on the label on the bottom of the camera. You can also type &lt;br /&gt;
&lt;br /&gt;
 ifconfig&lt;br /&gt;
&lt;br /&gt;
on the camera and look on the HWaddr address.&lt;br /&gt;
&lt;br /&gt;
== Default config ==&lt;br /&gt;
By default the camera start with preconfigured IP address: &lt;br /&gt;
 192.168.0.9 netmask 255.255.255.0 broadcast 192.168.0.255 gateway 192.168.0.15&lt;br /&gt;
&lt;br /&gt;
The default streamer configuration is to multicast on:&lt;br /&gt;
 232.8.1.33 port 20000&lt;br /&gt;
&lt;br /&gt;
== MDI_MODE ==&lt;br /&gt;
&lt;br /&gt;
By default the camera is configured in auto MDI_MODE, so it can negotiate with the switch or the computer and use both normal and crossover ethernet cables. Sometimes the auto negotiation does not work for some reason, starting from 7.1.7.19 firmware you can set the MDI_MODE manually by adding:&lt;br /&gt;
&lt;br /&gt;
 MDI_MODE=mdi&lt;br /&gt;
or&lt;br /&gt;
 MDI_MODE=mdix&lt;br /&gt;
or&lt;br /&gt;
 MDI_MODE=auto&lt;br /&gt;
&lt;br /&gt;
at the end of /etc/conf.d/net.eth0 configuration file.&lt;br /&gt;
&lt;br /&gt;
== ipsetd ==&lt;br /&gt;
&lt;br /&gt;
If a static IP address is needed, e.g. locating the unit or assigning it a temporary address later on intended to be made permanent, it can then be configured by using a combination of ARP and ping command. This is handled by an application called ipsetd that runs as a daemon making it possible during a certain period of time after power up to set the ip address. Note, to do so requires an unique IP address (contact the local network administrator). Once a IP temporary address has been configured the script exits and thus needs to be restarted if the address is to be reconfigured.&lt;br /&gt;
&lt;br /&gt;
ARP and ping from Windows or MS-DOS:&lt;br /&gt;
&lt;br /&gt;
1) Start a DOS prompt window&lt;br /&gt;
2) Type the following:&lt;br /&gt;
 arp -s &amp;lt;IP address&amp;gt; &amp;lt;Ethernet address&amp;gt;&lt;br /&gt;
 ping -l &amp;lt;length&amp;gt; &amp;lt;IP address&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 arp -s 123.45.67.89 00-40-8c-12-34-56&lt;br /&gt;
 ping -l 408 123.45.67.89 &lt;br /&gt;
&lt;br /&gt;
ARP and ping from UNIX or GNU/Linux:&lt;br /&gt;
&lt;br /&gt;
1) Start a shell&lt;br /&gt;
2) Type the following:&lt;br /&gt;
 sudo arp -s &amp;lt;IP address&amp;gt; &amp;lt;Ethernet address&amp;gt;&lt;br /&gt;
 sudo ping -s &amp;lt;length&amp;gt; &amp;lt;IP address&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
 arp -s 123.45.67.89 00:40:8c:12:34:56&lt;br /&gt;
 ping -s 408*) 123.45.67.89&lt;br /&gt;
&lt;br /&gt;
The unit responds to the ping in the examples above if the new address was configured. Note, this method(ARP/ping mehtod above) only sets the IP address temporarily (while the unit is powered). To make the change permanent the ip paramters (IP address, subnet mask and gateway address) must be set in a file on the camera, otherwise the default network settings will be restored again when the board is rebooted and you will have to start all over again.&lt;br /&gt;
&lt;br /&gt;
= Your PC network configuration =&lt;br /&gt;
Your PC/Mac should be configured by default as:&lt;br /&gt;
 192.168.0.15 netmask 255.255.255.0 broadcast 192.168.0.255&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039; Attention! Check your firewall! &#039;&#039;&#039; Before spending hours trying to understand why multicast does not work check if your firewall do not block it.&lt;br /&gt;
&lt;br /&gt;
You need to add route to the multicast address. Both commands can be resumed like:&lt;br /&gt;
 sudo ifconfig eth1 192.168.0.15 netmask 255.255.255.0&lt;br /&gt;
 sudo route add -net 232.0.0.0 netmask 255.0.0.0 dev eth1&lt;br /&gt;
This suppose what your camera is connected on eth1. (eth0 is my wifi)&lt;br /&gt;
&lt;br /&gt;
= Some special hacks =&lt;br /&gt;
&lt;br /&gt;
== My wifi network is in 192.168.0.0/24 network ==&lt;br /&gt;
&lt;br /&gt;
If your internet connection trough wifi is in 192.168.0.0/24 you can connect the camera restricting by the subnetwork.&lt;br /&gt;
&lt;br /&gt;
 sudo ifconfig eth1 192.168.0.15 netmask 255.255.255.248&lt;br /&gt;
 sudo route add -net 232.0.0.0 netmask 255.0.0.0 dev eth1&lt;br /&gt;
&lt;br /&gt;
So my routes are: &lt;br /&gt;
 192.168.0.8     0.0.0.0         255.255.255.248 U     0      0        0 eth1&lt;br /&gt;
 192.168.0.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0&lt;br /&gt;
 232.8.1.0       0.0.0.0         255.255.255.0   U     0      0        0 eth1&lt;br /&gt;
 0.0.0.0         192.168.0.1     0.0.0.0         UG    0      0        0 eth0&lt;/div&gt;</summary>
		<author><name>Visitor</name></author>
	</entry>
	<entry>
		<id>https://wiki.elphel.com/index.php?title=File:LinuxWorld_2007_SF_Elphel.jpg&amp;diff=2707</id>
		<title>File:LinuxWorld 2007 SF Elphel.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.elphel.com/index.php?title=File:LinuxWorld_2007_SF_Elphel.jpg&amp;diff=2707"/>
		<updated>2007-09-08T06:17:09Z</updated>

		<summary type="html">&lt;p&gt;Visitor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Booth 1236 - Elphel, Inc. - http://www.elphel.com&lt;/div&gt;</summary>
		<author><name>Visitor</name></author>
	</entry>
	<entry>
		<id>https://wiki.elphel.com/index.php?title=File:LinuxWorld_2007_SF_Elphel.jpg&amp;diff=2706</id>
		<title>File:LinuxWorld 2007 SF Elphel.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.elphel.com/index.php?title=File:LinuxWorld_2007_SF_Elphel.jpg&amp;diff=2706"/>
		<updated>2007-09-08T06:04:48Z</updated>

		<summary type="html">&lt;p&gt;Visitor: Booth 1236
Elphel, Inc.
http://www.elphel.com&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Booth 1236&lt;br /&gt;
Elphel, Inc.&lt;br /&gt;
http://www.elphel.com&lt;/div&gt;</summary>
		<author><name>Visitor</name></author>
	</entry>
</feed>