Issues  |  Knowledge Base

ALM Works

  • Products|
  • Download|
  • Pricing|
  • Support|
  • Company
  • Structure
  • Structure helps Atlassian's largest customers track, manage, and visualize progress across Jira projects
    • Try It
  • Structure at the Marketplace
  • new
  • Structure.Gantt
  • Add the power of Gantt charts to Jira projects
  • Gantt at the Marketplace
  • Structure.Pages
  • The Ultimate Jira-Confluence Collaboration Tool
  • Pages at the Marketplace
  • Structure.Testy
  • Test checklists extension for Structure
  • Testy at the Marketplace
  • Colors for Jira
  • JQL-based color highlighting for enhanced issue navigation.
  • JIRA Client
  • Interactive desktop client for Jira. Saves you several seconds of your time, per issue, per day. Works offline.
  • Deskzilla
  • Desktop client for Mozilla's Bugzilla bug tracking system for managing bugs in a customizable working environment.
  • Structure Version: 4.6.0 March 28, 2018
  • Free 30-Day Trial
  • Download Archive
  • new
  • Structure.Gantt Version: 1.0.1 Feb 05, 2018
  • Get it Free
  • Download Archive
  • Structure.Pages Version: 1.3.0 Aug 27, 2017
  • Free 30-Day Trial
  • Download Archive
  • Structure.Testy Version: 2.3.0 Nov 30, 2017
  • Get it Free
  • Download Archive
  • Colors for JIRA
  • Version: 2.1.1 Sep 25, 2017
  • Free 30-Day Trial
  • Download Archive
  • JIRA Client
  • Version: 3.8.4 Aug 21, 2017
  • Free 30-Day Trial
  • Download Archive
  • Deskzilla
  • Version: 3.2.1 Aug 29, 2016
  • Free 30-Day Trial
  • Download Archive
  • Structure
  • Production server license: $600 — $16,000
    Free licenses available
  • Purchase Structure add-on at the Marketplace
  • Purchase from ALM Works
  • Renewals
  • new
  • Structure.Pages
  • Production server license: $300 — $8,000
    Free licenses available
  • Purchase Structure.Pages at the Marketplace
  • Purchase from ALM Works
  • Renewals
  • Colors for JIRA
  • Production server license: $100 — $2,000
    Free licenses available
  • Purchase Colors for JIRA at the Marketplace
  • JIRA Client
  • Per-server site license: $300 — $2,000
    Free licenses available
  • Purchase JIRA Client at the Marketplace
  • Purchase from ALM Works
  • Renewals
  • Deskzilla
  • Version: 3.2
    September 24, 2015
  • Pricing and Purchase
  • Renewals
  • Send Purchase Order
  • Request a Quote
  • Structure
    • Support Request
    • Documentation
    • Suggest an Idea
    • FAQ
    • Training
  • Structure.Gantt
    • Support Request
    • Documentation
    • Quick Start Guide
  • Structure.Pages
    • Support Request
    • Documentation
  • Structure.Testy
    • Support Request
    • Documentation
  • Colors for JIRA
    • Support Request
    • Documentation
  • JIRA Client
    • Support Request
    • Documentation
    • FAQ
  • Deskzilla
    • Support Request
    • Documentation
  • Knowledge Base
  • Contact support by e-mail
  • Support Description & SLA
  • About Us
  • Our Customers
  • Partners & Resellers
  • Contacts
  • Join Our Team!
  • News and Press Releases
  • Press Kit
  • Blog
  • Events
Call sales: +1 617 600 4369
  • info@almworks.com
  • sales@almworks.com
  • ALM Works Inc
  • 181 Wells Ave., Suite 204
    Newton, MA 02459
    USA
  • ALM Works Ltd
  • Times Center, Suite 214
    Kantemirovskaya Str., 2A
    Saint Petersburg
    Russia 197342
  • Archive
    • Virtual Bugzilla
    • Documentation
    • Static IP and DNS

Static IP and DNS

Configuring Network on Virtual Bugzilla

This document provides instructions for altering the default Virtual Bugzilla network configuration.

1. What's in the package

Virtual Bugzilla default network configuration is aimed to make Bugzilla server available on your network without the need of any additional configuration (in most cases). The configuration includes:

  • VMWare network adapter is set to "Bridged" configuration;
  • Ethernet interface eth0 is configured to get IP address from DHCP;
  • A script runs on startup to update urlbase Bugzilla parameter to point to the current Bugzilla URL.

