aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/objects.py
AgeCommit message (Expand)AuthorFilesLines
2016-08-26Supporting numbered nics for DPDK Port and DPDK BondSaravanan KR1-1/+1
2016-08-26Add support for OVS DPDK BondSaravanan KR1-1/+69
2016-08-25Add support for OVS DPDK Bridge and PortSaravanan KR1-0/+122
2016-08-16Enhance and fix NIC mapping featureAlan Bishop1-26/+36
2016-08-02Enable os-net-config to support and configure NFVSwitchSarath Kumar1-0/+101
2016-07-25Add adapter teaming support using teamd for ifcfg-systemsDan Sneddon1-0/+59
2016-07-05Add support for Infiniband interfacesDan Sneddon1-0/+24
2016-06-14Add support for OVS patch portsJames Slagle1-0/+37
2016-06-10Merge "Add support for OVS tunnels"Jenkins1-1/+36
2016-04-13Add support for OVS tunnelsJames Slagle1-1/+36
2016-04-12Add warning for no active nicsBen Nemec1-0/+2
2016-03-11Fix hierarchy for Linux Bonds and Linux BridgesDan Sneddon1-0/+2
2016-03-07Enable os_net_config to configure IVSxinwu1-0/+92
2016-02-15Allow setting MTU to 1500Ian Pilcher1-8/+8
2015-10-21Merge "Support multiple addresses assignment with eni"Jenkins1-0/+1
2015-10-12Fix kwarg assignment in objects.pyDan Sneddon1-16/+35
2015-10-12Add Linux Bridge capability to os-net-config ifcfgDan Sneddon1-2/+60
2015-10-05Add support for Linux Bonding to os-net-config ifcfgDan Sneddon1-0/+57
2015-09-23ifcfg: Add support for dns_serversDan Prince1-15/+24
2015-08-17Support multiple addresses assignment with eniTomoki Sekiyama1-0/+1
2015-07-01Add support for dhclient_argsDan Prince1-15/+24
2015-06-09Automate selection of active bond slaveDan Sneddon1-0/+4
2015-05-11Add flag for DEFROUTE=no in ifcfg files to ignore DHCP gatewayDan Sneddon1-15/+19
2015-03-05Enable renaming of interfaces without rebootSteven Hardy1-2/+5
2015-02-24Remove deprecated references to oslo-incubatorSteven Hardy1-1/+1
2015-02-24Add a persist_mapping option to the mapping fileSteven Hardy1-18/+37
2015-02-24Add mapping option to influence nicN mapping orderSteven Hardy1-23/+63
2014-08-22Add support for ovs_extra.Dan Prince1-4/+11
2014-08-21A vlan on an OVS bridge doesn't require a deviceDan Prince1-1/+2
2014-08-20Add nic1, nic2 naming abstractionDan Prince1-2/+32
2014-08-12Set the MAC to the primary interfaceDan Prince1-13/+37
2014-07-07Add copyrights to files.Dan Prince1-0/+2
2014-07-01Implement object json parsing functions.Dan Prince1-6/+121
2014-06-26Add OvsBond object and impl for ifcfg format.Dan Prince1-1/+13
2014-06-25Vlan object and support for ifcfg.Dan Prince1-3/+18
2014-06-11Add OvsBridge configuration supportDan Prince1-3/+26
2014-06-10Implement apply for ifcfg implementationDan Prince1-0/+1
2014-06-09Initial ifcfg implementation for interfaces/routesDan Prince1-4/+8
2014-06-09Add interface, address, and route objectsDan Prince1-0/+66
id='n759' href='#n759'>759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975