SNMP Timeout: No Response from server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SNMP Timeout: No Response from server
# 1  
Old 06-20-2008
SNMP Timeout: No Response from server

When I tried to connect snmp from one server to another server
Timeout: No Response from server is comming Pls suggest
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Choosing VPN server based on server response times

Hello all, I am using the VPN provider Private Internet Access. I am using the Raspberry Pi 4 with 4GB of RAM, performance on this upgraded board is great. Anyways I am connecting to its service using systemd's openvpn-client @ US_New_York_City.service I wonder if I can create a... (5 Replies)
Discussion started by: haloslayer255
5 Replies

2. Solaris

Timeout: No Response from localhost

Hi All! I having an issue when trying to run snmpwalk, so the following command it returns an error: bash-3.00# /usr/sfw/bin/snmpwalk -v 2c -c public localhost sysDescr.0 Timeout: No Response from localhost bash-3.00# I have checked also: bash-3.00# svcs -a | grep sma online ... (2 Replies)
Discussion started by: fretagi
2 Replies

3. Infrastructure Monitoring

SNMP traps to SNMP server

Dear Champs, I am new to unix, and need to configure linux server to send below traps to a SNMP server. Monitoring TRAP Disk Space Low Monitoring TRAP Memory Low Monitoring TRAP CPU high Monitoring TRAP Admin login/Logoff Please help me how to send this information to my SNMP server... (2 Replies)
Discussion started by: stavar
2 Replies

4. IP Networking

Tshark/pcap and web-server response time

Hi everyone! How can I get response time difference between GET and HTTP/1.0 200 OK (i mean time latency of web-server) with using of tshark&shell or something else for each hostname from pcap file? What can you recommend me to do that? (1 Reply)
Discussion started by: lepetal
1 Replies

5. Solaris

Session timeout setting in server

Hi All I need to set timeout of login session of a user if a user is idle for some time. I know the TMOUT setting but it work with only BASH & KORN shell only as I need to set for Bourne shell also. I am trying to put "ClientAliveInterval 300" in sshd_config & restart or refreshing the... (1 Reply)
Discussion started by: sb200
1 Replies

6. IP Networking

TFTP Server Timeout issue

Hi, I'm running CentOS 5 as guest using VMware player. My host is Windows Xp. I'm running tftp server in CentOS. I have disabled firewall in both windows and CentOS. I use two different networks with different netmasks on CentOS. I'm able to ping the Centos (tftp server) from another Linux machine... (1 Reply)
Discussion started by: suryaemlinux
1 Replies

7. Web Development

Apache Web Server - Invalid Response

Hi, I have a SCO Unix Openserver V6 server which is hosting a website with Apache V1.3 as the http server. The web site has an initial login screen which re-directs to another page once the user name and password has been verified. When connecting to the website and trying to login, it times... (0 Replies)
Discussion started by: Martyn
0 Replies

8. AIX

ftp timeout valiue in AIX 5.3 server !

Dear Friends, I am using AIX 5.3 server . In AIX , I want to increase the timeout value of the ftp service . But I cannot find any configuration file with ftp related in AIX 5.3 server . Would anybody plz tell me , How can I increase the default timeout value in AIX ? (2 Replies)
Discussion started by: shipon_97
2 Replies

9. Shell Programming and Scripting

Reading response from server

