Fedora Networking :: Two NIC One Machine / Way To Get Two Interfaces To Work Together?

Mar 24, 2011

- eth0 is connected to a 'Green" interface of a smoothwall router.
- eth1 is connected to a 'Orange' interface of the same smoothwall router.

The smoothwall router is setup to forward port 80 to the address of the eth1. I can ping eth1 from the smoothwall router so there is that connection.I have a web server running on port 80 and I have opened port 80 in the firewall and made eth1 a trusted interface.In this configuration, when accessing the outside world all the traffic goes through eth0 and DNS is snappy and faster. The problem is that anyone outside can not access the web server with a timeout error.If I disable eth0 and set DNS info on eth1( DNS servers are the QWest IPs ), people can access the web server, but DNS is very poor often taking more than a minute for a look up.Is there any way to get the two interfaces to work together?

View 3 Replies


ADVERTISEMENT

Fedora Networking :: VLAN Do Not Work Over Bonded Or Bridged Interfaces

Aug 20, 2011

I'm having trouble getting Fedora 15 to work with my em/bond/br configuration as it did in Fedora 14. I've got a bonding interface over em1 and em2, and then individual bond vlans (bond0.2, bond0.10, etc...), I then have a similarly named bridge interface (br0.2, br0.10, etc...) for kvm. Regardless of if I assign bond0.2 or br0.2 the IP address, I am unable to ping the gateway, but the native untagged VLAN (bond0, br0) has no issue at all.

To try to isolate this issue down to the switch or Fedora 15, I went with a plain em setup and configured em1, and em1.2 which works as expected. This issue has been plaguing me since Fedora 15 came out and I'm about to trash it and go back to Fedora 14 (Which didn't have this issue), but some of the new kvm features have kept me trying to get over this incomprehensible hump.

View 1 Replies View Related

Fedora Networking :: Enable 3 Interfaces \ When Start One Interface The Another Interfaces Goes Down?

Jan 25, 2010

I have 3 Interfaces for a different LAN's and when I start one interface the another interfaces goes down.How can it's possible?I configure my ethernets as:

Code:
/sbin/ifconfig eth0 172.16.3.108 netmask 255.255.0.0 broadcast 172.0.255.255
/sbin/ifconfig eth1 172.16.3.109 netmask 255.255.0.0 broadcast 172.0.255.255
/sbin/ifconfig eth2 172.16.3.1110 netmask 255.255.0.0 broadcast 172.0.255.255

View 12 Replies View Related

Fedora :: Machine Run Smoothly With The Newest Interfaces?

Jun 20, 2011

i'm an absolut beginner in the world of linux. i'm 22 years old and i used windows all my life but now i think i'm ready to move on! plus i think linux should fit my purposhes regarding computer usage as i'm currently using my pc for academic stuff and i saw there's a superbe program for electronics here (i study physics)!right now i'm using windows xp sp3 and an ancient IBM R51 laptop - Intel Pentium M 1.5Ghz, 512 ram. i'm not exactly sure it fits the requirements as i saw in fedora page i should have >700mb ram.. will i have any problems? will my machine run smoothly even with the newest interfaces (gnome 3.

View 6 Replies View Related

Ubuntu Networking :: ADVISEADDR: Error In Specifying Interfaces: No Existing Ip Interfaces Found

Jan 7, 2010

I have a weird issue that I have not seen on any forum. My jaunty on DELL studio laptop seems connected to net, but I can not access any network service (ssh, firefox etc.). But when I connect a cable the cable lights blink as it should be and in wireless connection my wifi light blinks.

It was working 2 days ago without problem, and I have not done big changes recently.I removed and reinstalled network-manager and network-manager-gnome. Nothing changed. I see a message in each restart as follows (when Openafs is starting). I can reproduce it with "/etc/init.d/openafs-client restart"

Code:

ADVISEADDR:error in specifying interfaces: no existing ip interfaces found

#lspci

Code:

04:00.0 Network controller: Intel Corporation Wireless WiFi Link 5100
08:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5784M Gigabit Ethernet PCIe (rev 10)
#lshw -c network

[code].....

View 5 Replies View Related

Ubuntu Networking :: Adding Interfaces To /etc/network/interfaces?

Apr 16, 2010

If I try to add a new interface (eth1) to /etc/network/interfaces, I get

