SNMP Protocol from Azure virtual machine

Hi All,
We have one web application where we use .Net OLEPPRN.SNMP protocol library for get the printer details.
I am not able to get the printer details from Azure virtual machine(It works fine in my network).
Allowed SNMP ports in Azure EndPoints (TCP/UDP) - 161,162 and these ports are allowed in my firewall for forwarding's.
Is there any other setting to b enabled/ limitation in azure virtual environment.
Thanks
Santosh 

Hi Prasant,
Thanks for your response.
We not using any default SNMP Services from Windows Server Roles. We are using .Net OLEPPRN.SNMP is used from the library to get the printer details.
Do we have any protocol communication block from Azure VM.
Thanks
Santosh

Similar Messages

  • Our HDB tool  just stopped connecting to the Azure virtual machine

    Our HDB tool just stopped connecting to the Azure virtual machine while it is working fine on AWS. The error we are getting is:
    "HDB -system state cannot be determined. Database connection is not available."
    Any suggestions/comments from the community?
    Thank you
    Koushik

    Update as promised.
    I just went ahead and created a new VM.  All is good!!!!
    Server 2012 (Datacenter)
    Downloaded and installed SQL Server 2012 Standard (Basic install only need the DB engine)
    Configured for mixed mode, etc.  (I did not need to change anything after the install was done)
    Opened endpoints and VM firewall ports
    Tested and worked as expected
    Then went ahead and installed IIS, Web Deploy and updates.
    All is working as expected.  Not sure what I messed up the first go around.
    If anyone comes across this and the docs don't help, just try to set up a new VM (either SQL or Server and install SQL).

  • Is it possible to install SharePoint 2013 and SQL 2012 on single Azure Virtual Machine

    I had a Azure subscription, I need had created only one Virtual Machine, is it possible to install SharePoint 2013 and SQL Server 2012 on that single virtual machine in azure.
    I had SharePoint 2013 and SQL Server 2012 licence from MSDN subscription,
    Finally on Azure virtual machine is it possible to Install SharePoint 2013 and SQL server by downloading these software from MSDN. 

    Hi,
    It is supported to install sharepoint 2013 and SQL server on the same server. However, please check the size of your Azure VM and make sure it is compatible for that.
    The minimum recommended size for a virtual machine is A3 when using SQL Server Enterprise Edition. Select A3 or higher when using SQL Server Enterprise Edition. Select A4 when using SQL Server 2012 or 2014 Enterprise Optimized for Transactional Workloads
    images. Select A7 when using SQL Server 2012 or 2014 Enterprise Optimized for Data Warehousing Workloads images. In addition, the default size for SharePoint 2013 image is A3.
    In addition, as a best practice, you can install them in different servers and then deploy SharePoint 2013 with SQL Server AlwaysOn Availability Groups in Azure:
    Deploying SharePoint 2013 with SQL Server AlwaysOn Availability Groups in Azure
    http://msdn.microsoft.com/en-us/library/azure/dn275959.aspx
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • SQL Azure with Azure Virtual Machine inside Virtual Network - How to connect

    Hi Team,
    I have one typical scenario where there is one Windows Application I wan to run from my Windows Azure Virtual Machine which is inside Azure Virtual Network (which has its DNS and ADFS and etc..)
    Because its Virtual Network, We can't access internet within that network, apparently Virtual Machine can't access SQL Azure. So, How would we resolve this scenario.
    Application is running great from my local system so, its accessing SQL Azure Database from my system. So, Application or SQL Azure or connection or such areas has no issue.
    Regards, Brijesh Shah

    Hi Brij,
    Thanks for your reply.
    To add a DNS server in an Azure Virtual network, you can refer to the link below:
    http://msdn.microsoft.com/en-us/library/azure/dn275925.aspx
    To obtain a public Azure-provided DNS server IP addresss, you can run "ipconfig/all" in another Azure VM which is not a virtual network which has DNS server defined. After you add a DNS server in the virtual network that VM belongs to, please restart
    the VM to update the change.
    However, since you mentioned that you are using a customed domain, I am not quite sure if any other configuration should be done for your domain.
    Best regards,
    Susie

  • Bandwith issue in azure virtual machine

    Hi,
    Suddenly from last two three days we are not getting proper bandwith on one of our azure virtual machine ,uplaoding and dowloading speed which we are getting is below 30mpbs ,so please look in to this issue.

    Hello siddheshr,
    1. What is the size of the Virtual Machine that you have deployed?
    2. When you say that there is a latency, are you referring to Azure VM to VM latency or from external traffic?
    If you have a latency in your bandwidth, as a first step, I suggest that you restart your Virtual Machine and check if it makes a difference.
    If restarting the Virtual Machine does not fix the issue, I suggest that you resize the Virtual Machine.
    Also, please let me know how exactly are you determining that the bandwidth is low.
    Thanks,
    Syed Irfan Hussain

  • Link remoteapp with azure virtual machine

    I am running remoteapps. How do i connect the applications to retrieve databse from aa Azure virtual machine?
    Please help!

    Hi,
    To allow applications, that you publish through Azure Remote App, to be able to connect to backend servers running in Azure IaaS, the Azure RemoteApp vnet and the Azure IaaS vnet need to be connected. The following guide might be helpful here:
    How to link Azure RemoteApp to an existing VNET
    Kind regards,
    Freek Berson
    The Microsoft Platform
    Twitter
    Linked-in
    Wortell company website

  • Forgot Azure Virtual Machine Password

    Hi Team,
    I have forgot the Azure VM password and unable to connect the machine through RDP. Please help me so that I can connect with my VM. This is an urgent issue please help me. Thanks in Advance.

    Hi,
    You can follow these steps to reset the existing built-in local Admin credentials on Microsoft Azure virtual machines using Windows PowerShell and the Microsoft Azure PowerShell Module.  Note that this process will also ensure that Remote Desktop is enabled
    within the Microsoft Azure VM.
    >>In the Windows PowerShell ISE window, run the following PowerShell cmdlet to confirm the name of your Microsoft Azure subscriptions (if you have more than one subscription).
    Get-AzureSubscription | Format-Table –Property SubscriptionName 
    You’ll be specifying the name of your selected subscription in the next step.
    >>In the Windows PowerShell ISE window, run the following PowerShell cmdlets to select your Microsoft Azure subscription (if you have more than one subscription).
    $subscription = “ENTER YOUR SUBSCRIPTION NAME HERE” 
    Select-AzureSubscription –Default $subscription
    >>In the Windows PowerShell ISE window, run the following snippet to prompt for the credentials to which you’d like to reset the existing built-in local Admin user account inside the virtual machine.
    $adminCredentials = Get-Credential -Message "Enter new Admin credentials"
    If the existing built-in local Admin username is input, the snippet below will reset that account to use the specified password.  If a new username is input, the snippet below will also rename the existing built-in local Admin account to match the specified
    username. 
    The password that is input when prompted above must meet password complexity requirements of at least 3 of the following: 1 UPPER case letter, 1 lower case letter, 1 number and/or 1 symbol.  Note that if the password does not meet complexity requirements,
    the snippet below will still succeed - the password complexity requirements are not checked until after the VM restarts and the VM Agent is leveraged to apply the new password.
    >>In the Windows PowerShell ISE window, run the snippet below to reset the built-in local Admin credentials for the selected Azure virtual machines.
    (Get-AzureVM) | 
    Where-Object -Property Status -EQ "ReadyRole" |
    Select-Object -Property Name, ServiceName |
    Out-GridView -Title "Select a VM …" -PassThru |
    ForEach-Object {
        $VM = Get-AzureVM -Name $_.Name -ServiceName $_.ServiceName
        If ($VM.VM.ProvisionGuestAgent) {
            Set-AzureVMAccessExtension -VM $VM `
                -UserName $adminCredentials.UserName `
                -Password $adminCredentials.GetNetworkCredential().Password `
                -ReferenceName "VMAccessAgent" | 
            Update-AzureVM
            Restart-AzureVM -ServiceName $VM.ServiceName -Name $VM.Name
        } else {
            Write-Output "$($VM.Name): VM Agent Not Installed"
    Let’s look at each line from the snippet above in a bit more detail …
    First, Get-AzureVM is used to enumerate the existing VM’s that are provisioned in the selected Microsoft Azure subscription. We can only reset the built-in local Admin credentials on Running VM’s, so we pass this output to a Where-Object filter to return just
    the list of VM’s that are currently in a ReadyRole state.
    We pipe this filtered list of running VM’s to the Out-GridView cmdlet. This cmdlet prompts to select the VM’s for which the built-in local Admin credentials should be reset.
    Finally, the selected VM’s are piped into a ForEach-Object block that resets the built-in local Admin credentials for each selected VM using the Set-AzureVMAccessExtension cmdlet. This block also restarts each selected VM using the Restart-AzureVM cmdlet, so
    that this change is processed.
    Hope this helps !
    Regards,
    Sowmya

  • Custom Domain name for Azure virtual machine using azure websites

    Hie, I am using a cloud service (e.g cloud1) and it has a hosted VM in it (Windows server 2012). It is having a URL cloud1.cloudapp.net. So I want to use the domain name (e.g azuresite1.azurewebsites.net)created from azure.
      So how do I add the Cname record and everything in this setup .
      I already tried to use
    this but that didn't work
     What additional steps are required to add custom domain name to an azure virtual machine and, the custom domain name is also an azure website

    If you want to use azuresite1.zurewebsites.net then i think, you have to create a azurewebsite. If you have a custom domain then following should work.
    You have findout the IP that is attached to the VM. 
    Point your domain name to that IP (using domain dashboard)
    Now your domain points to whatever the site hosted on the VM (port 80)
    If you have more sites then, you have specify HostName for the site which you want to use with domain name.
    Try and let me know if this helped.

  • SQL Server Business intelligence edition on Azure Virtual Machine

    Hello, Does anyone know when can a virtual machine with the SQL Server Business Intelligence Edition will be available? (it's that edition that I'm interested in, not standard, web or Enterprise that are the current editions available) , also In
    that moment will that SQL BI edition be available using SPLA SAL License as well?
    Regards
    GRR

    Hi,
    It seems that some features of SQL server BI Features are installed on the SQL Server Virtual Machine Gallery Images. For more detailed information, please refer to the link below:
    SQL Server Business Intelligence in Windows Azure Virtual Machines
    Best regards,
    Susie

  • Can I backup some Azure Virtual Machines at same recovery point by Azure Backup ?

    Can I backup some Azure Virtual Machines at same recovery point by Azure Backup ?
    I want to recovery some related Azure Virtual Machines at same recovery point.
    Senario:
    Azure Virtual Machine 1. some servers for Web servers.
    Azure Virtual Machine 2. a server for SQL server.
    Azure Virtual Machine 3. a server for File server.
    Regards,
    Yoshihiro Kawabata

    Hi Yoshihiro,
    Azure IaaS VM backup is a VM level backup and each VM backup will create its own recovery point.  You can trigger backups in a staggered fashion typically you backup SQL, File server followed by web server, but there is no way to make it a single recovery
    point.  Are there any specific reasons you need this capability?
    Thanks,
    Vijay

  • Azure virtual machine not discovering

    We created our back-up vault yesterday. Agents have been installed without any problems. Vault/Virtual machine/storage is all in the same region but it doesn't seem to find any azure virtual machines.
    Regards,

    Hi PCSKnokke,
    Are the VMs in a healthy state? If yes, I can look up in the backend to see what is going on. If you can share some information about the VM (name, region) then I can look this up. If you cannot share this information on a public forum, please direct-message
    me on Twitter (@AzureBackup).
    Meanwhile, there are issues that we are fixing and perhaps the problem you are facing will get resolved in one of the hotfixes that we will do. Let's investigate anyhow.
    Regards,
    Aashish
    Added everything to the same subsription and tried it again. Now it seems to work. Could it be that if you use multiple subscriptions (VM on one subscription, backup vault on other subscription) that this doesn't work?

  • MSDN Checkbox in Azure Virtual Machine Gallery disabled

    Dear all,
    In Azure Virtual Machine Gallery the MSDN checkbox remains disabled although I successfully linked a Visual Studio Online account with an active MSDN subscription (VS Premium), both referring to the same login/administrator account.
    So I am not able to add a VS 2013 Premium virtual machine in Azure.
    Have I missed something?
    Thanks for your help,
    Denis

    Hi,
     Thanks for posting.
     Have you tried switching subscription to the VS Premium with MSDN
    Refer to the following thread.
     http://social.msdn.microsoft.com/Forums/en-US/cdb13f71-7aff-4eb2-8265-d85b00d6215e/msdn-gallery-virtual-machines-check-box-grayed-out?forum=windowsazurepurchasing
    Managing multiple subscriptions in Windows Azure
     http://bjorneriksen.blogspot.in/2013/09/managing-multiple-subscriptions-in.html
    Let us know if this helped.
    Regards,
    Nithin.Rathnakar

  • Error: 1238 when creating vm template from a virtual machine

    Hi,
    I encounter a issue when creating a VM template from a virtual machine whihc is store on hyper host, Can anyone give a suggestion to resolve it.
     The virtual machine Windows 2008 R2 20110722 cannot be used in this operation because it is on a perimeter network.
    Move virtual machine Windows 2008 R2 20110722 off of the perimeter network or select a virtual machine that is not on a perimeter network, and then try the operation again.
    ID: 1238
    Many thanks in advance.

    vCenter has a different concept of what it means to be a template than SCVMM does.
    If you are copying the VHD to the SCVMM Library and building a Template form that, be sure that the OS in the VM is generalized by running sysprep.
    Otherwise, your VMs from that template will fail deployment. This is what the SCVMM process of creating a Template from a VM does, it applies sysprep to the VM, then copies it (the VM (VHD + configuration) to the Library, then deletes it.
    You can also compose a template using a sysprep prepared VHD that already exists in the Library.
    Now, a non-domain joined Hyper-V server is a different thing from a 'perimeter' host.  That has to do with how it was added to SCVMM. 
    http://technet.microsoft.com/en-us/library/gg610646.aspx
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Can I shutdown my App Collection of Azure RemoteApp like Azure Virtual Machine ?

    Can I shutdown my App Collection of Azure RemoteApp like Azure Virtual Machine ?
    I want to suspending billing of Azure RemoteApp dualing the weekend.
    Azure Virtual Machine can suspending billing by shutdown it.
    I want to do for Azure RemoteApp.
    Regards,
    Yoshihiro Kawabata

    Hi Yoshihiro,
    Unfortunately you cannot shut down an App Collection in order to suspend billing over a weekend.  Please see the following page for details on Azure RemoteApp Pricing:
    RemoteApp Pricing
    http://azure.microsoft.com/pricing/details/remoteapp/
    I recommend you suggest this on the
    Azure RemoteApp feedback forum.
    Thanks.
    -TP

  • What is account for logon for first Azure virtual machine?

    I selected build a server farm, but I don't remembering any input for administrator account. How do I setup administrator account for my first Azure virtual machine after it was automagically built as part of a server farm option?

    I am assuming you are talking about SharePoint server farm. 
    After you select New->SharePoint Server Farm, Azure asks you to type in the resource name and then it asks you for usernames and passwords for each virtual machines local administrator.  These are the usernames which you use to access these machines.
    Regards

Maybe you are looking for

  • I restored from iTunes backup but it goes back to 'welcome to your new iphone'

    My iphone 5 was replaced today because of a faulty power button. I had done an iTunes backup this morning, choosing to backup iTunes purchases and the apps as well. In order to restore the backup to my new phone I had to set it up as a new phone and

  • Couldn't upgrade Solaris 10 x86 from Sun Fire x2200 to Dell Precision Wrkst

    Dear Solaris Experts, I need to clone a Solaris 10 x86 system using a ufsdump backup from the following source & target servers: Sun Fire x2200 M2 with Quad Core Processor # /usr/platform/`uname -i`/sbin/prtdiag System Configuration: Sun Microsystems

  • Active Job

    Hello, 1.Is it possible to cancel a background (status-->Active) scheduled by another user? 2.If yes what is the procedure? 3.I tried in my system but confused with the procedure. Thanks in advance Regards, Sanjeeva

  • Multi-processor optimization

    Lloyd Chambers has published a Lightroom performance study of general interest to Mac Lightroom users-but maybe Windows users, too-documenting aspects of the scalability of Lightroom across hardware and including some tricks. One thing his tests sugg

  • How to set location bar search independently from search bar selected engine?

    With FF 23 searching in the location bar performs a search with the currently selected engine in the search bar. I find the behaviour annoying, as I sometimes select different engines in the search bar if needed, but most often I just need quick goog