I am trying to write a korn shell script which posts commands to a server and read the response back from the server. Any idea how I can read the servers response? I have tried doing the following: ( LOGIN:xxxxx command to server read ANSWER echo $ANSWER >file1... (4 Replies)
Discussion started by: frustrated1
4 Replies

10. Programming

Timeout with multithread server

I wrote a server which creates a thread for every client connection. I have to include timeout function that will kill the server thread if the client doesn't respond for specific time. That too using signal(SIGALRM). For this i am using alarm() function. When the server thread detects signal it... (1 Reply)
Discussion started by: Nads
1 Replies
Login or Register to Ask a Question
wx_object(3erl) 					     Erlang Module Definition						   wx_object(3erl)

NAME
wx_object - wx_object - Generic wx object behaviour. DESCRIPTION
wx_object - Generic wx object behaviour This is a behaviour module that can be used for "sub classing" wx objects. It works like a regular gen_server module and creates a server per object. NOTE: Currently no form of inheritance is implemented. The user module should export: init(Args) should return {wxObject, State} | {wxObject, State, Timeout} | ignore | {stop, Reason} handle_call(Msg, {From, Tag}, State) should return {reply, Reply, State} | {reply, Reply, State, Timeout} | {noreply, State} | {noreply, State, Timeout} | {stop, Reason, Reply, State} Asynchronous window event handling: handle_event(#wx{}, State) should return {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State} Info is message e.g. {'EXIT', P, R}, {nodedown, N}, ... handle_info(Info, State) should return , ... {noreply, State} | {noreply, State, Timeout} | {stop, Reason, State} When stop is returned in one of the functions above with Reason = normal | shutdown | Term, terminate(State) is called. It lets the user module clean up, it is always called when server terminates or when wxObject() in the driver is deleted. If the Parent process terminates the Module:terminate/2 function is called. terminate(Reason, State) Example: -module(myDialog). -export([new/2, show/1, destroy/1]). %% API -export([init/1, handle_call/3, handle_event/2, handle_info/2, code_change/3, terminate/2]). new/2, showModal/1, destroy/1]). %% Callbacks %% Client API new(Parent, Msg) -> wx_object:start(?MODULE, [Parent,Id], []). show(Dialog) -> wx_object:call(Dialog, show_modal). destroy(Dialog) -> wx_object:call(Dialog, destroy). %% Server Implementation ala gen_server init([Parent, Str]) -> Dialog = wxDialog:new(Parent, 42, "Testing", []), ... wxDialog:connect(Dialog, command_button_clicked), {Dialog, MyState}. handle_call(show, _From, State) -> wxDialog:show(State#state.win), {reply, ok, State}; ... handle_event(#wx{}, State) -> io:format("Users clicked button~n",[]), {noreply, State}; ... EXPORTS
start(Mod, Args, Options) -> wxWindow() (see module wxWindow) Types Mod = atom() Args = term() Options = [{timeout, Timeout} | {debug, [Flag]}] Flag = trace | log | {logfile, File} | statistics | debug Starts a generic wx_object server and invokes Mod:init(Args) in the new process. start(Name, Mod, Args, Options) -> wxWindow() (see module wxWindow) Types Name = {local, atom()} Mod = atom() Args = term() Options = [{timeout, Timeout} | {debug, [Flag]}] Flag = trace | log | {logfile, File} | statistics | debug Starts a generic wx_object server and invokes Mod:init(Args) in the new process. start_link(Mod, Args, Options) -> wxWindow() (see module wxWindow) Types Mod = atom() Args = term() Options = [{timeout, Timeout} | {debug, [Flag]}] Flag = trace | log | {logfile, File} | statistics | debug Starts a generic wx_object server and invokes Mod:init(Args) in the new process. start_link(Name, Mod, Args, Options) -> wxWindow() (see module wxWindow) Types Name = {local, atom()} Mod = atom() Args = term() Options = [{timeout, Timeout} | {debug, [Flag]}] Flag = trace | log | {logfile, File} | statistics | debug Starts a generic wx_object server and invokes Mod:init(Args) in the new process. call(Ref::wxObject() | atom() | pid(), Request::term()) -> term() Make a call to a wx_object server. The call waits until it gets a result. Invokes handle_call(Request, From, State) in the server call(Ref::wxObject() | atom() | pid(), Request::term(), Timeout::integer()) -> term() Make a call to a wx_object server with a timeout. Invokes handle_call(Request, From, State) in server cast(Ref::wxObject() | atom() | pid(), Request::term()) -> ok Make a cast to a wx_object server. Invokes handle_cast(Request, State) in the server get_pid(Ref::wxObject()) -> pid() Get the pid of the object handle. reply(From::tuple(), Reply::term()) -> pid() Get the pid of the object handle. AUTHORS
<> wxErlang 0.98.9 wx_object(3erl)