Code:
* Reconfiguring network interfaces... SIOCSIFADDR: No such device
eth1: ERROR while getting interface flags: No such device
SIOCSIFNETMASK: No such device

[Code]...

How do I add 2 interfaces and get anyone of them to work, as available ?

View 5 Replies View Related

Fedora Networking :: What Happens With Multiple Network Interfaces

Apr 30, 2009

What traffic goes where? Why? Any bandwidth advantage? What if one goes down?

View 4 Replies View Related

Fedora Networking :: Dhclient Cannot Find Interfaces

Sep 29, 2010

I am running Fedora 13 and after my machine is booted my ethernet interface eth0 does not have an IP address. Running

Code:

At the terminal does not work, and I can see that in /var/log/messages I have the following error:

Code:

I assume that the same command was attempted during the boot process (please correct me if I am wrong) to use DHCP to get an address for eth0, but failed for the same reason it is failing after boot when I run it manually, whatever that reason may be.

I noted, however, that eth0 IS in broadcast mode:

Code:

I also noted that running

Code:

Does in fact work and will run DHCP and configure eth0 with an ip address.

It is quite mysterious to me why running 'dhclient eth0' will work, but manually running 'dhclient' does not.

View 5 Replies View Related

Fedora Networking :: Change Network Interfaces Names?

Dec 11, 2009

I found problem in FC 12 release. I installed fc 12 to server (earlier there was FC 7). Then as always i realised that names of interfaces (eth0, eth1, eth2 .... eth9) changed after install. eth0 became eth9, eth1 became eth5 ... Earlier on previous fedora releases i solved this problem correcting HWADDR in ifcfg-eth files, so i linked MAC addresses to names (eth0, eth1, eth2) as i wanted in a right order. Now I can't do this. After correcting these files and restarting network sevice i constantly get a message: device ... has different mac than expected. I looked ifup-eth file and compare it with the same one in fedora 7. And i found that in fedora 7 there is function rename_device which processes if HWADDR value doen't coincide with real mac address value. See code:

