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

Angular model not injecting rest call when trying to UPDATE

So basically I am very new to angular and node so go easy on me. I have been building a REST API for a profile site and it obviously requires updating of posts. I have GET, DELETE and CREATE working but stuck with trying to get the current post…
0
votes
1 answer

ACL on certain records instead of API URLs

I'm stuck with a scenario where a logged in user can create blog posts in a CMS like system. So he creates these posts in a backend system. When that user is on the Blog page in the admin panel in then an API request like this is…
Vivendi
  • 20,047
  • 25
  • 121
  • 196
0
votes
1 answer

Loopback Angular SDK response code 401 intercept

I'm using the Angular Loopback SDK and am trying to implement a 401 handler that automatically detects when the user needs to authenticate. Loopback responds to a data request with a 401 and I use that to invoke a login dialog. Basically using the…
MarkH
  • 682
  • 1
  • 6
  • 16
0
votes
1 answer

prestart scripts in Loopback

I need to create an ssh tunnel to connect to my database, so the logical point would be to add the shell command in package.json under scripts/prestart. However, as it seems, slc run does not execute this script, npm start does, but of course…
Svarog
  • 2,188
  • 15
  • 21
0
votes
1 answer

Strongloop loopback: how to set up a model to store multimedia?

Could someone give me an example of a model named "Multimedia.json" that I could use to store uploaded multimedia files (audio, video, or jpg)? Specifically, is there a type called "multimedia" or "binary"? Any strategies the Strongloop…
user798719
  • 9,619
  • 25
  • 84
  • 123
0
votes
1 answer

Unable to fetch IP Address of machine

I have an application in Java which needs the IP address of particular machine in order to communicate in Ubuntu. I tried using the Jjava function InetAddress.getLocalHost().getHostAddress() to fetch the IP address of the desired machine but it…
Dila Gurung
  • 1,726
  • 21
  • 26
0
votes
0 answers

Datagramchannel not receiving data from wlan0 interface

I'm trying to implement 3 channels using java nio, and everything works correctly on lo interface. Receiving and sending data works just fine on loopback interface, but when changing to wlan0 it seems that i am unable to receive datagrams. I can…
Jorge Lima
  • 157
  • 15
0
votes
1 answer

How to run loopback test with two nic in Linux

I have two nic in my Linux and I want to run some loopback test (packets sent out from one nic and received from the other). I have extra switch and/or router available but I don't want to use fancy features such as source NAT. It seems easy at the…
Hanks
  • 349
  • 1
  • 2
  • 15
0
votes
1 answer

HLS playback via local HTTP server on iOS

Background : I have a custom authentication mechanism on the server end that is not supported by the MPMoviePlayer. So, I decided to have a local loopback HTTP server which will take the initial request of the player and serve the HLS manifest…
Madala
  • 291
  • 3
  • 8
0
votes
3 answers

Why doesn't sender receive its multicast UDP packet if loopback is enabled?

Struggling past two days with the following questions: do the loopbacked packets go through access point back to sender if the sender is subscribed to the multicast group? Even if it's not the case, is it possible to force loopback through the…
user330293
  • 1
  • 1
  • 2
0
votes
0 answers

How i can connect from localhost to android emulator?

Many people ask about "How get the connect from a emulator to localhost". I am asking about a reverse issue. I created a tiny http server in android app. I know his ip address and want to connect from my chrome browser to the app. If i use my a…
0
votes
2 answers

ipv6 equivalent for loopback address

I am trying to 'represent' an IPv6 address(those IPv6 addresses with embedded IPv4 address) to its equivalent IPv4 address in Visual Basic 2012. The following is the code snippet that I use for the same: Dim ip As IPAddress =…
user907810
  • 3,208
  • 10
  • 39
  • 47
0
votes
2 answers

mounting LUKS volume on android 4.4.2, it can't be seen from another apps

I have problem with mounting LUKS volume I use Google Nexus 7 (2012) updated with Android 4.4.2 and unlocked/rooted. To mount LUKS volume, I use LUKS Manager, Busybox and Android Terminal Emulator. To see mounted file system, I use ES file…
10ants
  • 255
  • 3
  • 10
0
votes
1 answer

c# LPT loopbacktest

I need to test LPT Ports via a Loopbacktest. I've got Loopbackdongles and just want to know if the LPT Ports are working correctly. I have no idea how to accomplish this goal with c#. I know that I need these inpout.dll's for either 32- or…
DerHelm
  • 37
  • 6
0
votes
1 answer

How to ping localhost using raw socket?

The program got misc ethernet traffic from some source, change ip and should redirect it to localhost(for example, it should be used for ssh connection) and send answers from localhost back. I used following code: int bind_if(int raw , char…