port

Port Forward Directly to a Guest OS with VirtualBox

Hi all, I am currently using Ubuntu 10.04 for some rails development. It is installed as a guest machine using VirtualBox on a Windows 7 x64 host. Within Ubuntu, I am trying to port tunnel several ports from a remote server directly to the Guest OS in order to avoid having to download a remote database. Let's say I want to forward po...

Starting a Process When a Port is Connected To

I want to create a single client that issues unicast requests for data from any of many workstations on the same LAN. The client will likely run Linux, but the workstations may run any OS. Is it possible to avoid running a daemon on each of the workstations and yet have them reply to requests within a few seconds? I want to avoid creatin...

Debug COM port read/write using software/virtual COM port and console/terminal on the other end

I have a Delphi application that reads/writes to a COM port connected to a large hardware device, so I don't usually have the hardware available during development. That said, the communication protocol is fairly simple, so I can generally do the development and have someone onsite test it, and it usually works. Occasionally I run into...

Configure a PIC pin for Input and Output

I am working on a project which uses a PIC24FJ64GA002 mcu. I am working on a bit-banged serial communication function that will use one wire to send data and then switch to receive mode to receive data on the same pin. A separate pin will be used for clocking which will always be controlled by a different board (always an input). I am w...

How to change/add ports in apache2, in debian?

My OS: Linux version 2.6.26-2-xen-686 (Debian 2.6.26-25lenny1) ([email protected]) (gcc version 4.1.3 20080704 (prerelease) (Debian 4.1.2-25)) #1 SMP Fri Sep 17 00:54:08 UTC 2010 On my VPS, I need to use both php and ruby. So I want to use apache to handle my php sites and nginx for the ruby sites. And pass the php request to apache thro...

postfix on mac (snow leopard) / php mail() won't work (Operation timed out...)

Hello everyone! After hours and hours of research on this (it does appear to be quite an issue)... it still won't work. I already tried with changes to main.cf, master.cf, php.ini, org.postfix.master... For main.cf it was suggested to set "myhostname = host.domain.tld" to something one has control over, which I don't. Everything I tri...

Python Servers fighting each others with sockets

I try to make two servers in a file, but they are fighting each other visibly have anyone an idea to make them peace ? here is my code : # -*- coding: utf-8 -*- import socket import sys import re import base64 import binascii import time import zlib import sys import StringIO import contextlib import smtplib from threading import Threa...

python SocketServer.BaseRequestHandler knowing the port and use the port already opened ....

This is the code which i played, but each time i make a mistake i can't relaunch it. It says to me that the port / socket is already used That's the first question The second one is in my MyTCPHandler how can i kno the port used ? here is my code : # MetaProject v 0.2 # -*- coding: utf-8 -*- """ Thanks to : People from irc : Flox,Luyt ...

How to open TCP port in Ubuntu 10.10 ?

How to open TCP port in Ubuntu 10.10 ? ...

How to write a port scanner listening for 'ACK' in python?

please can anyone help me with the port scanner program to scan ports on the IP address provided,for ACK. i want to know the technique used to scan for ACK & use multi-threading so please help me in that perspective. Thank you ...

List used TCP port using C#

This is the answer to my questions. How to list binded/used TCP port in C#. Used modified code from jro static void ListUsedTCPPort(ref ArrayList usedPort) { IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); IPEndPoint[] tcpConnInfoArray = ipGlobalProperties.GetActiveTcpLis...

Is it posible to port Android for a Symbian phone

I have a Symbian based phone with a ARM Cortex-A8 processor (SonyEricsson Vivaz) and was thinking on how hard would it be to try and port the Android OS for it. Obviously Android runs on a myriad of devices with different hardware so I imagine it shouldn't be too hard to adapt it to SE hardware. Could some one give me a clue where to sta...

cURL ports not open - any viable alternative?

I have a client hosted with GoDaddy - but they're quite restrictive with their service and don't allow very many ports to be open. I have a script that needs to communicate on an arbitrary port (1129) via cURL but of course GoDaddy won't have any of it. Is there any alternative that I can implement to still confer with the target source...

How to connect properly to an Optivote device through a local socket connection?

Optivote IR8 is basically a voting system with a bunch of remote controllers, which can send IR signals to a receiver, which is connected to a computer through a USB port. And I'm trying to write my own little software for that with Flash. Optivote receiver communicates with software through a virtual serial port. When I connect to that...