<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Ethernet setup on LS1028ARDB in Layerscape</title>
    <link>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2071472#M15557</link>
    <description>&lt;P&gt;I am trying to set up ethernet interface on LS1028ARDB as well. I run your shell script from &lt;A href="https://community.nxp.com/t5/Layerscape/Switch-Setup-on-LS1028ARDB/m-p/2061701?attachment-id=18222" target="_blank"&gt;https://community.nxp.com/t5/Layerscape/Switch-Setup-on-LS1028ARDB/m-p/2061701?attachment-id=18222&lt;/A&gt; to bring the interfaces up, then follow the next steps. I do see the lines:&lt;/P&gt;&lt;P&gt;mscc_felix 0000:00:00.5 swp0: Link is Up -- 1Gbps/Full - flow control rx/tx&lt;/P&gt;&lt;P&gt;IPv6: ADDRCONF(NETDEV_CHANGE): swp0: link becomes ready&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I try ping -c 5 -s 1 100.1.1.1, the ping fails and I get Destination Host Unreachable.&lt;/P&gt;&lt;P&gt;my output of `ip a` shows:&lt;/P&gt;&lt;P&gt;eno2: &amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; with no ip address, and&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:swp0@eno2:" target="_blank" rel="nofollow noopener noreferrer"&gt;swp0@eno2:&lt;/A&gt;&amp;nbsp;&amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; with ip address 100.1.1.29&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
    <pubDate>Mon, 31 Mar 2025 23:15:39 GMT</pubDate>
    <dc:creator>noahw</dc:creator>
    <dc:date>2025-03-31T23:15:39Z</dc:date>
    <item>
      <title>Ethernet setup on LS1028ARDB</title>
      <link>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2071472#M15557</link>
      <description>&lt;P&gt;I am trying to set up ethernet interface on LS1028ARDB as well. I run your shell script from &lt;A href="https://community.nxp.com/t5/Layerscape/Switch-Setup-on-LS1028ARDB/m-p/2061701?attachment-id=18222" target="_blank"&gt;https://community.nxp.com/t5/Layerscape/Switch-Setup-on-LS1028ARDB/m-p/2061701?attachment-id=18222&lt;/A&gt; to bring the interfaces up, then follow the next steps. I do see the lines:&lt;/P&gt;&lt;P&gt;mscc_felix 0000:00:00.5 swp0: Link is Up -- 1Gbps/Full - flow control rx/tx&lt;/P&gt;&lt;P&gt;IPv6: ADDRCONF(NETDEV_CHANGE): swp0: link becomes ready&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, when I try ping -c 5 -s 1 100.1.1.1, the ping fails and I get Destination Host Unreachable.&lt;/P&gt;&lt;P&gt;my output of `ip a` shows:&lt;/P&gt;&lt;P&gt;eno2: &amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; with no ip address, and&lt;/P&gt;&lt;P&gt;&lt;A href="mailto:swp0@eno2:" target="_blank" rel="nofollow noopener noreferrer"&gt;swp0@eno2:&lt;/A&gt;&amp;nbsp;&amp;lt;BROADCAST,MULTICAST,UP,LOWER_UP&amp;gt; with ip address 100.1.1.29&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Mar 2025 23:15:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2071472#M15557</guid>
      <dc:creator>noahw</dc:creator>
      <dc:date>2025-03-31T23:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Ethernet setup on LS1028ARDB</title>
      <link>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2075909#M15591</link>
      <description>&lt;P&gt;1. Please check Kernel configuration file whether the following Kernel options are enabled.&lt;/P&gt;
&lt;P&gt;~# zcat /proc/config.gz | grep CONFIG_MSCC_OCELOT_SWITCH&lt;BR /&gt;CONFIG_MSCC_OCELOT_SWITCH=y&lt;BR /&gt;~# zcat /proc/config.gz | grep CONFIG_NET_DSA_MSCC_FELIX&lt;BR /&gt;CONFIG_NET_DSA_MSCC_FELIX=y&lt;BR /&gt;~# zcat /proc/config.gz | grep CONFIG_FSL_ENETC_MDIO&lt;BR /&gt;CONFIG_FSL_ENETC_MDIO=y&lt;/P&gt;
&lt;P&gt;Example – Single port configuration of the Felix DSA switch driver:&lt;BR /&gt;#!/bin/bash&lt;BR /&gt;#&lt;BR /&gt;# configure external switch interfaces&lt;BR /&gt;ip addr add 192.168.0.1/24 dev swp0&lt;BR /&gt;ip addr add 192.168.1.1/24 dev swp1&lt;BR /&gt;ip addr add 192.168.1.1/24 dev swp2&lt;BR /&gt;ip addr add 192.168.1.1/24 dev swp3&lt;BR /&gt;# master interface to be brought up first&lt;BR /&gt;ip link set eno2 up&lt;BR /&gt;# bring up the slave interfaces&lt;BR /&gt;ip link set swp0 up&lt;BR /&gt;ip link set swp1 up&lt;BR /&gt;ip link set swp2 up&lt;BR /&gt;ip link set swp3 up&lt;/P&gt;
&lt;P&gt;Please refer to "8.6.3.3.4 Bridge mode" and "8.6.3.3.5 Gateway mode" in LSDK 21.08 user manual to configure switch ports in other mode.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 08:23:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2075909#M15591</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2025-04-08T08:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Ethernet setup on LS1028ARDB</title>
      <link>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2076518#M15596</link>
      <description>&lt;P&gt;Figured this out, I needed to run&amp;nbsp;&lt;/P&gt;&lt;P&gt;dhclient eno0&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2025 23:30:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/Ethernet-setup-on-LS1028ARDB/m-p/2076518#M15596</guid>
      <dc:creator>noahw</dc:creator>
      <dc:date>2025-04-08T23:30:53Z</dc:date>
    </item>
  </channel>
</rss>

