Redirect an application with a Serial connection


 
Thread Tools Search this Thread
Operating Systems Solaris Redirect an application with a Serial connection
# 8  
Old 12-24-2008
Bug thanks reborg

Solved.

I have another problem, regarding the DVDROM of the same server V490.
I have completed Solaris10 installation.
DVDROM sometimes reads and sometimes do not.
Once when it did not work i did the following and it worked.

Stopped and Started the Volmgt in /etc/init.d

But again i faced the same problem today and i performed the same actions, but it did not work.

Seems lik it is not mounted automatically whenever it is rebooted

Any suggestions??

Thanks in advance.

omaruam
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Solaris

Putty Serial Connection problems

Hi forums, I was wondering if any of you have faced this problem that I have been having for quite some time now regarding serial connection with putty to my Solaris Box Sunfire v250 and Sun v220 and sun v440. The serial connection freezes on my Windows 7 64 and 32 Bit machines. I unplug and... (3 Replies)
Discussion started by: br1an
3 Replies

2. Ubuntu

Ubuntu 9.04 Serial application to telnet to serial device

Hello! I am working on an application which reads environmental instruments which have serial ports. The application requires a serial port to be present to talk to the device (i.e. /dev/ttyS0 ). In some instances the environmental devices will be 100's of yards away from the computer, so a... (5 Replies)
Discussion started by: mvona
5 Replies

3. UNIX for Dummies Questions & Answers

Serial Connection sun blade 100 to pc

Hi, If someone please help as my efforts been exhausted in connecting my sun blade 100 serial to my pc. I am using null modem with DB9(female) in sun blade and DB9(female, using gender change) in pc. I am trying both hyper/putty 9600 8 N 1 configurations. Thanks (2 Replies)
Discussion started by: younics
2 Replies

4. AIX

serial modem connection

I configured the serial modem in my P6-550 AIX 5.3 box But i dont have telephone line. when I run the command # cu -l /dev/tty1 the output is as follows does it mean that my modem is responding to the command? can i say my serial port is working and communicating fine? Connected ... (3 Replies)
Discussion started by: pchangba
3 Replies

5. Solaris

USB to Serial Adapter connection

Hi Community, I'm working on Sun Server V490 with my PC (with OS Vista). I'm using a USB to Serial Adapter to connect to Server directly. I've this problem, I'm connecting to Server with Putty client with this settings: boud rate 9600, 8 bit, 0 parity, 0 flow control, but after to have typed... (4 Replies)
Discussion started by: Sunb3
4 Replies

6. IP Networking

ip communication through serial connection

I have serial modem connection between two computers. We have to login the remote computer through ip address. How can I get the ip address in this connection? (1 Reply)
Discussion started by: pcsaji
1 Replies

7. UNIX for Dummies Questions & Answers

hp-ux serial connection question

Hi, I need to connect from an hp-ux box to a device that only have a serial port. When I need to do that from solaris to that device I used put a null modem and type tip hardwire, but I'm new with hp-ux and I don't have the tip command. Any idea? Thanks. (2 Replies)
Discussion started by: piltrafa
2 Replies

8. UNIX for Advanced & Expert Users

redirect connection

I have two UX servers ( eg. Server A , Server B ) , the users use Netterm as emulator to telnet to connect to these servers , each server have assigned a dedicated IP address ( eg. Server A --> 192.168.1.1 , Server B --> 192.168.1.2 ) , now if a user want to connect Server A , he need to telnet to... (1 Reply)
Discussion started by: ust
1 Replies
Login or Register to Ask a Question
Net::SIP::Redirect(3pm) 				User Contributed Perl Documentation				   Net::SIP::Redirect(3pm)

NAME
Net::SIP::Redirect - Send redirect to Requests based on lookup at a registrar SYNOPSIS
my $reg = Net::SIP::Registrar->new(...); my $redir = Net::SIP::Redirect( dispatcher => $dispatcher, registrar => $reg, ); DESCRIPTION
This package implements a simple redirection of Requests using the information provided by a registrar. CONSTRUCTOR
new ( %ARGS ) This creates a new redirect object, %ARGS can have the following keys: dispatcher Net::SIP::Dispatcher object manging the registar. Mandatory. registrar Registrar object. This is an object like a Net::SIP::Registrar, which has a "query(address)" method which returns a list of contacts. METHODS
receive ( PACKET,LEG,FROM ) PACKET is the incoming packet, LEG is the Net::SIP::Leg where the packet arrived and FROM is the "ip:port" of the sender. Responses will be send back to the sender through the same leg. Called from the managing Net::SIP::Dispatcher object if a new packet arrives. Will return "()" and ignore the packet if it's an REGISTER request. For Requests it will query the registrar and return either "302 Moved Temporarily" with the list of contacts or "404 Not found" if the address is not registered. perl v5.14.2 2010-05-31 Net::SIP::Redirect(3pm)