Questions tagged [loopback]

In telecommunications, loopback, or a loop, is a hardware or software method which feeds a received signal or data back to the sender.

In telecommunications, loopback, or a loop, is a hardware or software method which feeds a received signal or data back to the sender. It is used as an aid in debugging physical connection problems. As a test, many data communication devices can be configured to send specific patterns (such as all ones) on an interface and can detect the reception of this signal on the same port. This is called a loopback test and can be performed within a modem or transceiver by connecting its output to its own input. A circuit between two points in different locations may be tested by applying a test signal on the circuit in one location, and having the network device at the other location send a signal back through the circuit. If this device receives its own signal back, this proves that the circuit is functioning.

1273 questions
0
votes
1 answer

Magento Localhost Installation - LAN Works - WAN Issues?

Full disclosure: I’m new to home servers and Magento. Running Ubuntu Server 13.04 with LAMP and Magento Commerce 1.7.0.2 on a dedicated home server. I've already configured my server's static IP, router's firewall and port forwarding, and am running…
guttermonk
  • 223
  • 2
  • 11
0
votes
1 answer

Performance improvement in Tunneling HTTP over TCP

I have a design requirement which requires HTTP communication over underlying TCP networking module [HTTP_CLIENT<--->LOCAL_TCP_PSEUDOSERVER]---------TCP/IP--------[LOCAL_TCP_PSEUDOSERVER<--->HTTP_SERVER] HTTP cllient talks to local running TCP…
Rohit
  • 6,941
  • 17
  • 58
  • 102
0
votes
1 answer

Can a multicast packet be forced to take a trip through a router before being looped back to the sender?

Short: Can a multicast packet be forced to take a trip through a router before being looped back to the sender (ie disable internal loopback but still receive the packet)? My purpose is to use multicast as a synchronization method over local area…
NewEndian
  • 559
  • 2
  • 16
0
votes
4 answers

localhost problem on windows 7

I'm using Windows 7 Pro and want to run my web project locally, but the url www.localhost.com does not work. If use http://127.0.0.1:2710/default.aspx it works. I checked host file which in the C:\Windows\System32\Drivers\Etc\hosts folder. If I…
cagin
  • 5,772
  • 14
  • 74
  • 130
0
votes
1 answer

fix Ip on osx without ethernet connection

I amn running for development an mampwordpress server with a fix IP adress. When I am offline, without ehternet connection the server isn't usable. how can i make a loopback or something else on osx to fake the ethernet address? regards
bluelemonade
  • 1,115
  • 1
  • 14
  • 26
0
votes
1 answer

Forcing external routing in XP with multiple NICs

Newbie alert with no TCP/IP knowledge... I am trying to set up a production test rig for testing an embedded 6-way ethernet switch by populating an XP PC with 6 NIC cards. I've started with two NICs just to prove the point, both on the same subnet,…
0
votes
0 answers

Android:Alternative for TCP loopback socket connection for better performance

Developed a networking library using Android NDK (2.3 and above) Scenerio Third-party application (TCP socket based ) communicates to our native library. Our library processes that data and in turns communicates to a server using TCP socket…
Rohit
  • 6,941
  • 17
  • 58
  • 102
0
votes
2 answers

Linux user space: how to put 16550-compatible UART in loopback mode persistently

There is an 16550-compatible UART on the market that I would like to configure. The Linux driver is provided by the manufacturer, and I have to configure the (multiple-)UART through an user-space program, persistently. Persistence means that the…
user1284631
  • 4,446
  • 36
  • 61
0
votes
1 answer

is using the loopback address equivalent to the local ip address?

Using the loopback address 127.0.0.1 will bypass the NIC. If the local machine has some other ip address assigned to it, will traffic from that machine to the same machine using said ip address hit the nic? if it does, what performance impact does…
Joe Hanink
  • 4,767
  • 4
  • 19
  • 21
0
votes
1 answer

SOAP error on Heart internet

I have written following code on a server, which hosted on Heart internet UK. // Pull in the NuSOAP code require_once('./lib/nusoap.php'); // Create the server instance $debug = 1; $server = new soap_server; // Register the method to…
phpqa.in
  • 589
  • 3
  • 8
  • 16
-1
votes
1 answer

Implementing socket.io in loopBack 4

I have tried socket.io in node JS and it works fine. When I tried to integrate socket.io in loopback 4 it is not working as expected. I surfed the problem in google as well as in the lb4 documentation but I did not found any solutions. I tried with…
-1
votes
1 answer

How to sum nested objects and get a new object in typescript

I have 2 Objects Set_1 and Set_2. Inside their, two key are there in both Key_1 and Key_2. Inside those Key_1 and Key_2, there are Sub Keys(Sub Keys are same for Both Objects) which I want to add and want to create a new Object. "Set_1": { …
Abhishek Mishra
  • 340
  • 4
  • 14
-1
votes
1 answer

How to disable loopback interface in Linux (Fedora)?

So that requests to localhost are treated as if coming from remote host in LAN?
asker
  • 2,159
  • 3
  • 22
  • 27
-1
votes
1 answer

using the calculation number for the next calculation

experts. I'm trying to define a function (collatz) that: Asks for a number. If it is even it prints number // 2, if it odd it prints 3 * number + 1. (OK) The result, whatever it is, must enter a loop until the result is 1. (NOK) So, i´m not figure…
-1
votes
1 answer

Loopback 3 pure SQL query with params not working with question marks (with Solution)

My query was like: let query = `SELECT id, name FROM students WHERE school_code = "${schoolCode}" AND name REGEXP "${text}" `; And with params: let params = [ schoolCode, text ]; let query = `SELECT id, name FROM students WHERE school_code = "?"…
Shani Kehati
  • 427
  • 5
  • 10