2. Running Virtual Bugzilla without network

By default Virtual Bugzilla will share Ethernet card with the host computer it runs on. If your computer is not connected to a network, Virtual Bugzilla will not be able to start networking as well.

You can switch Virtual Bugzilla to "NAT" or "Host-only" type of virtual networking to be able to access if from the host computer only, and regardless of the presence of a real network. To do that, use your VMWare Player or Workstation menus or status bar. After you change connection type, reboot Virtual Bugzilla.

3. Setting Up Static IP

This applies to Virtual Bugzilla 3.2.x. For earlier versions, see instructions on our forum.

Important: A more agile method for configuring a static IP address is to use your local DHCP server to assign a permanent IP to the VBS mac address. That way you will not have to do anything inside VBS. Consult your network administrator.

Requirements: Before proceeding, make sure you know:

  • The desired IP address;
  • Network mask and broadcast address;
  • Gateway address;
  • Your local DNS server address(es).

If you don't know anything from the above, first figure it out. On Windows, you can use command "ipconfig /all" to see these parameters.

The procedure:

  1. Start VBS and login as root.
  2. Edit /etc/network/interfaces file with command joe /etc/network/interfaces. There, find the line that says iface eth0 inet dhcp and comment it out by placing "#" sign in the beginning of the line. Uncomment the section that follows and starts with iface eth0 inet static. Enter the correct IP address, network mask, broadcast address and router address.
  3. Edit /etc/resolv.conf file. Replace any "nameserver" entries you might find there with addresses of your DNS servers. For example, if you have DNS servers 10.0.0.1 and 10.0.0.5, the file should read:
    nameserver 10.0.0.1
    nameserver 10.0.0.5
  4. Reboot Virtual Bugzilla (type reboot or press Ctrl+Alt+Insert in the console);
  5. When server boots again, verify that you can reach the Internet with ping www.google.com, for example.

4. Assigning Host Name and Domain for VBS

If you'd like your Virtual Bugzilla to be reachable through a good-looking hostname-based URL, let's say http://bugs.company.com, you need to do the following:

  1. Configure static IP for VBS, as described above.
  2. Ask your network administrator, ISP or whoever manages your DNS to map bugs.company.com to the static IP you've set for Virtual Bugzilla;
  3. Log in into VBS as root;
  4. echo bugs >/etc/hostname
  5. echo bugs.company.com >/etc/mailname
  6. sed -i 's/bugzilla.workgroup/bugs.company.com/' /etc/hosts /etc/exim4/update-exim4.conf.conf
  7. sed -i 's/bugzilla/bugs/' /etc/hosts /etc/exim4/update-exim4.conf.conf
  8. Edit /etc/apache2/sites-enabled/bugzilla and /etc/apache2/sites-enabled/bugzilla.ssl. Where "bugzilla" is mentioned in ServerName, ServerAdmin, and VirtualHost commands, change it to "bugs.company.com".
  9. Edit /bugzilla/data/params and change "urlbase" parameter from a numeric IP address URL to "http://bugs.company.com".
  10. Reboot Virtual Bugzilla.
  • Pocket Desk
    • Support Request
    • Documentation
      • User's Guide
      • Administrator's Guide
  • Cross for JIRA
  • Virtual Bugzilla
    • Change Log
    • Documentation
      • Upgrading
      • Configuring VBS
      • Static IP and DNS
      • Using HTTPS
      • Using in Production
      • FAQ
      • Testopia on VBS 2.1
    • Versions Archive
    • upgrading
More Links
Recent Tweets
Tweets by @almworks
Newsletter & Updates
 
Products
  • Structure
  • Structure.Gantt
  • Structure.Pages
  • Structure.Testy
  • Colors for Jira
  • JIRA Client
Resources
  • Documentation
  • Marketplace
  • Latest News
  • Blog
  • Support SLA
  • Legal
Company
  • About ALM Works
  • Customers
  • Contacts
  • Join our Team!
Quick Links
  • Customer Portal
  • For Partners & Resellers
  • For Press
Site Map
Call Sales: +1 617 600 4369
info@almworks.com sales@almworks.com
Copyright © ALM Works Ltd. 2004-2018|Privacy Policy|Terms of Use