Questions tagged [lan]

LAN, or Local Area Network, is a computer network that connects computers and devices in a limited geographical area such as home, school, computer laboratory or office building. The defining characteristics of LANs, in contrast to wide area networks (WANs), include their usually higher data-transfer rates, smaller geographic area, and lack of a need for leased telecommunication lines.

A local area network (LAN) is a computer network that interconnects computers within a limited area such as a residence, school, laboratory, or office building.1 A local area network is contrasted in principle to a wide area network (WAN), which covers a larger geographic distance and may involve leased telecommunication circuits, while the media for LANs are locally managed.

This tag can be used for programming problems that are related to LAN networks or similar.

Source

Wikipedia

1194 questions
12
votes
0 answers

Connect android to local Lan via Phone (Over wifi OR via USB connection)

I am playing about with RTSP in Android, getting it to stream using Media Player. Now I am wanting to test them locally, but finding it incredibly difficult. What I have done is run a local Wowza server and published the RTSP url and I am then…
Anthoni Gardner
  • 929
  • 1
  • 9
  • 17
11
votes
1 answer

Viewing Django and webpack built site on LAN

I am trying to view my locally served site on other devices such as my phone or another laptop. On my current laptop the site works fine, I see everything (frontend) and I get 200s when I visit the site. However, when I try to access the site with…
Liondancer
  • 15,721
  • 51
  • 149
  • 255
11
votes
3 answers

how to make a local domain available on all computers on lan

I have 10 computers and i want to fetch my local host on all the systems . I am using ubuntu 12.04 . I changed my hosts file like this 127.0.0.1 localhost 127.0.1.1 ri8-MS-7788 192.168.1.22 manojdhiman.com # The following lines are…
Manoj Dhiman
  • 5,096
  • 6
  • 29
  • 68
11
votes
1 answer

R Shiny - Access an App on my Local Machine

I can not avoid windows at work. As such, I have a second machine that I use to do all of my heavy lifting and data analysis. In an ideal world, I could create a Shiny app and access it from another computer on my work's local network. The…
Btibert3
  • 38,798
  • 44
  • 129
  • 168
9
votes
9 answers

Make WAMP www available on local network

I know there are questions similar to this, but none address my specific situation. I have a WAMP server setup for developing some websites, and it's running great. I need it to be available to another computer on my local network via a wireless…
biggles
  • 3,021
  • 5
  • 27
  • 36
9
votes
3 answers

What free tool can I use to limit network speed on LAN to test my application?

I need to test my C# application that uses WCF for slow network speeds on Windows 7. Are there any free tools out their that can reduce my network speed?
Rohit
  • 3,610
  • 7
  • 45
  • 76
9
votes
2 answers

How to connect to a docker container from outside the host (same network) [OSX 10.11]

The Setup: Computer A - This is where the Docker-Machine "default" runs under VirtualBox. "default" is running a container called "Odoo". "default" was created using Docker's installation process. "Odoo" was created using Odoo's installation…
JP Staub
  • 131
  • 1
  • 7
9
votes
1 answer

Flask listens only on 127.0.0.1 ignoring host parameter

I'm using Flask on Windows 7. Flask and related versions are below: Flask==0.10.1 Werkzeug==0.9.3 Accessing the app from the same computer is OK using http://127.0.0.1:5000 However from another computer in LAN the access fails:…
Valentin H
  • 7,240
  • 12
  • 61
  • 111
9
votes
5 answers

List the IP Address of all computers connected to a single LAN

I am writing a program where you connect, for various reasons, to other computers in a LAN. However, rather than having to input the IP address for multiple computers (a pain in the butt), I was wondering if there is a way to list the IP addresses…
Bloodyaugust
  • 2,463
  • 8
  • 30
  • 46
8
votes
1 answer

what's needed to make hostname resolution work on a lan?

I am developing a networked application that runs on a few different computers on a LAN. One of the core needs is for the app to maintain a list of peers on the LAN with which it has communicated in the past, so that it can restore previous…
lmirosevic
  • 15,787
  • 13
  • 70
  • 116
8
votes
2 answers

HTML5 + JS enough for LAN communication?

I've been brainstorming a webapp idea, something a la Turntable.fm but for LANs, that way all the computers on the SAME network aren't all downloading a song at the same time (killing bandwidth) but rather streaming the music around. The basic…
Brian
  • 2,819
  • 4
  • 24
  • 30
8
votes
1 answer

EventLogQuery reader for remote computer?

I'm using this code to readmy own event Log from my win7 Computer. EventLogQuery eventsQuery = new EventLogQuery("Security", PathType.LogName, queryString); eventsQuery.ReverseDirection = true; EventLogReader logReader = new…
Royi Namir
  • 144,742
  • 138
  • 468
  • 792
8
votes
4 answers

In C# how do I get the list of local computer names like what one gets viewing the Network in windows explorer

There are a lot of questions about getting the name and IP addresses of the local machine and several about getting IP addresses of other machines on the LAN (not all answered correctly). This is different. In windows explorer if I select Network on…
user334911
8
votes
5 answers

How to get the LAN IP of a client using Java?

How can i get the LAN IP-address of a computer using Java? I want the IP-address which is connected to the router and the rest of the network. I've tried something like this: Socket s = new Socket("www.google.com", 80); String ip =…
cragiz
  • 453
  • 2
  • 5
  • 8
8
votes
3 answers

Can't seem to access .xip.io URL from my iPhone when running Rails app with Pow

I've tried accessing my Rails app running with Pow (4.3) from my iPhone 5 but I'm running into issues... If I type my_app.192.168.2.11.xip.io: it runs OK on my development machine (i.e. the machine with the 192.168.2.11 LAN address) it doesn't find…
Mick F
  • 7,312
  • 6
  • 51
  • 98
1 2
3
79 80