# remap, if the device is bound with a MAC address and not the right device num
# bail out, if the MAC does not fit
if [ -n "${HWADDR}" ]; then
FOUNDMACADDR=`get_hwaddr ${REALDEVICE}`
if [ "${FOUNDMACADDR}" != "${HWADDR}" ]; then
curdev=`get_device_by_hwaddr ${HWADDR}`
if [ -n "$curdev" ]; then
rename_device "${REALDEVICE}" "${HWADDR}" "${curdev}" || {
echo $"Device ${DEVICE} has different MAC address than expected, ignoring."
[Code].....

But in fc 12 release there is no function rename_device!!!!!!!!! So in this case if HWADDR value is not the same as FOUNDMACADDR value (which equal to REALDEVICE mac address) i just get an error message So I can't change interfaces names, as result i can't organize right order of network interfaces as it was earlier on fc7.

View 1 Replies View Related

Fedora Networking :: Getting A Machine To Update Its Machine Name In The DNS ServerSounds Doesn't?

Feb 20, 2011

I have an issue with the manner in which Network Manager is configuring the network and short of ditching Network Manager I can see no solution.The issue : Getting a machine to update its machine name in the DNS serverSounds simple doesn't it I operate a FreeBSD based firewall / DHCP / DNS server, using a default Network Manager DHCP configuration the Fedora clients do not register their names with the DNS server when they obtain an address.

I have traced the communications with Wireshark and the Fedora clients are NOT supplying the PC's hostname as part of the exchange so this is NOT a DNS server configuration issue. If I uncheck the option 'Automatically obtain DNS information from provider' under the DHCP settings the Fedora clients DO register the hostname that is put into the Hostname (optional) databox. They do NOT however store the DNS server IP address or any other records defined by the DNS server.

Is there some hidden settings or is this a bug because it isn't acceptable 'DHCP' behaviour if it isn't possible to automatically set DNS server IP addresses and at the same time register the hostname during the DHCP negotiation. Before it is said I know I can use a fixed DNS IP address but am not prepared to long term, I am also not prepared to define the Fedora clients with a 'static' IP. I am similarly not interested in playing around with scripts or any other such 'frigs' to achieve what should be a standard activity - registering a host with DNS during the DHCP negotiation.

View 3 Replies View Related

Fedora Networking :: Two Network Interfaces - Setup Default Gw Route?

Mar 26, 2009

So I have two network Interfaces

eth0 - NAT behind a router
eth1 - Public IP

When ever I restart the machine, both interfaces pull a IP, but the it randomly chooses eth0 or eth1 to have the gateway. I want the gateway to be eth0 always.

[Code]...

Is there some file or setting I can modify in Fedora10 that will always choose 192.168.1.1 on eth0 as the default gateway?

View 2 Replies View Related

Fedora Networking :: Set Up Multiple Virt Interfaces In Network-scripts?

May 15, 2009

if I want to do eth1, eth1:0, eth1:1 etc and automatically configure them at startup where do I put that in the network-scripts?

View 2 Replies View Related

Fedora Networking :: F11 - Service Network Restart Does Not Bring Up All Interfaces

Jun 23, 2009

If I restart the network service, not all interfaces come back up. Is this expected behaviour or does something need a kick?

Code:
[root@@aspire3500 ~]$ service network restart
Shutting down interface eth0: [ OK ]
Shutting down interface wlan0: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
[root@@aspire3500 ~]$

View 3 Replies View Related

Fedora Networking :: File For The Menubar Sistem->Administration->Control Net Interfaces?

Jun 17, 2009

Wich is the file for the menubar Sistem->Administration->Control Net Interfaces(I think this is the translation)
sorry if it doesn't.

View 1 Replies View Related

Ubuntu Networking :: Switch Won't Work With Machine

Dec 23, 2010

I got a Ubuntu machine running a local web server. It is connected to an archaic 10mbit hub, and I'd like a little bit faster network. I got a new 100/1000mbit switch connected to my router. I have 3 other PC's running off it, no problems at all. No configuration was necessary, and all existing cables worked fine.

Since the router and hub are located at the opposite end of the house, and the switch is in my PC room, I made up a new cable to connect it to my Ubuntu machine. It's just a straight-through cable, just like the other cables connecting the switch to other PC's. Okay so, when I plug the cable in to the machine I get no ethernet lights on either the machine nor the switch. But here's the kicker: I plug the cable into my laptop (running Windows 7), and it works perfectly. I restart the machine with the cable in, and get a green light. As soon as Ubuntu loads up, no lights, no connectivity. It shouldn't matter, but I'm running a static IP on the machine. I also have static IP's on the other PC's connected to the switch and nothing had to be changed.

View 9 Replies View Related

Ubuntu Networking :: Can't Get Ssh Into A Virtual Machine To Work - Host And Guest

Jan 28, 2010

I'm trying to ssh into a virtual installation of ubuntu I have, named "ubuntu-x86" but I can't get it to work for some reason. I have two network cards, both assigned to NAT, on the virtual machine, but one has a static IP address, while the other uses DHCP. For some reason, the command:

[Code]....

View 7 Replies View Related

Fedora :: F15 Does Not Work Well In Machine After Nvidia Drivers Are Installed?

Jun 17, 2011

Today I finally could install Fedora 15 i686 in my now aging (2005) desktop computer (although I will always think of it as my "new machine", as long as I don't assemble a new one for me):

AMD Sempron 3100+ (1.8GHz)
1GB DDR400
120GB HDD
NVIDIA GeForce FX5200 (128MB)

After I installed F15 my initialpression was that it worked really good on that hardware: everything went fine with GNOME 3 for example,except for some lags in graphics rendering, which I thought would be solved after the graphics card's full power were unleashed with the proprietary NVIDIA driver.For starters I am not sure which Nvidia driver is right for my card (Nvidia 173.X or the regularvidia).I managed to get "working" the 173.X driver but the desktop is even less responsive to begin with, and there appears to be a lot of activity on the hard disk side.So, my question is, which could be causing the performance loss?

A. The "small" RAM.
B. The vintage graphics card.
C. Some problem in the hard drive.
D. A known bug.

View 3 Replies View Related

Fedora :: Kernel Plato Won't Work - Machine Became Unstable & Slow

Feb 18, 2011

Is it possible, on a much older computer to hit a point at which any newer kernel just won't work, where a lesser one once did? (or for that matter the whole OS) - OS is F14. The reason I ask is that I've never had a problem w/ any, (kernel) until now. I'm running a PIII w/ 512M (max) - video is Matrox Graphics, Inc. MGA G400/G450 (rev 04)

In the process of trying to fix another problem, I allowed the updates. After, my machine became unstable & slow to respond (w/ drive wanting to run a LOT) I tried rebooting, thinking that it needed to clear some garbage I may have caused. That SEEMED to help but after a while it started again. Seeming to be intermittent, so I tried the older kernel & it all stopped (or so it seem, so far) Also, I removed the "offending" one & was wondering how to skip over it?

View 9 Replies View Related

Ubuntu :: Cannot Get SSH To Work Between The XP Machine And The Main Machine

Jan 22, 2011

I have a really weird one. This may be a putty issue, or it may be a config issue in Ubuntu. I've no idea who to blame. I have four machines involved in my little issue that has me scratching my head on where to even BEGIN to diagnose what is going on. The computer I'm attempting to connect to (For identification purposes, I'll call it the main machine) is running a relatively new install of KUbuntu 10.04, stock install of openssh daemon. ufw is disabled, firewalls are off, etc, and I can prove that later.

The machine acting odd is a Win XP 32 bit running Putty. Haven't had a problem until this reload of the previously mentioned machine. A Work machine that is running RedHad of some flavour. A Virtual Machine running a headless setup of Ubunto 8.04. Now that the introductions are over, here is a quick map of the machines that can successfully connect with. My major problem is that I cannot get SSH (And ONLY SSH) to work between the XP machine and the main machine.

Work -> Main = Works
Work -> VM = Works
XP -> VM = Works
XP -> Main = Fails
XP -> VM -> Main = Works
Main -> Main = Works (IE: "ssh localhost")
VM -> Main = Works

When I try to get the XP machine to connect to the Main machine, I get an error with Putty saying:

"Server sent disconnect message
type 2(protocol error):
baad service request ssh-connection"

I've changed Putty to try using SSH Protocol 1 only, but it says the protocol isn't installed on the Main machine, which is true. I've tried setting just 1, and it gives me the error, and I've tried setting it to "2 only" and it again comes up with the error. I went into /var/log as root on the Main machine, and did a "tail -n0 -f *" and then tried to connect, but nothing relevant shows up.

As for the proof that the firewall is disabled, three of the machines are working with Synergy, I am able to swap between all three of the machines without a problem, I can get to WebAdmin from the XP machine to the Main machine, and I can open a Samba share from the XP machine to the Main machine without a problem. This sounds like a protocol issue, but I can't see anything in WebAdmin that'll put me in the right direction.

View 4 Replies View Related

Fedora Networking :: Setup The Network Scripts To Create Two Network Interfaces For Vlan X And Y?

Apr 7, 2009

Using Fedora 10, can anyone tell me how to setup the network scripts to create two network interfaces for vlan x and y. Both interfaces should obtain an ip from dhcp and both interfaces should run over eth0.

View 2 Replies View Related

Fedora Networking :: Can Access Unix Machine From Another Unix Machine?

Feb 23, 2009

i have been using samba to gain access into windows computer through my pc which has fedora 8 ..can i access the unix machine from another unix machine? is yes then what is the procedures ?

View 4 Replies View Related

Ubuntu Networking :: Startup Networking Automatically Using /etc/network/interfaces

Jul 2, 2010

I'm on an embedded system that doesn't have Gnome, and I'm trying to startup networking automatically using /etc/network/interfaces. Here's what I have.

[Code]....

eth0 comes up just fine. wlan0 comes up, but it's unable to acquire a DHCP address. I added the following lines to /etc/rc.local, and wlan0 comes up all the way, but I'm not too crazy about this hack.

[Code]....

View 1 Replies View Related

Networking :: Got Two Interfaces With Same Mac?

May 6, 2011

I'm testing some network setups, and bought two dirt-cheap USB network interfaces. My plan was to attach these two to an embedded device (sheevaplug) and mess with firewall setups. However, the two interfaces are absolutely identical; they have the same MAC, and lsusb -v is the same for both, line by line (except for device number, which tells the order the devices are plugged in, I believe?). Also, this is a single usb bus (single port, with a hub).

Now, obviously I can't make much of a firewall setup if I can't tell the interfaces apart. I realize I probably hit a brick wall, but does anyone have thoughts on this?

View 4 Replies View Related

Networking :: Configuring With Two HW Interfaces?

Oct 16, 2010

I have two interfaces, gprs0 and gprs1, both connected to the Internet from the same HW device, but through two different access points I just read another blog entry with a guy who had two network cards, using one as a back up - I guess this is a little similar, but should be much easier I am guessing - I am just lost Using ifconfig (IP address given by the network) and route to setup the connection,

ifconfig gprs0 10.20.30.40 up
route add default dev gprs0
ping 66.102.7.99 works fine
afterwards

[code]....

There is data being transmitted and received to device again, I guess the kernel just doesn't know where the incoming data should go without the correct routing tables? Or what exactly is going on?The question I have is how do I configure the device to do the correct routing, using only the ifconfig and route commands? Maybe too trivial for you guys, but I am getting tired of goofing around not knowing what is up and down anymore

View 1 Replies View Related

Ubuntu Networking :: No Networking Interfaces Working

Jul 28, 2011

I installed the latest release of Kubuntu on to my dell laptop about 3 days ago, I fell asleep last night and woke up to my laptop not being connected to my wireless(it was when I fell asleep, it didnt reboot or anything overnight an dno one touched it), so I plugged in an ethernet cable and it still did not detect an internet connection, then finally it connected through my phones mobile internet via Usb.

However none of the built in networking devices are working, I have them all enabled.My WLAN Interface says "Unmanaged" and Networking interface complains the cable is unplugged even when it is not.I know you guys will need some additional info from me to help me.I just used my mobile broadband to install Wicd network manager but thats just a temporary fix, as it doesnt fix my ethernet issue and I want to be able to use the network manager itself to manage my networks.

View 2 Replies View Related

Ubuntu Networking :: Access Machine Via Windows Machine - Samba Password Reset?

Feb 13, 2011

I try to access my ubuntu machine via my Windows Machine (Samba Server on Ubuntu Machine). Anytime I try to access the machine it asks me for my password...I enter it but it says it is invalid....is there anyway to reset it? I have already tried to remove and purge everything Samba related and then tried reinstalling, but that still didn't do anything

View 2 Replies View Related

Debian :: Connman Does Not See Networking Interfaces

Jun 24, 2011

I'm using Debian Squeeze with backports turned on and I've installed connman and it cannot see my wireless networking interface. I know my wireless card has a working driver because I have WICD on the same system and it connects just fine.I am using the Enlightenment desktop though and it only integrates with the connman wireless manager - so I would prefer to use this instead of WICD. Anyone have any ideas on how I can get connman working? What extra configuration needs to be done after installing?

I added my user to have the same permissions as root to the /etc/dbus-1/system.d/connman.conf file and I added my tiwlan0 to /etc/network/interfaces as a DHCP connection with no changes in functionality :-/. Been searching around online and reading man pages for the last couple days with no good results. Any input would be awesome!

View 5 Replies View Related

Ubuntu Networking :: Why Create Sub Interfaces?

Oct 31, 2010

What is the use of creating sub interfaces, for example eth0.1 etc. can someone please give an example of a situation where it would be useful

View 3 Replies View Related

Ubuntu Networking :: Two Interfaces In One Host?

Feb 6, 2011

I have a laptop "fura1" with two interfaces, eth0 (Ethernet) and eth1 (wifi), which I assign IPs 192.168.1.10 and 192.168.1.11 respectively. Then a desktop "fura2" with only one interface eth0 (Ethernet). Both are connected to a local network along with other appliances. My doubts arise on how to configure the /etc/hosts file of the desktop "fura2" taking in account that "fura1" has two interfaces, so two IP, but, obviously, only one hostname.

My first attempt for /etc/hosts of "fura2" was:

127.0.0.1localhost
127.0.1.1fura2
192.168.1.10 fura1 fura1.workgroup
192.168.1.11 fura1 fura1.workgroup
192.168.1.102 PDA PDA.workgroup
192.168.1.103 MT MT.workgroup

But it seems to my that assigning two different IPs to the same host is not a good solution. On the other hand, if I give different name to each interface, I will got a host with two hostname (?).

View 2 Replies View Related

Networking :: 802.3ad Bonding Not Using All Interfaces Equally

Apr 14, 2011

I am seeing an issue on a few servers where it doesn't appear all NICs in the 802.3ad lag are all operating at the same level. A few of the servers have two bonds each with two NICs in each bond.I have two NFS servers that each has 1 bond with 3 NICs.All are RHEL5 x64 2.6.18.I think the reason why I see one interface dominating RX and another dominating TX is due to the xmit_hash_policy but there are three hosts that use this particular server for network traffic.That's 3 different physical mac addresses.The layer2 algorithm should be fine in that situation I would think.Would I just be better off with balance-rr?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved