1

I have a Raspberry pi Device I want to use the (eth0) ethernet port/Cable to connect to a local network with ip range from 192.168.x.x. And i have a 4G usb dongle which connects to the internet on the eth1 interface. Dongles default Ip is 192.168.1.1(not sure this has anything to do with the problem) and reconfigures to the ip connecting to internet.

current setting
- eth0 ip - 192.168.200.200 netmask 255.255.255.0
- eth1 ip - 10.228.171.93   netmask 255.255.255.252

The issue arises when i try to change the netmask of eth0 to 255.255.0.0 to connect to the local network. once i change it, access to internet on the device stops and i am not able to ping to google.com or its ip address.

Required setting
- eth0 ip - 192.168.200.200 netmask 255.255.0.0
- eth1 ip - 10.228.171.93   netmask 255.255.255.252

I searched similar issues and tried out a few steps but none of it seems to work. resolv.conf has the following IP.

cat /etc/resolv.conf 
# Generated by resolvconf
nameserver 192.168.1.1

/etc/network/interfaces file is as below

cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

# auto lo
# iface lo inet loopback

auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.200.200
netmask 255.255.0.0
# gateway 192.168.230.230

# auto eth1
# allow-hotplug eth1
#iface eth1 inet dhcp

/etc/dhcpcd.conf file is as below

cat /etc/dhcpcd.conf
# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.

# Allow users of this group to interact with dhcpcd via the control 
socket.
#controlgroup wheel

# Inform the DHCP server of our hostname for DDNS.
hostname

# Use the hardware address of the interface for the Client ID.
clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per 
RFC4361.
# Some non-RFC compliant DHCP servers do not reply with this set.
# In this case, comment out duid and enable clientid above.
#duid

# Persist interface configuration when dhcpcd exits.
persistent

# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit

# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Most distributions have NTP support.
option ntp_servers
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu

# A ServerID is required by RFC2131.
require dhcp_server_identifier

# Generate Stable Private IPv6 Addresses instead of hardware based ones
slaac private

# Example static IP configuration:
interface eth0
static ip_address=192.168.200.200/24
# static ip6_address=fd51:42f8:caae:d92e::ff/64
#  static routers=192.168.8.1
#  static domain_name_servers=192.168.8.1 8.8.8.8

# It is possible to fall back to a static IP if DHCP fails:
# define static profile
# profile static_eth0
static ip_address=192.168.200.200/24
static netmask=255.255.0.0 
# static routers=192.168.1.1
# static domain_name_servers=192.168.1.1

# fallback to static profile on eth0
#interface eth0
#fallback static_eth0

I need both the network interface to work

through eth0 i should be able to ping 192.168.x.x through eth1 i should be able to ping google.com

  • 1
    You have fiddled with several files, put nonsense settings and incompatible data in them and not specified what OS you are using. It is not even clear **what you want to do** See [How to set up networking/WiFi](https://raspberrypi.stackexchange.com/a/37921/8697) which should explain or ask a clearer question. – Milliways Oct 30 '19 at 00:28
  • 1
    I modified two files /etc/network/interfaces to have the eth0 static Ip and /etc/dhcpcd.conf to do the same setting. Everything else is commented out i dono what you mean by nonsense setting if you can be more clear. what i want to do is mentioned in the last line. Eth0 i want to connect to a local network with ips 192.168.x.x and eth1 i want to connect to the internet – Deepak Kumar Oct 30 '19 at 04:24
  • 1
    The tutorial I linked is clear and explains how to configure networking - it is impossible to be more precise without more information.. What is not clear is what you are trying to do or WHY you ignored the warning # Please note that this file is written to be used with dhcpcd # For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf' – Milliways Oct 30 '19 at 06:00

1 Answers1

1

There are some things mixed up. I assume you are using Raspbian. Please don't ignore the note in /etc/network/interfaces:

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

With Raspbian you have three networking systems available out of the box. First you have to decide which one to use. For further information look at Compare three available networking systems on Raspbian.

Setup old style Debian ifupdown configured with /etc/network/interfaces you should google it. There are no much examples here on this site, mostly in conjunction with partial disabled dhcpcd.

With dhcpcd you may have a look at How to set up networking/WiFi.

You have a static ip address on eth0 192.168.200.200/24 (netmask 255.255.255.0). This address is part of the subnet 192.168.200.0/24 so your local network must also use this subnet with 254 ip addresses (192.168.200.1 to 192.168.200.254). If you have trouble when changing the netmask to 255.255.0.0 with 65533 ip addresses (192.168.0.1 to 192.168.255.254) then there is an issue with subnetting. I guess that your local network does not use the subnet with the big ip address range, but only the small one 192.168.200.0/24. But subnetting is out of scope here. Please refer to Wikipedia - Subnetwork. For an setup example you can look at Data modem as a Router. Just replace ppp0 with eth1 in that.

Ingo
  • 40,606
  • 15
  • 76
  • 189
  • Thanks for the answer. The issue is when i change subnet of eth0 to 255.255.0.0 i am able to ping the devices in that network from raspberry pi. But simultaneously on eth1 which was pinging google.com earlier stops pinging after subnet change on eth0. why would a subnet change in eth0 affect something in eth1? – Deepak Kumar Oct 30 '19 at 20:43
  • There can't be said any reproducible because you mixed up **ifupdown** and **dhcpcd** that conflicts with each other. For example you configure **eth0** in *interfaces* and in *dhcpcd.conf*. First decide what networking do you want to use and disable the other. I prefer to use systemd-networkd. – Ingo Oct 30 '19 at 23:32
  • Hi Thanks for the respose.turned out the issue was with the DNS ip which gets set in the resolv.conf by the dongle. 192.168.1.1 which is conflicting with the IP of eth0 as well. once it was manually updated to a public DNS server issue got resolved – Deepak Kumar Dec 02 '19 at 09:09
  • @DeepakKumar Please make a short answer and accept it after two days. Only accepting an answer will finish your question and it will not pop up again and again after months. – Ingo Dec 02 '19 at 20:01